:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --surface-alt: #f1eee8;
  --text: #1f1f1c;
  --text-soft: #5f5a52;
  --heading: #141412;
  --border: #ddd6cc;
  --primary: #2e4a3f;
  --primary-dark: #23392f;
  --accent: #d7c6ab;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1200px;
  --section-space: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.desktop-menu a{
    color: white;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;

  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: var(--section-space) 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}


h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--heading);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

ul {
  padding-left: 20px;
  color: var(--text-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn--primary {
  background: gold;
  color: #fff;
}

.btn--primary:hover {
  background: var(--surface-alt);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--heading);
  border-color: var(--border);
}

.btn--secondary:hover {
  background: var(--surface-alt);
}

.hero {
  padding-top: 120px;
  padding-bottom: 110px;
 
    
}

.hero__content {
  max-width: 760px;
}

.hero__text {
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__trust p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.problem__grid,
.solution__grid,
.services__grid,
.metrics__grid,
.health-check-sections__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.problem-card,
.solution-item,
.service-card,
.metric-card,
.check-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.problem-card {
  grid-column: span 4;
}

.problem-card--highlight {
  background: goldenrod;
  color: #fff;
  border-color: var(--primary);
}

.problem-card--highlight p,
.problem-card--highlight h3 {
  color: #fff;
}

.solution-item {
  grid-column: span 6;
}

.service-card {
  grid-column: span 4;
}

.service-card__intro {
  margin-bottom: 16px;
}

.service-card__list {
  margin: 0;
}
.services__grid h3 {
    color: goldenrod;
}
.metrics {
  background: var(--surface-alt);
}

.metric-card {
  grid-column: span 3;
  text-align: left;
}

.metric-card h3 {
  margin-bottom: 10px;
}

.metric-number {
  display: inline-block;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: goldenrod;
  letter-spacing: -0.04em;
}

.metrics__note {
  margin-top: 28px;
  max-width: 760px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.process-step h3 {
    color: goldenrod;
}
.process-step__number {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.about__grid,
.health-check-overview__grid,
.health-check-promo__box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.about__box,
.resource-card,
.form-card,
.intro-box,
.cta__box,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
h2 h3 {
    color: goldenrod;
}
.faq__list {
  display: grid;
  gap: 18px;
}

.cta {
  padding-bottom: 120px;
}

.cta__box,
.cta-box {
  text-align: center;
}

.cta__actions,
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.page-hero {
  padding-top: 120px;
  padding-bottom: 40px;
}

.page-intro {
  max-width: 720px;
  font-size: 1.08rem;
}

.case-study-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.case-study-card__label {
  margin-bottom: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
}

.case-study-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.case-study-block {
  padding: 20px;
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--heading);
}

.form-group input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.btn--full {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.health-check-promo {
  background: var(--surface-alt);
}

.health-check-promo__list {
  margin: 22px 0;
}

.health-check-promo__actions {
  margin-top: 22px;
}
footer {
    background-color: black;
}
.socialmedialinks {
    display: flex;
    gap: 10px; 
    align-items: center;
    justify-content: center; /* centres the row */
    gap: 10px;
    align-items: center;
    padding-top: 20px;


}

.ring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.ring-card {
  text-align: center;
}

.progress-ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
}

.progress-ring svg {
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 12;
}

.ring-fill {
  fill: none;
  stroke: gold; /* purple tone */
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 402; /* circumference of r=64 */
  stroke-dashoffset: 402;
  transition: stroke-dashoffset 1.4s ease;
}

.ring-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  display: none;
  bottom: -200px;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  left: 50%;
  z-index: 9999;
  max-width: 720px;
  padding: 20px;
  color: #fff;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.cookie-banner.show {
   display: block;
   opacity: 1;
}

.cookie-banner .btn {
  background-color: var(--gold-soft);
}

.cookie-banner .btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-text h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 8px;
}

.cookie-accept {
  color: #fff;
  background: gold;
}

.cookie-reject {
  color: #fff;
  background: #475569;
}

.cookie-settings {
  color: #fff;
  background: #0ea5e9;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.cookie-modal-panel {
  max-width: 480px;
  margin: 10% auto;
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

.cookie-desc {
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0;
  color: rgb(30, 29, 29);
}

.cookie-option p {
  margin: 2px 0 0;
  font-size: 12px;
  opacity: 0.6;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #ccc;
  border-radius: 30px;
  transition: 0.4s;
}

.slider::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background: #22c55e;
}

input:checked + .slider::before {
  transform: translateX(22px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 6px;
}

.cookie-modal-buttons button:first-child {
  color: #fff;
  background: #22c55e;
}

.cookie-modal-buttons button:last-child {
  color: #fff;
  background: #64748b;
}


@media (max-width: 1100px) {
  .problem-card,
  .service-card,
  .metric-card {
    grid-column: span 6;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --section-space: 72px;
  }

  .solution-item,
  .problem-card,
  .service-card,
  .metric-card,
  .check-card {
    grid-column: span 12;
  }

  .about__grid,
  .health-check-overview__grid,
  .health-check-promo__box,
  .case-study-card__grid,
  .process__steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 80px;
  }
}



@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .problem-card,
  .solution-item,
  .service-card,
  .metric-card,
  .process-step,
  .faq-item,
  .about__box,
  .resource-card,
  .form-card,
  .intro-box,
  .cta__box,
  .cta-box {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .cta__actions,
  .cta-actions {
    flex-direction: column;
  }
}