:root {
  --bg: #000d19;
  --panel: #001527;
  --panel-soft: #0a1f30;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.2);
  --cyan: #60c5c5;
  --cyan-bright: #90ffff;
  --blue: #005eab;
  --container: 1280px;
  --gutter: 64px;
  --section: 112px;
  --section-md: 80px;
  --radius: 8px;
  --pill: 999px;
  --grad: linear-gradient(90deg, var(--blue), var(--cyan));
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", sans-serif;
}
body {
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
.shell {
  padding-inline: var(--gutter);
}
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
}
.section {
  padding-block: var(--section);
}
.section-md {
  padding-block: var(--section-md);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 72px;
}
h2 {
  font-size: 52px;
}
h4 {
  font-size: 36px;
}
p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.lead {
  font-size: 18px;
}
.muted {
  color: var(--muted);
}
.tagline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.line-divider {
  height: 1px;
  background: var(--line);
}
.section-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
}
.section-head.center {
  text-align: center;
  justify-items: center;
  margin-inline: auto;
}
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--pill);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  border: 0;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(101%);
  transition: transform 0.25s ease;
  z-index: -1;
}
.btn-primary {
  background: var(--grad);
  color: #000d19;
}
.btn-primary::before {
  background: #8af8fb;
}
.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateY(0);
}

.hero {
  padding-top: 24px;
  padding-bottom: 80px;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  min-height: 460px;
}
.hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/wp-content/uploads/2026/03/pasted-1774866039.webp") center/cover
      no-repeat;
  padding: 72px 56px;
  display: grid;
  align-content: center;
  gap: 32px;
}
.hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo {
  padding-top: 0;
  padding-bottom: 80px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 72px 32px;
  text-align: center;
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 13, 25, 0.55), rgba(0, 13, 25, 0.55)),
    url("/wp-content/uploads/2026/03/pasted-1774870229.webp") center/cover
      no-repeat;
}
.promo-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.accreditation-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.accreditation-row img {
  width: auto;
}

.services {
  padding-top: 0;
  padding-bottom: 80px;
}
.service-copy p {
    margin-top: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 24px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    border: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.service-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.service-head .btn-primary{
    align-self: auto;
}
.service-card h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.service-card>div:last-child a {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    gap: 8px;
}

.why {
  padding-top: 80px;
  padding-bottom: 80px;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
}
.why-card,
.why-wide,
.why-mini {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}
.why-card-copy,
.why-wide-copy,
.why-mini-copy {
  padding: 24px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
}
.why-card img,
.why-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-card img {
  height: 285px;
}
.why-right {
  display: grid;
  gap: 24px;
}
.why-wide {
  display: grid;
  grid-template-columns: 1fr 432px;
}
.why-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-icon {
  width: 28px;
  height: 28px;
}

.stats {
  padding-top: 80px;
  padding-bottom: 80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  display: grid;
  gap: 10px;
}
.stat-number {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 80px;
    line-height: 1;
    margin-bottom: 48px;
}

article.stat-card h4 {
    font-size: 22px;
}

.results {
  padding-top: 80px;
  padding-bottom: 80px;
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  display: grid;
  gap: 18px;
}
.stars {
  letter-spacing: 2px;
}
.person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}
.brand-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.brand-row img {
  height: 24px;
  width: auto;
  opacity: 0.95;
}

.quote {
  padding-top: 112px;
  padding-bottom: 80px;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.quote-copy {
  display: grid;
  gap: 20px;
  align-content: center;
}
.quote-image {
  overflow: hidden;
}
.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  padding-top: 112px;
  padding-bottom: 112px;
}
.faq-question svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    transition: transform .25s ease;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.faq-list {
  border-bottom: 1px solid var(--line);
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  padding: 20px 0;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}
.faq-answer {
  padding: 0 0 20px;
  color: var(--muted);
}
.faq-item .icon {
  transition: transform 0.2s ease;
}
.faq-item.is-open .icon {
  transform: rotate(180deg);
}

.contact {
  padding-top: 0;
  padding-bottom: 84px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-links {
  display: grid;
  gap: 16px;
}
.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-row img {
  width: 20px;
  height: 20px;
}
.form {
  display: grid;
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
}
input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  font: 400 16px/1.5 "Roboto", sans-serif;
  padding: 12px;
}
input {
  height: 48px;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

section#contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 16px;
	font-size: 14px
}

.checkbox input {
	width: 18px;
	height: 18px;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 2px;
	padding: 0;
}

.checkbox input:checked {
	background-color: #ffffff;
	position: relative;
}

/* Tick mark */
.checkbox input:checked::after {
	content: '';
	position: absolute;
	top: 45%;
	left: 50%;
	width: 4px;
	height: 8px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -50%) rotate(45deg);
}

/* ============================================================
   ACCREDITATION LOGOS
============================================================ */
.logos {
	padding: 80px var(--pad);
}

.logos-row {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	align-items: center;
}

.logos-row .brandset {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.logos-row .brandset img:nth-child(1) {
	width: 189px;
}

.logos-row .brandset img:nth-child(2) {
	width: 233px;
}

.logos-row .brandset img:nth-child(3) {
	width: 102px;
}

/* Testimonial */

.testimonials .section-head {
	margin-bottom: 56px
}

.testimonials-carousel-wrap {
	position: relative;
	overflow: hidden
}

.testimonials-track {
	display: flex;
	gap: 32px;
	transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.testimonial {
	flex: 0 0 calc((100% - 64px) / 3);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px
}

.stars {
	width: 116px;
	height: 20px;
	display: block
}

.stars svg {
	width: 100%;
	height: 100%;
	display: block
}

.author {
	display: flex;
	align-items: center;
	gap: 16px
}

.author img {
	width: 48px;
	height: 48px
}

.author-copy {
	display: flex;
	flex-direction: column
}

.author-copy strong,
.author-copy span {
	font-size: 16px;
	line-height: 1.5
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 40px
}

.carousel-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--line);
	background: transparent;
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: border-color .2s, background .2s
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
	border-color: var(--cyan);
	background: rgba(144, 255, 255, .08)
}

.carousel-dots {
	display: flex;
	gap: 8px
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line);
	cursor: pointer;
	transition: background .2s, transform .2s;
	border: none;
	padding: 0
}

.carousel-dot.active {
	background: var(--cyan);
	transform: scale(1.3)
}
.service-link span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 1200px) {
  :root {
    --gutter: 40px;
    --section: 88px;
    --section-md: 64px;
  }
  h1 {
    font-size: 58px;
  }
  h2 {
    font-size: 44px;
  }
  h4 {
    font-size: 32px;
  }
  .hero-wrap,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .why-wide,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .result-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logos-row {
    grid-template-columns: 1fr;
  }
  .logos-row .brandset {
    justify-content: flex-start;
    flex-direction: column;
}
}
@media (max-width: 780px) {
  :root {
    --gutter: 20px;
    --section: 64px;
    --section-md: 56px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 34px;
  }
  h4 {
    font-size: 28px;
  }
  .hero-content {
    padding: 36px 24px;
  }
  .services-grid,
  .why-mini-grid,
  .result-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
      font-size: 52px;
  }
  /* Carousel: show 1 card on mobile */
    .testimonial {
    	flex: 0 0 100%;
    }
}
