/* =========================================
   SOUTHEAST ISLANDS DESIGN SYSTEM
========================================= */

:root {
  /* Brand Colors */

  --color-primary: #0f2748;
  --color-secondary: #2a5c7a;
  --color-accent: #2a8c82;

  --color-background: #fafaf8;
  --color-surface: #f2f4f5;

  --color-text: #2a2e33;
  --color-text-light: #5e6773;

  /* Typography */

  --font-heading: "IBM Plex Serif", serif;
  --font-body: "Inter", sans-serif;

  /* Layout */

  --container-width: 1280px;

  /* Spacing */

  --section-space: 96px;
}
/* =========================================
   CSS RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}
/* =========================================
   LAYOUT
========================================= */

.container {
  width: 100%;
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 32px;
}
/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.75rem;
}

p {
  color: var(--color-text-light);
  font-size: 1rem;
}
/* =========================================
   SECTION
========================================= */

section {
  padding: var(--section-space) 0;
}
/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border: 1px solid transparent;
  border-radius: 4px;

  transition: all 0.3s ease;

  font-weight: 500;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-secondary);
}

.btn-outline {
  background: transparent;

  color: white;

  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
/* =========================================
   NAVIGATION
========================================= */

.site-header {
  position: absolute;

  inset: 0 0 auto 0;

  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  height: 88px;
}
.nav-menu {
  margin-left: auto;
}
.menu-toggle {
  margin-left: auto;
}
.logo {
  font-family: var(--font-heading);

  font-size: 1.45rem;

  font-weight: 600;

  color: white;
}
.logo img {
  height: 40px;

  width: auto;

  display: block;
}

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  background: rgba(7, 33, 70, 0.72);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-menu {
  display: flex;

  gap: 28px;
}

.nav-menu a {
  color: white;

  font-size: 0.88rem;

  font-weight: 500;

  letter-spacing: 0.02em;

  transition: color 0.25s ease;
}
.nav-menu a:hover {
  color: var(--color-accent);
}

/* =========================================
   SEARCH
========================================= */

.nav-search {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.85);

  border-radius: 999px;

  transition: all 0.25s ease;
}

.nav-search svg {
  width: 18px;
  height: 18px;
}

.nav-search:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.nav-search:hover img {
  opacity: 0.8;
}
/* =========================================
   HERO
========================================= */

.hero {
  background:
    linear-gradient(rgba(15, 39, 72, 0.78), rgba(15, 39, 72, 0.82)),
    url("../assets/images/hero/hero-banner.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  min-height: 700px;

  display: flex;

  align-items: center;

  padding-top: 80px;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  color: white;

  max-width: 900px;

  margin-bottom: 28px;
}

.hero p {
  margin-bottom: 42px;

  color: rgba(255, 255, 255, 0.85);

  max-width: 560px;
}

.hero-buttons {
  display: flex;

  gap: 18px;
}
/* =========================================
   NAVIGATION CTA
========================================= */

.nav-cta {
  color: white;
  font-weight: 600;
  margin-left: 10px;
}

.nav-cta:hover {
  color: var(--color-accent);
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: var(--color-primary);

  color: rgba(255, 255, 255, 0.82);
}

.footer-cta {
  padding: 90px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-content {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;
}

.footer-cta h2 {
  color: white;

  max-width: 560px;
}

.footer-main {
  padding: 80px 0;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 60px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid h3 {
  color: white;

  margin-bottom: 20px;

  font-size: 1rem;
}

.footer-grid ul {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.7);

  transition: 0.3s;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer-bottom-content div {
  display: flex;

  gap: 24px;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.72);
}
/* =========================================
   SHARED SECTION LAYOUT
========================================= */

.section-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 700px);
  gap: 72px;
  align-items: start;
}

.section-label {
  padding-top: 8px;
}

.section-label span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-secondary);
  opacity: 0.85;
}

.section-content h2 {
  max-width: 560px;
  margin-bottom: 32px;
}
/* =========================================
   TRUSTED THINKING
========================================= */

.trusted-thinking {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.trusted-content p {
  max-width: 600px;
  margin-bottom: 24px;
}

.trusted-content p:last-child {
  margin-bottom: 0;
}
/* =========================================
   CAPABILITIES
========================================= */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.capability-card {
  padding: 40px;

  border-top: 2px solid var(--color-secondary);

  background: #fff;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.capability-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.capability-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.capability-number::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--color-secondary);
  opacity: 0.4;
}

.capability-card h3 {
  margin-bottom: 28px;
}

.capability-card ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.capability-card li {
  margin-bottom: 12px;

  color: var(--color-text);
}

/* =========================================
   INDUSTRIES
========================================= */

.industries-wrapper {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.industry-group h3 {
  margin-bottom: 32px;
}

.industries-grid {
  display: grid;
  gap: 24px;
}

.industries-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industries-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-item {
  padding: 36px 32px;
  min-height: 190px;

  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;

  display: flex;
  flex-direction: column;
  gap: 16px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-6px);

  border-color: var(--color-secondary);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.industry-item h4 {
  margin: 0;

  line-height: 1.5;

  font-size: 1.2rem;
}
.industry-item p {
  margin: 0;

  line-height: 1.75;

  color: #5e6673;

  font-size: 0.95rem;
}
.industry-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(42, 140, 130, 0.08);

  flex-shrink: 0;
}
.industry-icon-svg {
  width: 26px;
  height: 26px;
}
/* =========================================
   WHY ORGANIZATIONS WORK WITH US
========================================= */

.why-us {
  padding: 120px 0;
}

.why-list {
  margin-top: 56px;
}

.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;

  gap: 32px;

  padding: 36px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.why-number {
  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--color-secondary);

  font-weight: 700;

  letter-spacing: 0.12em;
}

.why-number::after {
  content: "";

  width: 40px;

  height: 1px;

  background: rgba(42, 140, 130, 0.4);
}

.why-copy h3 {
  margin: 0 0 12px;

  font-size: 1.5rem;
}

.why-copy p {
  margin: 0;

  max-width: 620px;

  line-height: 1.8;

  color: #5e6673;
}
/*==================================================
PAGE HERO
==================================================*/

.page-hero {
  padding: 180px 0 120px;

  background: #fff;
}

.page-label {
  display: inline-block;

  margin-bottom: 20px;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: var(--color-secondary);
}

.page-hero h1 {
  max-width: 760px;

  margin-bottom: 28px;
}

.page-hero p {
  max-width: 720px;

  font-size: 1.15rem;

  line-height: 1.8;

  color: var(--color-text-light);
}

/*==================================================
OUR STORY
==================================================*/

.our-story {
  padding: 120px 0;
}

.our-story .section-content p {
  max-width: 760px;

  margin-bottom: 28px;
}

.our-story .section-content p:last-child {
  margin-bottom: 0;
}
/* =========================================
   OUR PERSPECTIVE
========================================= */

.about-perspective {
  padding: 120px 0;
}

.about-perspective p {
  max-width: 760px;
}

.about-perspective p:last-child {
  margin-bottom: 0;
}
.about-perspective .section-content p {
  margin: 0 0 24px;

  line-height: 1.9;

  max-width: 760px;
}

.about-perspective .section-content p:last-child {
  margin-bottom: 0;
}
/* =========================================
   OUR VALUES
========================================= */

.our-values {
  padding: 120px 0;
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 32px;

  margin-top: 56px;
}

.value-card {
  padding: 40px;

  border: 1px solid rgba(0, 0, 0, 0.08);

  background: #fff;

  transition: 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);

  border-color: var(--color-secondary);

  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
  margin-bottom: 16px;
}

.value-card p {
  margin: 0;

  line-height: 1.8;
}
/* =========================================
   HOW WE WORK
========================================= */

.how-we-work {
  padding: 120px 0;
}

.process-list {
  margin-top: 56px;
}

.process-item {
  display: grid;

  grid-template-columns: 100px 1fr;

  gap: 40px;

  padding: 36px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.process-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.process-number {
  font-size: 1.1rem;

  font-weight: 600;

  color: var(--color-secondary);
}

.process-content h3 {
  margin-bottom: 16px;
}

.process-content p {
  margin: 0;

  max-width: 720px;
}
/* =========================================
   INDUSTRY FEATURE
========================================= */

.industry-feature {
  padding: 120px 0;
}

.industry-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 72px;

  align-items: center;
}

.industry-layout.reverse .industry-image {
  order: 2;
}

.industry-layout.reverse .industry-copy {
  order: 1;
}

.industry-image {
  overflow: hidden;

  border-radius: 18px;
}

.industry-image img {
  width: 100%;

  aspect-ratio: 4/3;

  object-fit: cover;

  display: block;

  transition: 0.4s;
}

.industry-feature:hover img {
  transform: scale(1.03);
}

.industry-label {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 0.8rem;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--color-secondary);
}

.industry-copy h2 {
  margin-bottom: 24px;
}

.industry-copy p {
  margin-bottom: 32px;
}

.industry-focus h3 {
  margin-bottom: 18px;
}

.industry-focus ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.industry-focus li {
  position: relative;

  padding-left: 18px;

  margin-bottom: 14px;
}

.industry-focus li::before {
  content: "";

  width: 7px;

  height: 1px;

  background: var(--color-secondary);

  position: absolute;

  left: 0;

  top: 0.8em;
}
.organizations-support {
  padding: 120px 0;
}

.organization-list {
  margin-top: 64px;
}

.organization-item {
  padding: 36px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.organization-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.organization-item h3 {
  margin: 0 0 14px;
}

.organization-item p {
  margin: 0;

  max-width: 760px;

  line-height: 1.9;
}
/* ======================================================
   HOW WE WORK
====================================================== */

.how-work-hero {
  padding: 160px 0 120px;
}

.how-work-hero .hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.how-work-hero h1 {
  margin: 20px 0 28px;
}

.how-work-hero p {
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.125rem;
  line-height: 1.9;
}

.how-work-hero .btn {
  margin-bottom: 72px;
}
.how-work-hero .hero-image,
.how-work-hero .hero-image img {
  border-radius: 0;
}
.hero-image img {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 20px;
  aspect-ratio: 16/8;
  object-fit: cover;
}
/* ======================================================
   PHILOSOPHY
====================================================== */

.work-philosophy {
  padding: 120px 0;
}

.work-philosophy .section-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  margin-bottom: 72px;
}

.work-philosophy h2 {
  margin-bottom: 28px;
}

.work-philosophy p {
  max-width: 760px;
  margin-bottom: 24px;
  line-height: 1.9;
}

.work-philosophy p:last-child {
  margin-bottom: 0;
}

.philosophy-image img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 16/8;
  object-fit: cover;
}
/* ======================================================
   SECTION HEADING
====================================================== */

.section-heading {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-heading h2 {
  margin: 18px 0 40px;
}
/* ======================================================
   ENGAGEMENT JOURNEY
====================================================== */

.engagement-journey {
  padding: 120px 0;
}

.journey-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 40px;
}

.journey-timeline::before {
  content: "";

  position: absolute;

  top: 20px;
  left: 0;
  right: 0;

  height: 2px;

  background: #d9dde2;
}

.journey-step {
  position: relative;

  z-index: 2;
}

.circle {
  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: white;

  border: 2px solid var(--color-accent);

  margin-bottom: 28px;

  transition: 0.3s;
}

.journey-step:hover .circle {
  background: var(--color-accent);

  transform: scale(1.1);
}

.journey-step h3 {
  margin-bottom: 16px;

  font-size: 1.15rem;
}

.journey-step p {
  font-size: 0.95rem;

  line-height: 1.8;
}
/* ======================================================
   FROM INSIGHT TO ACTION
====================================================== */

.insight-action {
  padding: 140px 0;
}

.editorial-process {
  max-width: 960px;
  margin: 0 auto;
}

.process-item {
  display: grid;
  grid-template-columns: 120px 1fr;

  gap: 48px;

  padding: 48px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);

  transition: 0.35s ease;
}

.process-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.process-number {
  font-family: var(--font-heading);

  font-size: 3rem;

  font-weight: 600;

  color: #c7cdd3;

  transition: 0.3s;
}

.process-content h3 {
  margin-bottom: 18px;

  font-size: 1.5rem;
}

.process-content p {
  max-width: 620px;

  line-height: 1.9;
}

.process-item:hover {
  padding-left: 18px;
}

.process-item:hover .process-number {
  color: var(--color-accent);
}
/* ======================================================
   PARTNERSHIP MODEL
====================================================== */

.partnership-model {
  padding: 140px 0;
}

.partnership-layout {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 64px;
  align-items: start;
}

.partner-column {
  padding-bottom: 12px;
}

.partner-label {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 0.78rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--color-accent);

  font-weight: 600;
}

.partner-column h3 {
  margin-bottom: 36px;
}

.partner-column ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.partner-column li {
  padding: 22px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);

  color: var(--color-text-light);
}

.partner-column li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.partner-middle {
  text-align: center;
}

.partner-icon {
  width: 90px;
  height: 90px;

  margin: 0 auto 28px;

  border-radius: 50%;

  border: 1px solid rgba(0, 0, 0, 0.08);

  display: flex;

  justify-content: center;
  align-items: center;

  font-size: 2rem;

  color: var(--color-accent);
}

.partner-middle h3 {
  margin-bottom: 18px;
}

.partner-middle p {
  line-height: 1.9;
}
.shared-outcomes {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 48px;

  margin-top: 100px;

  padding-top: 60px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.outcome {
  text-align: center;
}

.outcome h4 {
  margin-bottom: 14px;

  font-family: var(--font-heading);

  font-size: 1.35rem;
}

.outcome p {
  line-height: 1.8;
}

/* ======================================================
   CONTACT HERO
====================================================== */

.contact-hero {
  padding: 160px 0 120px;
}

.contact-hero .hero-content {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
}

.contact-hero h1 {
  margin: 20px 0 32px;
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.9;
}

.contact-hero .hero-image img {
  display: block;

  width: 100%;

  border-radius: 20px;

  aspect-ratio: 16/8;

  object-fit: cover;
}
/* ======================================================
   START THE CONVERSATION
====================================================== */

.contact-conversation {
  padding: 120px 0;
}

.contact-conversation .section-grid {
  display: grid;

  grid-template-columns: 260px 1fr;

  gap: 72px;
}

.contact-conversation h2 {
  margin-bottom: 28px;
}

.contact-conversation p {
  max-width: 760px;

  margin-bottom: 24px;

  line-height: 1.9;
}

.contact-conversation p:last-of-type {
  margin-bottom: 48px;
}
.contact-email {
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  padding-top: 40px;
}

.contact-email span {
  display: block;

  margin-bottom: 16px;

  text-transform: uppercase;

  letter-spacing: 0.18em;

  font-size: 0.78rem;

  color: var(--color-accent);

  font-weight: 600;
}

.contact-email a {
  display: inline-block;

  font-family: var(--font-heading);

  font-size: 2rem;

  font-weight: 600;

  color: var(--color-primary);

  text-decoration: none;

  margin-bottom: 18px;

  transition: 0.3s;
}

.contact-email a:hover {
  color: var(--color-accent);
}

.contact-email small {
  display: block;

  max-width: 500px;

  font-size: 0.95rem;

  color: var(--color-text-light);

  line-height: 1.8;
}
.contact-options {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  margin-top: 60px;

  padding-top: 48px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-method-label {
  display: block;

  margin-bottom: 20px;

  text-transform: uppercase;

  letter-spacing: 0.18em;

  font-size: 0.78rem;

  color: var(--color-accent);

  font-weight: 600;
}
.contact-method > a {
  display: inline-block;

  font-family: var(--font-heading);

  font-size: 1.65rem;

  font-weight: 600;

  color: var(--color-primary);

  text-decoration: none;

  margin-bottom: 20px;

  transition: 0.3s;
}

.contact-method > a:hover {
  color: var(--color-accent);
}
.contact-method p {
  margin-bottom: 20px;

  line-height: 1.9;
}

.contact-method small {
  display: block;

  margin-bottom: 24px;

  line-height: 1.8;

  color: var(--color-text-light);
}

/* ======================================================
   FAQ
====================================================== */

.faq {
  padding: 120px 0;
}

.faq-list {
  max-width: 920px;

  margin: 0 auto;
}

.faq-item {
  padding: 48px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  margin-bottom: 18px;
}

.faq-item p {
  max-width: 760px;

  line-height: 1.9;
}

/* ======================================================
   PRIVACY POLICY
====================================================== */

.legal-hero {
  padding: 160px 0 100px;
}

.legal-hero .hero-content {
  max-width: 820px;

  margin: 0 auto;

  text-align: center;
}

.legal-hero h1 {
  margin: 20px 0 32px;
}

.legal-hero p {
  max-width: 700px;

  margin: 0 auto;

  font-size: 1.125rem;

  line-height: 1.9;
}

.legal-date {
  margin-top: 48px;

  color: var(--color-text-light);

  font-size: 0.95rem;

  letter-spacing: 0.04em;
}

/* ======================================================
   POLICY CONTENT
====================================================== */

.legal-content {
  padding: 0 0 120px;
}

.legal-wrapper {
  max-width: 820px;

  margin: 0 auto;
}

/* ======================================================
   POLICY BLOCK
====================================================== */

.legal-block {
  padding: 64px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-block:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-label {
  display: inline-block;

  margin-bottom: 18px;

  text-transform: uppercase;

  letter-spacing: 0.18em;

  font-size: 0.78rem;

  font-weight: 600;

  color: var(--color-accent);
}

.legal-block h2 {
  margin-bottom: 28px;
}

.legal-block p {
  margin-bottom: 22px;

  color: var(--color-text-light);

  line-height: 1.9;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

/* ======================================================
   POLICY LIST
====================================================== */

.legal-list {
  list-style: disc;

  padding-left: 22px;

  margin-top: 28px;
}

.legal-list li {
  margin-bottom: 14px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

/* ======================================================
   CONTACT BLOCK
====================================================== */

.legal-contact a {
  display: inline-block;

  margin-top: 16px;

  font-family: var(--font-heading);

  font-size: 1.9rem;

  font-weight: 600;

  color: var(--color-primary);

  text-decoration: none;

  transition: 0.3s;
}

.legal-contact a:hover {
  color: var(--color-accent);
}

/* ======================================================
   RESPONSIVE
====================================================== */

/* ======================================================
   INSIGHTS HERO
====================================================== */

.insights-hero {
  padding: 170px 0 110px;
}

.insights-hero .hero-content {
  max-width: 760px;
}

.insights-hero h1 {
  margin: 20px 0 32px;
}

.insights-hero p {
  max-width: 700px;
  font-size: 1.125rem;
  line-height: 1.9;
}

/* ======================================================
   FEATURED INSIGHT
====================================================== */

.featured-insight {
  padding: 0 0 120px;
}

.featured-card {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 72px;

  align-items: center;
}

.featured-image {
  overflow: hidden;

  border-radius: 18px;
}

.featured-image img {
  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  transition: transform 0.35s ease;
}

.featured-card:hover img {
  transform: scale(1.03);
}

.featured-copy {
  max-width: 520px;
}

.insight-category {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 0.78rem;

  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--color-accent);
}

.featured-copy h2 {
  margin-bottom: 28px;
}

.featured-copy p {
  margin-bottom: 36px;

  line-height: 1.9;
}

.insight-meta {
  display: flex;

  gap: 24px;

  margin-bottom: 40px;

  font-size: 0.9rem;

  color: var(--color-text-light);
}

/* ======================================================
   CATEGORY FILTER
====================================================== */

.insight-categories {
  padding: 0 0 80px;
}

.category-wrapper {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;
}

.category-btn {
  padding: 12px 22px;

  background: transparent;

  border: 1px solid rgba(0, 0, 0, 0.08);

  color: var(--color-text);

  transition: all 0.3s ease;
}

.category-btn:hover {
  background: var(--color-primary);

  color: white;
}

.category-btn.active {
  background: var(--color-primary);

  color: white;

  border-color: var(--color-primary);
}

/* ======================================================
   ALL INSIGHTS
====================================================== */

.all-insights {
  padding: 0 0 140px;
}

.all-insights .section-heading {
  margin-bottom: 80px;

  text-align: left;
}

.all-insights .section-heading h2 {
  margin: 20px 0 24px;
}

.all-insights .section-heading p {
  max-width: 720px;
}

.insight-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 40px;
}

/* ======================================================
   INSIGHT CARD
====================================================== */

.insight-card {
  display: flex;

  flex-direction: column;
}

.insight-card img {
  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  border-radius: 14px;

  margin-bottom: 24px;

  transition: transform 0.35s ease;
}

.insight-card:hover img {
  transform: scale(1.03);
}

.insight-card h3 {
  margin: 18px 0;

  font-size: 1.45rem;

  transition: color 0.3s ease;
}

.insight-card:hover h3 {
  color: var(--color-secondary);
}

.insight-card p {
  flex: 1;

  margin-bottom: 28px;

  line-height: 1.85;
}

.insight-card a {
  color: inherit;
}

.insight-card .insight-meta {
  margin-bottom: 0;
}

/* ======================================================
   CTA
====================================================== */

.insights-cta {
  padding: 0 0 140px;
}

.cta-box {
  padding: 80px;

  background: var(--color-surface);

  text-align: center;

  border-radius: 20px;
}

.cta-box h2 {
  max-width: 760px;

  margin: 20px auto 28px;
}

.cta-box p {
  max-width: 700px;

  margin: 0 auto 40px;

  line-height: 1.9;
}

/* ==========================================================
   ARTICLE HERO
========================================================== */

.article-hero {
  padding: 170px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: inherit;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.article-category {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(42, 140, 130, 0.12);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-reading-time {
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.article-header {
  max-width: 860px;
}

.article-header h1 {
  margin: 20px 0 28px;
}

.article-header .standfirst {
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* ==========================================================
   FEATURE IMAGE
========================================================== */

.article-cover {
  padding-bottom: 90px;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 18px;
}

/* ==========================================================
   ARTICLE LAYOUT
========================================================== */

.article-section {
  padding-bottom: 120px;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 72px;
}

/* ==========================================================
   SIDEBAR
========================================================== */

.article-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.article-sidebar h2 {
  margin-bottom: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.article-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.article-sidebar li {
  margin: 0;
}

.article-sidebar a {
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.article-sidebar a:hover {
  color: var(--color-primary);
}

/* ==========================================================
   ARTICLE BODY
========================================================== */

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 80px;
  margin-bottom: 28px;
}

.article-body h3 {
  margin-top: 48px;
  margin-bottom: 20px;
}

.article-body p {
  margin-bottom: 28px;
  line-height: 1.95;
}

.article-body strong {
  color: var(--color-primary);
}

.article-body ul,
.article-body ol {
  margin: 24px 0 36px 24px;
}

.article-body li {
  margin-bottom: 14px;
  line-height: 1.8;
}

.article-body hr {
  margin: 72px 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==========================================================
   EXECUTIVE SUMMARY
========================================================== */

.executive-summary {
  padding: 42px;
  margin: 48px 0 72px;
  border-left: 5px solid var(--color-accent);
  background: var(--color-surface);
  border-radius: 12px;
}

.executive-summary h3 {
  margin-top: 0;
}

.executive-summary ul {
  margin-bottom: 0;
}

/* ==========================================================
   BLOCKQUOTE
========================================================== */

.article-body blockquote {
  margin: 56px 0;
  padding: 32px 36px;
  border-left: 5px solid var(--color-primary);
  background: var(--color-surface);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.7;
}

/* ==========================================================
   TABLE
========================================================== */

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0 56px;
}

.article-body th {
  background: var(--color-primary);
  color: white;
  text-align: left;
  padding: 16px;
}

.article-body td {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-body tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

/* ==========================================================
   KEY TAKEAWAYS
========================================================== */

.key-takeaways {
  margin-top: 90px;
  padding: 48px;
  border-radius: 18px;
  background: var(--color-surface);
}

.key-takeaways h2 {
  margin-top: 0;
}

.key-takeaways ul {
  margin-bottom: 0;
}

/* ==========================================================
   REFERENCES
========================================================== */

.references {
  margin-top: 90px;
}

.references h2 {
  margin-bottom: 32px;
}

.references ol {
  margin-left: 22px;
}

.references li {
  margin-bottom: 18px;
  line-height: 1.8;
}

/* ==========================================================
   RELATED INSIGHTS
========================================================== */

.related-insights {
  padding: 120px 0;
  background: var(--color-surface);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.related-card h3 {
  margin: 16px 0;
  font-size: 1.35rem;
}

.related-card p {
  line-height: 1.8;
}

/* ==========================================================
   ARTICLE CTA
========================================================== */

.article-cta {
  padding: 120px 0;
}

.article-cta-box {
  padding: 72px;
  border-radius: 20px;
  text-align: center;
  background: var(--color-primary);
  color: white;
}

.article-cta-box h2,
.article-cta-box p {
  color: white;
}

.article-cta-box p {
  max-width: 700px;
  margin: 28px auto 40px;
  opacity: 0.92;
}

/* =========================================
   HAMBURGER MENU
========================================= */

.menu-toggle {
  display: none;

  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;
  background: transparent;

  color: white;

  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* =========================================
   404 PAGE
========================================= */

.not-found {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 220px);
  padding: 10rem 0 8rem;
}

.not-found-content {
  max-width: 720px;
}

.not-found h1 {
  margin-bottom: 2rem;
}

.not-found-description {
  max-width: 640px;
  margin-bottom: 3rem;

  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-outline-dark {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* ==========================================================
   RESPONSIVE 1024
========================================================== */

@media (max-width: 1024px) {
  .article-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .article-sidebar {
    position: sticky;
    top: 120px;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ==========================
     404 Responsive
  ========================== */
  .not-found {
    padding: 9rem 0 7rem;
  }
}

/* ==========================================================
   RESPONSIVE 820
========================================================== */
@media (max-width: 820px) {
  .contact-conversation .section-grid,
  .partnership-layout,
  .section-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   RESPONSIVE 900
========================================================== */
/* Shared Section Layout */
@media (max-width: 900px) {
  .contact-conversation .section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-label {
    padding-top: 0;
  }

  .section-content h2 {
    max-width: 100%;
  }
}
/* ==========================================================
   RESPONSIVE 768
========================================================== */

@media (max-width: 768px) {
  /* ==========================
     Homepage
  ========================== */

  .capabilities-grid {
    gap: 24px;
  }

  .capability-card {
    padding: 32px;
  }

  .capability-card h3 {
    font-size: 1.3rem;
    line-height: 1.15;
  }

  .industries-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ==========================
     How We Work
  ========================== */

  .journey-timeline {
    gap: 16px;
  }

  .circle {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
  }

  .journey-step h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .journey-step p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* ==========================
     Article
  ========================== */

  .article-hero {
    padding: 150px 0 60px;
  }

  .article-cover {
    padding-bottom: 60px;
  }

  .article-header .standfirst {
    font-size: 1.05rem;
  }

  .executive-summary,
  .key-takeaways,
  .article-cta-box {
    padding: 32px;
  }

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

  .article-body blockquote {
    padding: 28px;
    font-size: 1.2rem;
  }

  .value-card {
    padding: 32px;
  }

  .value-card h3 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .industry-layout,
  .industry-layout.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .industry-layout.reverse .industry-image,
  .industry-layout.reverse .industry-copy {
    order: initial;
  }

  .industry-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .partnership-layout {
    grid-template-columns: 1fr 180px 1fr;
    gap: 24px;
  }

  .partner-middle p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .journey-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .journey-step h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .journey-step p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .journey-timeline::before {
    display: none;
  }

  .circle {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
  }

  .journey-step h3 {
    font-size: 1.15rem;
  }

  .journey-step p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .journey-step h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .journey-step p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .legal-hero {
    padding: 140px 0 80px;
  }

  .legal-block {
    padding: 48px 0;
  }

  .legal-contact a {
    font-size: 1.4rem;

    word-break: break-word;
  }

  .insights-hero {
    padding: 150px 0 90px;
  }

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

  .category-wrapper {
    justify-content: center;
  }

  .cta-box {
    padding: 40px 28px;
  }

  .cta-box h2 {
    margin: 18px 0 24px;
  }

  .featured-copy h2 {
    margin-bottom: 20px;
  }

  .featured-copy p {
    margin-bottom: 28px;
  }

  /* ==========================
     404 Responsive
  ========================== */
  .not-found {
    min-height: auto;
    padding: 8rem 0 6rem;
  }

  .not-found-description {
    font-size: 1rem;
  }

  .not-found-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .not-found-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ==========================================================
   RESPONSIVE 600
========================================================== */
@media (max-width: 600px) {
  /* Navigation */

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;

    position: absolute;
    top: 88px;
    left: 0;
    right: 0;

    background: rgba(7, 33, 70, 0.98);

    padding: 24px;
    gap: 20px;
  }
  /* Footer CTA */

  .footer-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-cta h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  /* ==========================
   Footer
========================== */

  .footer-main {
    padding: 56px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand img {
    height: 44px;
    margin-bottom: 18px;
  }

  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 260px;
  }

  .footer-grid h3 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .footer-grid ul {
    gap: 10px;
  }

  .footer-grid li,
  .footer-grid a {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  /* ==========================
   Footer Bottom
========================== */

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .footer-bottom-content div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom-content a {
    font-size: 0.9rem;
  }
  /* ==========================
   How we work - Journey
========================== */
  .journey-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .journey-timeline::before {
    display: none;
  }

  .journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .circle {
    width: 32px;
    height: 32px;
    margin: 0 0 16px;
  }

  .journey-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .journey-step p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  /* ==========================
   How we work - our philosophy
========================== */
  .work-philosophy .section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-philosophy .section-label {
    order: 1;
  }

  .work-philosophy .section-content {
    order: 2;
  }
  /* ==========================
   Partnership Model
========================== */

  .partnership-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-column {
    text-align: left;
  }

  .partner-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .partner-column h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 16px 0 24px;
  }

  .partner-column ul {
    gap: 12px;
  }

  .partner-column li {
    font-size: 1rem;
    line-height: 1.8;
  }

  .partner-middle {
    order: 2;
    text-align: center;
  }

  .partner-middle p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .middle-line {
    display: none;
  }

  .together-circle {
    margin: 0 auto 20px;
  }
  /* ==========================
  Featured Insights
========================== */
  .featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured-image img {
    width: 100%;
    display: block;
  }

  .featured-copy {
    text-align: left;
  }
}
/* ==========================================================
   RESPONSIVE 480 to include 430 and 425 such as iPhone 14 Pro Max, iPhone 14 Plus, Pixel, and Galaxy S series
========================================================== */

@media (max-width: 480px) {
  /* Shared */

  .container {
    padding: 0 20px;
  }

  section {
    padding: 72px 0;
  }

  /* Hero */

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }
  /* Homepage - Shared Section Layout */

  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-label {
    padding-top: 0;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }

  .section-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    max-width: 100%;
  }

  .section-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
  /* Capability Cards */

  .capability-card {
    padding: 28px 24px;
  }

  .capability-card h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .capability-card ul {
    gap: 12px;
  }

  .capability-card li {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .industries-grid-3,
  .industries-grid-2 {
    grid-template-columns: 1fr;
  }
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .shared-outcomes {
    grid-template-columns: 1fr;
  }
  .contact-options {
    grid-template-columns: 1fr;
  }
  .contact-conversation .section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .work-philosophy .section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ==========================
   How We Work Hero
========================== */

  .how-work-hero .hero-content {
    max-width: 100%;
  }

  .how-work-hero .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }

  .how-work-hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .how-work-hero p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
  }
  /* ==========================
   Engagement Journey
========================== */

  .journey-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .journey-timeline::before {
    display: none;
  }

  .journey-step {
    text-align: left;
  }

  .circle {
    width: 28px;
    height: 28px;
    margin: 0 0 16px;
  }

  .journey-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .journey-step p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ==========================
   From Insight to Action
========================== */

  .editorial-process {
    gap: 40px;
  }

  .process-item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    padding: 32px 0;
  }

  .process-number {
    font-size: 3rem;
    line-height: 1;
  }

  .process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .process-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* ==========================
   Insights Hero
========================== */

  .insights-hero .hero-content {
    max-width: 100%;
  }

  .insights-hero .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }

  .insights-hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .insights-hero p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
  }
  /* ==========================
   Featured Insight
========================== */

  .featured-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
  }

  .featured-content {
    width: 100%;
  }

  .featured-content .section-label {
    font-size: 0.8rem;
  }

  .featured-content h2,
  .featured-content h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 16px 0;
  }

  .featured-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .featured-meta {
    font-size: 0.9rem;
  }

  .featured-content .btn {
    width: 100%;
  }
  /* ==========================
   Insights CTA
========================== */

  .insights-cta .cta-box {
    padding: 48px 24px;
  }

  .insights-cta .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }

  .insights-cta h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .insights-cta p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
  }
  /* ==========================
   Industry Feature
========================== */

  .industry-layout {
    gap: 24px;
  }

  .industry-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .industry-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .industry-copy h2 {
    font-size: 1.9rem;
    line-height: 1.15;
    margin: 16px 0 20px;
  }

  .industry-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .industry-focus {
    margin-top: 32px;
  }

  .industry-focus h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .industry-focus ul {
    gap: 12px;
  }

  .industry-focus li {
    font-size: 1rem;
    line-height: 1.8;
  }
  /* ==========================
   About Hero
========================== */

  .page-hero {
    padding-top: 120px;
  }

  .page-hero .container {
    max-width: 100%;
  }

  .page-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }

  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin: 0 0 24px;
    max-width: 100%;
  }

  .page-hero p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
  }
  /* ==========================
   Our Values
========================== */

  .our-values .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .our-values .section-label {
    padding-top: 0;
  }

  .our-values .section-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 24px;
  }

  .value-card h3 {
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .value-card p {
    font-size: 1rem;
    line-height: 1.8;
  }
  /* ==========================
   How We Work - Engagement Model
========================== */

  .how-we-work .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-we-work .section-label {
    padding-top: 0;
  }

  .how-we-work .section-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  /* Process List */

  .process-list {
    gap: 0;
  }

  .process-item {
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .process-number {
    font-size: 3rem;
    line-height: 1;
  }

  .process-content h3 {
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .process-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .journey-step {
    text-align: center;
  }

  .circle {
    margin: 0 auto 20px;
  }

  .journey-step h3 {
    margin-bottom: 12px;
  }

  .journey-step p {
    max-width: 320px;
    margin: 0 auto;
  }
  /* ==========================
   Contact Hero
========================== */

  .contact-hero {
    padding: 120px 0 64px;
  }

  .contact-hero .hero-content {
    max-width: 100%;
  }

  .contact-hero .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }

  .contact-hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .contact-hero p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
  }

  .contact-hero .hero-image {
    margin-top: 40px;
  }

  .contact-hero .hero-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
  }
  .contact-conversation .section-content h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .contact-email a {
    font-size: 1rem;
    line-height: 1.3;

    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .legal-contact a {
    font-size: 1.1rem;
  }
  /* ==========================
   Consultation Process
========================== */

  .consultation-process .section-heading {
    margin-bottom: 32px;
  }

  .consultation-process .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .consultation-process .section-heading h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 16px;
  }

  .consultation-process .process-item {
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .consultation-process .process-number {
    font-size: 3rem;
    line-height: 1;
  }

  .consultation-process .process-content h3 {
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .consultation-process .process-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
  /* ==========================
   FAQ
========================== */

  .faq .section-heading {
    margin-bottom: 32px;
  }

  .faq .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .faq .section-heading h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 16px;
  }

  .faq-list {
    gap: 0;
  }

  .faq-item {
    padding: 28px 0;
  }

  .faq-item h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .faq-item p {
    font-size: 1rem;
    line-height: 1.8;
  }
  /* ==========================
   Article Hero
========================== */

  .article-hero {
    padding: 120px 0 56px;
  }

  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;

    font-size: 0.85rem;
    line-height: 1.6;
  }

  .article-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 24px;
  }

  .article-category {
    font-size: 0.8rem;
    letter-spacing: 0.12em;

    padding: 10px 18px;
  }

  .article-reading-time {
    font-size: 0.9rem;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-sidebar {
    position: static;
    top: auto;
    align-self: auto;
    margin-bottom: 32px;
  }
  .article-header h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .article-header .standfirst {
    font-size: 1rem;
    line-height: 1.8;
  }
  .references li {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .article-cover {
    padding-bottom: 40px;
  }

  .article-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
  }
  /* ==========================
   Legal Hero
========================== */

  .legal-hero {
    padding: 120px 0 64px;
  }

  .legal-hero .hero-content {
    max-width: 100%;
  }

  .legal-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }

  .legal-hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .legal-hero p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .legal-date {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
/* ==========================================================
   RESPONSIVE 375
========================================================== */
/* ==========================
   Capabilities 
========================== */
@media (max-width: 375px) {
  .capabilities .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .capabilities .section-content h2 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .capability-card {
    padding: 24px;
  }

  .capability-number {
    font-size: 1.25rem;
  }

  .capability-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 20px 0 16px;
  }

  .capability-card ul {
    gap: 10px;
  }

  .capability-card li {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .contact-email a {
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .legal-contact a {
    font-size: 1.05rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
/* ==========================================================
   RESPONSIVE 320, only email to fix, I made it to 1.05rem
========================================================== */
/* ======================================================
   ACCESSIBILITY
   Reduced Motion
====================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}
