/* =========================================================
   METRICARO — GLOBAL STYLES
   ========================================================= */


/* =========================================================
   DESIGN VARIABLES
   ========================================================= */

:root {
  /* Brand colours */
  --primary: #2563EB;
  --primary-dark: #1747B8;
  --primary-light: #EAF2FF;

  --accent: #25D9DC;
  --accent-dark: #12B8C0;

  /* Text */
  --text: #172033;
  --text-soft: #5B6475;

  /* Backgrounds */
  --background: #FFFFFF;
  --background-soft: #F4F7FC;

  /* Other */
  --border: #E1E7F0;
  --dark: #0b1125;

  --radius: 14px;

  --shadow: 0 8px 30px rgba(11, 16, 38, 0.07);
  --shadow-hover: 0 14px 35px rgba(11, 16, 38, 0.12);
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;

  color: var(--text);

  background: var(--background);
}

img {
  max-width: 100%;
  display: block;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
  background: var(--dark);

  color: white;

  text-align: center;

  padding: 24px 20px;
}

header h1 {
  margin: 0;

  font-size: 28px;

  letter-spacing: -0.5px;
}

header p {
  margin: 4px 0 0;

  color: #cbd5e1;

  font-size: 14px;
}


/* =========================================================
   NAVIGATION — METRICARO BRAND
   ========================================================= */

nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;

  min-height: 64px;
  padding: 0 24px;

  background: rgba(255, 255, 255, 0.97);

  border-bottom: 1px solid var(--border);

  box-shadow: 0 2px 12px rgba(11, 16, 38, 0.05);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  position: relative;

  padding: 9px 13px;

  color: var(--text-soft);

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);

  background: var(--primary-light);

  border-radius: 7px;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: "";

  position: absolute;

  left: 13px;
  right: 13px;
  bottom: 2px;

  height: 2px;

  background: var(--primary);

  border-radius: 2px;
}



/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
  display: none;

  border: none;

  background: transparent;

  color: var(--text);

  font-size: 28px;

  cursor: pointer;

  padding: 6px;

  line-height: 1;
}


/* =========================================================
   HERO — METRICARO BRAND
   ========================================================= */

.hero {
  position: relative;

  padding: 70px 20px 30px;

  text-align: center;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(37, 217, 220, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(37, 99, 235, 0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #F5F9FF 0%,
      #FFFFFF 100%
    );

  border-bottom: 1px solid var(--border);
}


.hero-content {
  max-width: 850px;

  margin: 0 auto;
}

.hero h2 {
  max-width: 800px;

  margin: 0 auto 24px;

  color: var(--dark);

  font-size: clamp(38px, 6vw, 64px);

  line-height: 1.08;

  letter-spacing: -2px;

  font-weight: 700;
}


.hero p {
  max-width: 680px;

  margin: 0 auto 30px;

  color: var(--text-soft);

  font-size: 19px;

  line-height: 1.7;
}



/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
  display: flex;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 25px;
}

.hero-buttons .btn {
  margin: 0;
}

.hero-note {
  max-width: 680px;

  margin: 0 auto !important;

  text-align: center;

  color: #6b7280 !important;

  font-size: 14px !important;
}



/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  max-width: 1050px;

  margin: 0 auto;

  padding: 50px 30px;

  text-align: center;
}

.section h2 {
  max-width: 800px;

  margin: 0 auto 20px;

  color: var(--text);

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.2;

  letter-spacing: -1px;
}

.section > p {
  max-width: 700px;

  margin: 0 auto 18px;

  color: var(--text-soft);

  font-size: 17px;
}


/* =========================================================
   HOME — PROBLEM
   ========================================================= */

.problem-section {
  background: var(--background);
  padding:90px 20px;
}


.problem-container {
  max-width: 1300px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 60px;

  text-align: left;
}

.problem-image {
  flex: 0 0 650px;

  display: flex;

  justify-content: center;

  overflow: visible;
}

.problem-image img {
  display: block;

  width: 400px;

  max-width: none;

  height: auto;

  filter:
    drop-shadow(2px 0 0 #172554)
    drop-shadow(-2px 0 0 #172554)
    drop-shadow(0 2px 0 #172554)
    drop-shadow(0 -2px 0 #172554);
}

.problem-content {
  flex: 1;
  max-width: 550px;

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  text-align: left;
}

.problem-content h2,
.problem-content h3,
.problem-content p {
  width: 100%;
  max-width: none;

  text-align: left;
}

.problem-content h2 {
  margin: 0 0 20px;
  color: var(--dark);
}

.problem-content h3 {
  margin: 0 0 20px;
  color: var(--text);
}

.problem-content p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.7;
}


/* =========================================================
   HOME — ANALYSIS
   ========================================================= */

.analysis-section {
  max-width: none;

  background: var(--background-soft);
}

.analysis-section > p:first-of-type {
  margin-bottom: 45px;
}

.analysis-cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  max-width: 1100px;

  margin: 0 auto 40px;

  text-align: left;
}

.analysis-card {
  padding: 32px;

  background: white;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.analysis-card:hover {
  transform: translateY(-5px);

  border-color: rgba(37, 99, 235, 0.25);

  box-shadow: var(--shadow-hover);
}

.analysis-card h3 {
  margin: 0 0 12px;

  color: var(--text);

  font-size: 21px;
}

.analysis-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 16px;
}

.section-conclusion {
  max-width: 750px !important;

  margin-top: 10px !important;

  font-size: 16px !important;
}


.analysis-container {
  max-width: 1300px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 60px;

  text-align: left;
}

.analysis-content {
  flex: 1;

  max-width: 550px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  text-align: left;
}

.analysis-content h2,
.analysis-content h3,
.analysis-content p {
  width: 100%;

  max-width: none;

  text-align: left;
}

.analysis-image {
  flex: 0 0 500px;

  display: flex;

  justify-content: center;

  overflow: visible;
}

.analysis-image img {
  display: block;

  width: 400px;

  max-width: none;

  height: auto;

  filter:
    drop-shadow(2px 0 0 #172554)
    drop-shadow(-2px 0 0 #172554)
    drop-shadow(0 2px 0 #172554)
    drop-shadow(0 -2px 0 #172554);
}

/* =========================================================
   HOME — PERSONALISED
   ========================================================= */

.personalised-section {
  background: white;

  border: 2px solid var(--primary);

  border-radius: 20px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

  margin: 60px auto;

  padding: 60px 50px;
}

.personalised-section > p:last-child {
  margin-top: 30px;

  color: var(--text);

  font-size: 19px;

  line-height: 1.7;
}


/* =========================================================
   HOME — HUMAN ELEMENT
   ========================================================= */

.human-section {
  max-width: none;

  padding-left: 20px;
  padding-right: 20px;

  background: var(--primary);

  color: white;
}

.human-section h2 {
  color: white;
}

.human-section > p {
  color: rgba(255, 255, 255, 0.88);
}

.human-section .highlight-text {
  margin-top: 32px;

  color: white;

  font-size: 20px;

  font-weight: bold;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  padding-top: 55px;

  padding-bottom: 65px;
}

.final-cta > p:last-of-type {
  margin-bottom: 30px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-block;

  margin: 10px 5px;

  padding: 13px 28px;

  background: var(--primary);

  color: white;

  border: 2px solid var(--primary);

  border-radius: 8px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  box-shadow: 0 5px 14px rgba(37, 99, 235, 0.20);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);

  border-color: var(--primary-dark);

  transform: translateY(-2px);

  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.btn.secondary {
  background: white;

  color: var(--primary);

  border-color: var(--primary);

  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--primary-light);

  color: var(--primary-dark);

  border-color: var(--primary-dark);

  box-shadow: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  position: relative;

  padding: 25px 20px;

  background: var(--dark);

  color: #cbd5e1;

  font-size: 14px;

  text-align: center;
}

footer p {
  margin: 0;
}

footer a {
  position: absolute;

  left: 20px;

  top: 50%;

  transform: translateY(-50%);

  color: #cbd5e1;

  text-decoration: none;
}

footer a:hover {
  color: white;

  text-decoration: underline;
}



/* =========================================================
   HOW IT WORKS — PROCESS
   ========================================================= */

.process-section {
  max-width: none;

  padding: 20px 20px 90px;

  background: var(--background-soft);
}

.process-intro {
  padding-top: 60px;

  padding-bottom: 55px;
}

.process {
  display: flex;

  align-items: flex-start;

  justify-content: center;

  max-width: 1450px;

  margin: 0 auto;
}


/* =========================================================
   PROCESS CARDS
   ========================================================= */

.process-item {
  position: relative;

  flex: 1;

  min-width: 0;

  max-width: 245px;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.process-card {
  position: relative;

  width: 100%;

  min-height: 220px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-end;

  gap: 14px;

  background-color: transparent;

  background-size:cover;

  background-position:center;

  background-repeat: no-repeat;

  color: white;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  cursor: pointer;

  font-family: inherit;

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.understand-card {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.12)
    ),
    url("images/understand.png");
}

.collect-card {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.12)
    ),
    url("images/collect.png");
}

.analyse-card {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.12)
    ),
    url("images/analyse.png");
}

.explain-card {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.12)
    ),
    url("images/explain.png");
}

.apply-card {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.12)
    ),
    url("images/apply.png");
}





.process-card:hover {
  transform: translateY(-5px);

  border-color: rgba(37, 99, 235, 0.3);

  box-shadow: var(--shadow-hover);
}

.process-number {
  position: relative;

  z-index: 2;

  color: white;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.5);
}

.process-title {
  display: block;

  margin-bottom: 12px;

  font-size: 36px;

  font-weight: 700;

  letter-spacing: -1px;

  line-height: 1.1;

  color: var(--text);

  text-align: center;
}


/* =========================================================
   PLUS ICON
   ========================================================= */

.process-icon {
  position: absolute;

  z-index: 3;

  top: 18px;

  right: 18px;

  width: 28px;

  height: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--primary);

  background: var(--primary-light);

  border-radius: 50%;

  font-size: 30px;

  font-weight: 400;

  line-height: 1;
}


.process-item.open .process-card {
  border-color: rgba(37, 99, 235, 0.45);

  box-shadow:
    0 10px 30px rgba(37, 99, 235, 0.12);
}


/* =========================================================
   PROCESS CONTENT
   ========================================================= */

.process-content {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  padding: 0 20px;

  background: white;

  border-radius:
    0 0
    var(--radius)
    var(--radius);

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
}

.process-item.open .process-content {
  max-height: 500px;

  opacity: 1;

  padding: 24px 20px 22px;

  border: 1px solid var(--border);

  border-top: none;
}

.process-content h3 {
  margin: 0 0 12px;

  color: var(--text);

  font-size: 17px;

  line-height: 1.35;
}

.process-content p {
  margin: 0 0 12px;

  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.6;
}

.process-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   PROCESS ARROWS
   ========================================================= */

.process-arrow {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 70px;

  height:200px;
  
  align-self: flex-start;

  font-size: 38px;
}

.process-arrow span {
  position: relative;
  display: block;
  width: 45px;
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
}

.process-arrow span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-top: 8px solid var(--primary);
  border-right: 8px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

/* =========================================================
   ABOUT — APPROACH
   ========================================================= */

.approach-section {
  max-width: none;

  padding: 75px 20px;

  background: var(--background-soft);
}

.approach-intro {
  padding-top: 0;

  padding-bottom: 40px;
}

.approach-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  max-width: 1100px;

  margin: 0 auto;
}

.approach-card {
  padding: 35px 30px;

  background: white;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.approach-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow-hover);
}

.approach-label {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--primary);

  font-size: 18px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.approach-card h3 {
  margin: 0 0 12px;

  font-size: 23px;
}

.approach-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 15px;
}


/* =========================================================
   ABOUT — AUDIENCE
   ========================================================= */

.audience-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  max-width: 850px;

  margin: 35px auto 0;
}

.audience-card {
  padding: 30px;

  background: var(--background-soft);

  border-radius: var(--radius);

  text-align: left;
}

.audience-card h3 {
  margin-top: 0;

  margin-bottom: 10px;
}

.audience-card p {
  margin: 0;

  color: var(--text-soft);
}


.audience-card img {
  width: 200px;
  height: 160px;

  object-fit: contain;

  display: block;
  margin: 0 auto 25px;
}

/* =========================================================
   ABOUT — PERSONALISED
   ========================================================= */


.about-personalised-section {
  background: white;
  
}

.about-personalised-section > p:last-child {
  margin-top: 30px;

  color: var(--text);

  font-size: 19px;

  line-height: 1.7;
}



.about-personalised-section {
  max-width: 700px;

  margin: 0 auto;

  background: white;

  text-align: center;
}

   



/* =========================================================
   SERVICES
   ========================================================= */

/* =========================================================
   SERVICES PAGE — INTRO
   ========================================================= */

.services-intro {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

.services-intro h2 {
  margin-left: auto;
  margin-right: auto;
}

.services-intro p {
  margin-left: auto;
  margin-right: auto;
}


.service-container {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;

  max-width: 1050px;

  margin: 0 auto 15px;

  padding: 0 30px;
}

.service-box {
  padding: 35px 30px;

  background: linear-gradient(
    135deg,
    #FFFFFF 0%,
    #eefaff 50%,
    #d9f3fc 100%
  );

  border: 2px solid #a9dff0;

  border-radius: 16px;

  padding: 30px;

  box-shadow: 0 8px 25px rgba(80, 180, 220, 0.10);

  text-align: center;
}

.service-container .service-box {
  display: flex;

  flex-direction: column;
}

.service-select {
  position: relative;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-select:hover,
.service-select:focus {
  transform: translateY(-7px);

  border-color: rgba(37, 99, 235, 0.45);

  box-shadow: var(--shadow-hover);

  outline: none;
}

.featured-service:hover,
.featured-service:focus {
  border-color: #d4af37;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}
.service-select:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);

  outline-offset: 4px;
}

.featured-service {
  background: linear-gradient(
    135deg,
    #f8fdff 0%,
    #e9f9fe 50%,
    #cfeffc 100%
  );

  border: 2px solid #d4af37;
  border-radius: 16px;
}

.featured-service .service-tag {
  color: #d4af37;
  border-color: #d4af37;
}

.service-tag {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.4px;
}

.service-box h2 {
  margin-top: 0;
  line-height:1.2;
  min-height: 2.4em;
}

.service-price {
  margin: 8px 0 18px;

  color: var(--primary);

  font-size: 32px;

  font-weight: 700;
}

.service-box h3 {
  margin-top: 25px;

  margin-bottom: 12px;

  font-size: 17px;
}

.service-box p {
  color: var(--text-soft);
}

.service-box ul {
  margin-bottom: 25px;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.service-container .service-box ul {
  flex-grow: 1;
}

.service-link {
  display: inline-block;

  margin-top: 25px;

  color: var(--primary);

  font-weight: 700;

  font-size: 14px;
}

.custom-service {
  max-width: 750px;
}

.service-process {
  max-width: none;

  background: var(--background-soft);

  padding-left: 20px;

  padding-right: 20px;
}

.service-process p {
  max-width: 650px;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

form {
  max-width: 650px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

form label {
  margin: 18px 0 7px;
  color: var(--text);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.field-status {
  font-size: 13px;
  font-weight: 500;
}

.field-status.required {
  color: #e57373;
}

.field-status.optional {
  color: var(--primary);
}


form input,
form select,
form textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
}

form textarea {
  resize: vertical;
  min-height: 140px;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

form button {
  align-self: center;
  margin-top: 28px;
  padding: 13px 28px;
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

form button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}


.contact-form {
  max-width: 700px;

  margin: 40px auto 0;

  text-align: left;
}

.contact-form label {
  display: block;

  margin: 0 0 7px;

  color: var(--text);

  font-size: 15px;

  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  margin: 0 0 22px;

  padding: 13px 15px;

  color: var(--text);

  background: white;

  border: 1px solid #d5dae3;

  border-radius: 8px;

  font-family: inherit;

  font-size: 16px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow:
    0 0 0 3px
    rgba(37, 99, 235, 0.10);
}

.contact-form textarea {
  resize: vertical;

  min-height: 140px;
}

.contact-form button {
  display: inline-block;

  padding: 13px 28px;

  color: white;

  background: var(--primary);

  border: 2px solid var(--primary);

  border-radius: 8px;

  font-family: inherit;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--primary-dark);

  border-color: var(--primary-dark);

  transform: translateY(-2px);
}


/* =========================================================
   PLATFORM CHECKBOXES
   ========================================================= */

/* =========================================================
   PLATFORM CHECKBOXES
   ========================================================= */

.platform-field {
  border: none;
  padding: 0;
  margin: 18px 0 7px;
  width: 100%;
}

.platform-field legend {
  width: 100%;
  padding: 0;
  margin: 0 0 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--text);

  font-size: 15px;
  font-weight: 700;
}

.platform-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;

  text-align: left;
}

.platform-options label {
  display: flex;

  align-items: center;
  justify-content: flex-start;

  width: auto;

  margin: 6px 0;

  color: var(--text);

  font-size: 15px;
  font-weight: 400;

  gap: 8px;
}

.platform-options input[type="checkbox"] {
  width: auto;

  margin: 0;
  padding: 0;
}



/* =========================================================
   CONTACT FORM — VALIDATION
   ========================================================= */

.field-error {
  border-color: #c62828 !important;

  box-shadow:
    0 0 0 1px #c62828;
}




/* =========================================================
   MOBILE — GLOBAL
   ========================================================= */

@media (max-width: 768px) {

  /* -------------------------------------------------------
     HEADER
     ------------------------------------------------------- */

  header {
    padding: 20px;
  }

  header h1 {
    font-size: 25px;
  }


  /* -------------------------------------------------------
     NAVIGATION
     ------------------------------------------------------- */

  nav {
    min-height: 60px;

    flex-wrap: wrap;

    padding: 0 16px;
  }

  .menu-toggle {
    display: block;

    margin-left: auto;
  }

  .nav-side {
    display: none;
  }

  .nav-links {
    display: none;

    width: 100%;

    flex-direction: column;

    gap: 2px;

    padding: 12px 0 16px;

    margin: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;

    padding: 12px;

    text-align: center;
  }

  .nav-links a.active::after {
    display: none;
  }


  /* -------------------------------------------------------
     HERO
     ------------------------------------------------------- */

  .hero {
    padding: 45px 20px 35px;
  }

  .hero h2 {
    font-size: clamp(36px, 11vw, 50px);

    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;

    max-width: 300px;

    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons .btn {
    width: 100%;
  }


  /* -------------------------------------------------------
     GENERAL SECTIONS
     ------------------------------------------------------- */

  .section {
    padding: 40px 20px;
  }

  .section h2 {
    font-size: 30px;
  }

  .section > p {
    font-size: 16px;
  }

/* =========================================================
   ABOUT — APPROACH
   ========================================================= */

.approach-section {
  max-width: none;

  padding: 20px 20px;

  background: var(--background-soft);
}
  /* -------------------------------------------------------
     ANALYSIS
     ------------------------------------------------------- */

  .analysis-cards {
    grid-template-columns: 1fr;

    gap: 18px;

    text-align: center;
  }

  .analysis-card {
    padding: 28px 22px;
  }


  /* -------------------------------------------------------
     PERSONALISED
     ------------------------------------------------------- */

  .personalised-section > p:last-child {
    font-size: 17px;
  }


  .personalised-section {
  width: auto;
  margin: 40px 20px;
  padding: 40px 25px;
  }


  /* -------------------------------------------------------
     HUMAN
     ------------------------------------------------------- */

  .human-section {
    padding: 70px 20px;
  }


  /* -------------------------------------------------------
     PROCESS
     ------------------------------------------------------- */

  .process-section {
    padding: 10px 20px 70px;
  }

  .process-intro {
    padding-top: 50px;

    padding-bottom: 40px;
  }

  .process {
    flex-direction: column;

    align-items: center;

    width: 100%;
  }

  .process-item {
    width: 100%;

    max-width: 500px;
  }

  .process-card {
    min-height: 200px;

    padding: 25px 45px 25px 25px;
  }

  .process-title {
    font-size: 36px;
  }

  .process-arrow {
    position: relative;
    z-index: 10;
    align-self: center;
    width: 55px;
    height: 70px;

    min-height: 40px;
    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: rotate(90deg);
  }

  .process-item.open .process-content {
    padding: 22px;
  }


  /* -------------------------------------------------------
     ABOUT
     ------------------------------------------------------- */

  .audience-card img {
    width: 180px;
    height: 140px;
    margin-bottom: 20px;
  }

  
  .approach-grid {
    grid-template-columns: 1fr;

    max-width: 500px;
  }

  .audience-grid {
    grid-template-columns: 1fr;

    max-width: 500px;
  }

  .approach-card {
    padding: 30px 25px;
  }

  .audience-card {
    text-align: center;
  }


  /* -------------------------------------------------------
     SERVICES
     ------------------------------------------------------- */

  .service-container {
    grid-template-columns: 1fr;

    margin-top: 35px;

    padding: 0 20px;
  }

  .service-box {
    width: 100%;

    padding: 30px 25px;
  }

  .service-price {
    font-size: 29px;
  }


  /* -------------------------------------------------------
     BUTTONS
     ------------------------------------------------------- */

  .btn {
    padding: 13px 24px;
  }


    .about-personalised-section {
    width: auto;
    margin: 40px 20px;
    padding: 40px 25px;

  }

}
/* =========================================================
   BRAND HEADER
   ========================================================= */

header {
  padding: 18px 30px;
  background: var(--dark);
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand img {
  width: 87px;
  height: 87px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.brand-text {
  text-align: left;
}

.brand-text h1 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.5px;
}

.brand-text p {
  margin: 2px 0 0;
  color: #cbd5e1;
  font-size: 14px;
}


/* ---------------------------------------------------------
   BRAND HEADER — MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

  header {
    padding: 15px 20px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 87px;
    height: 87px;
  }

  .brand-text h1 {
    font-size: 23px;
  }

  .brand-text p {
    font-size: 12px;
  }

}
/* =========================================================
   ABOUT — BULLET LIST
   ========================================================= */

/* =========================================================
   ABOUT — BULLET LIST
   ========================================================= */

.about-list {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 0;
  list-style-position: inside;
  text-align: center;
}

.about-list li {
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 17px;
}
.section h3 {
  max-width: 700px;

  margin: 0 auto 18px;

  color: var(--text);

  font-size: 21px;

  line-height: 1.35;
}
@media (max-width: 768px) {

  .problem-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .problem-image {
    flex: none;
    width: 100%;
  }

  .problem-image img {
    width: 180px;
    max-width: 100%;
    height: auto;
  }

  .problem-content {
    width: 100%;
    max-width: 550px;

    align-items: center;
    text-align: center;
  }

  .problem-content h2,
  .problem-content h3,
  .problem-content p {
    width: 100%;
    text-align: center;
  }


    /* ANALYSIS */

  .analysis-container {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .analysis-content {
    width: 100%;
    max-width: 550px;
    align-items: center;
    text-align: center;
  }

  .analysis-content h2,
  .analysis-content h3,
  .analysis-content p {
    width: 100%;
    text-align: center;
  }

  .analysis-image {
    flex: none;

    width: 100%;

    display: flex;
    justify-content: center;

    overflow: visible;

    margin: -50px 0;
  }

  .analysis-image img {
    width: 300px;

    max-width: none;

    height: auto;

    margin-left: -20px;
  }


}


/* =========================================================
   PRIVACY POLICY
   ========================================================= */

.privacy-section {
  max-width: 900px;

  margin: 0 auto;

  text-align: left;
}

.privacy-section h2,
.privacy-section h3 {
  max-width: none;

  margin-left: 0;
  margin-right: 0;

  text-align: left;
}

.privacy-section h2 {
  margin-bottom: 20px;
}

.privacy-section h3 {
  margin-top: 35px;
  margin-bottom: 18px;
}

.privacy-section > p {
  max-width: none;

  margin-left: 0;
  margin-right: 0;

  text-align: left;
}

.privacy-section ul {
  max-width: none;

  margin-left: 0;

  padding-left: 25px;

  text-align: left;
}

.privacy-section li {
  color: var(--text-soft);

  font-family: inherit;

  font-size: 17px;

  line-height: 1.6;

  margin-bottom: 10px;
}
