/* ============================================================
   GOLSHTECH WEBSITE STYLES
   Section 1: Base styles, variables & foundations
   ============================================================ */

/* ── RESET ── */

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


/* ── VARIABLES ── */

:root {
  --navy: #0B1F3A;
  --navy-mid: #152D4E;
  --steel: #1E4D7B;

  --accent: #00A8E8;
  --accent-dim: #0085B8;

  --light: #F4F7FB;
  --mid: #E2EAF4;

  --text: #0B1F3A;
  --muted: #4A6080;

  --white: #FFFFFF;
  --rule: #D0DCE8;
}


/* ── BASE ── */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}


/* ── ACCESSIBILITY ── */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;

  background: var(--accent);
  color: var(--navy);

  padding: 10px 18px;
  font-weight: 700;
  font-size: 12.5px;

  border-radius: 0 0 8px 0;
  z-index: 999;
}

.skip-link:focus {
  left: 0;
}


/* ── GLOBAL HELPERS ── */

.section-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: var(--accent-dim);

  margin-bottom: 12px;
}


.section-title {
  font-size: 20px;
  font-weight: 700;

  color: var(--navy);

  margin-bottom: 10px;
}


.section-body {
  font-size: 13.5px;
  color: var(--muted);

  line-height: 1.7;

  margin-bottom: 32px;
}


/* ── MAIN PAGE GRID ── */

main {
  display: grid;
  grid-template-columns: 1fr 320px;
}


/* ── LEFT COLUMN ── */

.col-main {
  padding: 48px 48px 48px 60px;
  border-right: 1px solid var(--rule);
}


/* ── RIGHT COLUMN ── */

.col-side {
  padding: 48px 36px;
  background: var(--light);
}


/* ── SCROLL TARGET OFFSET ── */

section,
main [id] {
  scroll-margin-top: 84px;
}


/* ── RESPONSIVE FOUNDATION ── */

@media (max-width: 1024px) {

  main {
    grid-template-columns: 1fr 280px;
  }

  .col-main {
    padding: 36px 32px 36px 40px;
  }

  .col-side {
    padding: 36px 24px;
  }

}


@media (max-width: 768px) {

  main {
    grid-template-columns: 1fr;
  }

  .col-main {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .col-side {
    padding: 32px 24px;
  }

}


@media (max-width: 480px) {

  body {
    font-size: 13px;
  }

  .col-main,
  .col-side {
    padding: 24px 16px;
  }

}

/* ============================================================
   Section 2: Header & Navigation
   ============================================================ */


/* ── HEADER / HERO ── */

header {
  background: var(--navy);
  color: var(--white);

  padding: 48px 60px 40px;

  position: relative;
  overflow: hidden;
}


header::after {
  content: '';

  position: absolute;
  right: -80px;
  top: -80px;

  width: 320px;
  height: 320px;

  border-radius: 50%;
  border: 2px solid rgba(0,168,232,0.18);
}


header::before {
  content: '';

  position: absolute;
  right: 40px;
  bottom: -60px;

  width: 180px;
  height: 180px;

  border-radius: 50%;
  border: 2px solid rgba(0,168,232,0.10);
}


.header-inner {
  display: flex;

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

  gap: 40px;
}


.header-text {
  flex: 1;
}


.headline {
  font-size: 34px;
  font-weight: 700;

  line-height: 1.2;
  letter-spacing: -0.5px;

  max-width: 560px;

  margin-bottom: 16px;
}


.headline em {
  color: var(--accent);
  font-style: normal;
}


.subhead {
  font-size: 15px;

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

  max-width: 480px;

  line-height: 1.65;
}


.logo-row {
  flex-shrink: 0;

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


.logo-row img {
  height: 200px;
  width: auto;

  border-radius: 12px;
}


/* ── TOP NAVIGATION ── */

.topnav {
  position: sticky;
  top: 0;

  z-index: 200;

  background: rgba(11,31,58,0.92);

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

  border-bottom: 1px solid rgba(0,168,232,0.16);

  transition: box-shadow .25s ease, background .25s ease;
}


.topnav.is-scrolled {
  background: rgba(11,31,58,0.98);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.25);
}


.topnav-inner {

  max-width: 1240px;

  margin: 0 auto;

  padding: 14px 32px;

  display: flex;

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

  gap: 24px;
}


/* ── BRAND / LOGO ── */

.brand {

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--white);

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.2px;

  flex-shrink: 0;
}


.brand img {

  height: 42px;
  width: auto;

  display: block;

  border-radius: 12px;
}


.brand span em {

  color: var(--accent);

  font-style: normal;
}


/* ── DESKTOP NAV LINKS ── */

.nav-links {

  display: flex;

  align-items: center;

  gap: 4px;

  list-style: none;
}


.nav-links a {

  display: inline-block;

  padding: 8px 14px;

  border-radius: 20px;

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

  text-decoration: none;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.2px;

  transition:
    color .2s ease,
    background .2s ease;
}


.nav-links a:hover,
.nav-links a:focus-visible {

  color: var(--white);

  background: rgba(0,168,232,0.14);
}


.nav-links a.is-active {

  color: var(--navy);

  background: var(--accent);
}


/* ── CTA BUTTON IN NAV ── */

.nav-cta {

  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: var(--accent);

  color: var(--navy);

  text-decoration: none;

  font-weight: 700;

  font-size: 12.5px;

  padding: 9px 18px;

  border-radius: 22px;

  white-space: nowrap;
}


.nav-cta:hover {

  background: #33bcf1;
}


/* ── HAMBURGER BUTTON ── */

.nav-toggle {

  display: none;

  flex-direction: column;

  justify-content: center;

  gap: 5px;

  width: 34px;
  height: 34px;

  background: transparent;

  border: none;

  cursor: pointer;
}


.nav-toggle span {

  width: 100%;

  height: 2px;

  background: var(--white);

  border-radius: 2px;

  transition:
    transform .25s ease,
    opacity .25s ease;
}


/* ── MOBILE DRAWER DEFAULT ── */
/* Hidden on desktop */

.nav-drawer {

  display: none;
}


/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

@media (max-width: 900px) {


  .nav-links,
  .topnav > .nav-cta {

    display: none;

  }


  .nav-toggle {

    display: flex;

  }


  .nav-drawer {

    display: block;

    position: fixed;

    top: 62px;
    right: 0;
    bottom: 0;
    left: 0;

    background: var(--navy);

    transform: translateX(100%);

    transition: transform .3s ease;

    z-index: 190;

    padding: 24px 28px;

    overflow-y: auto;

  }


  .nav-drawer.is-open {

    transform: translateX(0);

  }


  .nav-drawer ul {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 4px;

  }


  .nav-drawer a {

    display: block;

    padding: 14px 6px;

    color: var(--white);

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

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

  }


  .nav-drawer a:hover,
  .nav-drawer a:focus {

    color: var(--accent);

  }


  .nav-drawer .nav-cta {

    display: inline-flex;

    margin-top: 20px;

  }

}

/* ============================================================
   Section 3: Main Content
   ============================================================ */


/* ── FEATURE STRIP ───────────────────────────────────────── */

.strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  background: var(--accent);

  padding: 14px 60px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;

  white-space: nowrap;

  color: var(--navy);

  font-size: 13px;
  font-weight: 600;
}

.strip-item::before {
  content: "✓";
  font-weight: 700;
}


/* ============================================================
   SERVICES
   ============================================================ */

.services {

  display: grid;

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

  gap: 16px;

  margin-bottom: 40px;
}


.service-card {

  position: relative;

  background: var(--light);

  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);

  border-radius: 10px;

  padding: 20px 18px 18px;

  cursor: pointer;

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


.service-card:hover,
.service-card:focus-visible {

  transform: translateY(-3px);

  border-color: var(--accent);

  box-shadow: 0 10px 24px rgba(11,31,58,.10);

  outline: none;
}


.service-icon {

  width: 36px;
  height: 36px;

  margin-bottom: 12px;

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

  background: var(--navy);

  border-radius: 8px;
}


.service-icon svg {

  width: 18px;
  height: 18px;

  fill: none;

  stroke: var(--accent);

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.service-title {

  margin-bottom: 6px;

  color: var(--navy);

  font-size: 13px;
  font-weight: 700;
}


.service-desc {

  color: var(--muted);

  font-size: 12px;

  line-height: 1.55;
}


/* Expandable content */

.service-more {

  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-top: 10px;

  color: var(--accent-dim);

  font-size: 11.5px;
  font-weight: 700;
}


.service-more svg {

  width: 11px;
  height: 11px;

  transition: transform .25s ease;
}


.service-card[aria-expanded="true"] .service-more svg {

  transform: rotate(180deg);
}


.service-extra {

  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows .3s ease;
}


.service-extra-inner {

  overflow: hidden;
}


.service-card[aria-expanded="true"] .service-extra {

  grid-template-rows: 1fr;
}


.service-extra p {

  margin-top: 10px;
  padding-top: 10px;

  border-top: 1px dashed var(--rule);

  color: var(--muted);

  font-size: 12px;

  line-height: 1.55;
}


/* ============================================================
   PROCESS
   ============================================================ */

.process {

  position: relative;

  display: flex;

  margin-bottom: 40px;
}


.process::before {

  content: "";

  position: absolute;

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

  height: 1px;

  background: var(--rule);
}


.process-step {

  flex: 1;

  position: relative;

  padding-top: 8px;

  text-align: center;

  cursor: pointer;
}


.step-num {

  width: 40px;
  height: 40px;

  margin: 0 auto 10px;

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

  background: var(--navy);

  color: var(--white);

  border-radius: 50%;

  font-size: 14px;
  font-weight: 700;

  position: relative;

  z-index: 2;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease;
}


.process-step:hover .step-num,
.process-step.is-active .step-num {

  background: var(--accent);

  color: var(--navy);

  transform: scale(1.12);
}


.step-label {

  margin-bottom: 4px;

  color: var(--navy);

  font-size: 11.5px;
  font-weight: 600;
}


.step-sub {

  color: var(--muted);

  font-size: 11px;
}


.step-detail {

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  color: var(--muted);

  font-size: 11px;

  transition:
    max-height .3s ease,
    opacity .3s ease,
    margin-top .3s ease;
}


.process-step.is-active .step-detail {

  max-height: 90px;

  opacity: 1;

  margin-top: 6px;
}


/* ============================================================
   WHY US
   ============================================================ */

.why-grid {

  display: grid;

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

  gap: 12px;
}


.why-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;
}


.why-dot {

  width: 6px;
  height: 6px;

  margin-top: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--accent);
}


.why-text {

  color: var(--muted);

  font-size: 12.5px;

  line-height: 1.5;
}


.why-text strong {

  display: block;

  margin-bottom: 2px;

  color: var(--navy);

  font-weight: 600;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {

  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity .6s ease,
    transform .6s ease;
}


.reveal.is-visible {

  opacity: 1;

  transform: translateY(0);
}


.reveal-stagger.is-visible .service-card,
.reveal-stagger.is-visible .process-step,
.reveal-stagger.is-visible .why-item {

  animation: revealUp .55s ease both;
}


.reveal-stagger .service-card:nth-child(1),
.reveal-stagger .process-step:nth-child(1),
.reveal-stagger .why-item:nth-child(1) { animation-delay: .02s; }

.reveal-stagger .service-card:nth-child(2),
.reveal-stagger .process-step:nth-child(2),
.reveal-stagger .why-item:nth-child(2) { animation-delay: .10s; }

.reveal-stagger .service-card:nth-child(3),
.reveal-stagger .process-step:nth-child(3),
.reveal-stagger .why-item:nth-child(3) { animation-delay: .18s; }

.reveal-stagger .service-card:nth-child(4),
.reveal-stagger .process-step:nth-child(4),
.reveal-stagger .why-item:nth-child(4) { animation-delay: .26s; }


@keyframes revealUp {

  from {

    opacity: 0;

    transform: translateY(16px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}


@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-stagger .service-card,
  .reveal-stagger .process-step,
  .reveal-stagger .why-item {

    animation: none !important;
    transition: none !important;

    opacity: 1 !important;
    transform: none !important;

  }

}
/* ============================================================
   Section 4: Sidebar, Contact, Footer & Responsive
   ============================================================ */


/* ───────────────────────────────────────────────
   SIDEBAR
   ─────────────────────────────────────────────── */

.cta-box {
  background: var(--navy);
  color: var(--white);

  padding: 28px 24px;

  border-radius: 12px;

  text-align: center;

  margin-bottom: 28px;
}

.cta-box h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;

  margin-bottom: 8px;
}

.cta-box p {
  font-size: 12.5px;
  line-height: 1.55;

  color: rgba(255,255,255,.68);

  margin-bottom: 18px;
}

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

  width: 100%;

  padding: 12px 20px;

  border-radius: 24px;

  background: var(--accent);

  color: var(--navy);

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  transition:
    background .25s ease,
    transform .25s ease;
}

.cta-button:hover {
  background: #33bcf1;
  transform: translateY(-2px);
}

.side-section {
  margin-bottom: 28px;
}

.side-title {
  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;

  color: var(--muted);

  margin-bottom: 14px;
  padding-bottom: 8px;

  border-bottom: 1px solid var(--rule);
}


/* ───────────────────────────────────────────────
   CONTACT LIST
   ─────────────────────────────────────────────── */

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;

  gap: 8px;

  padding: 6px 0;

  color: var(--muted);

  font-size: 12.5px;
}

.contact-list strong {
  min-width: 60px;

  color: var(--navy);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}


/* ───────────────────────────────────────────────
   CONTACT SECTION
   ─────────────────────────────────────────────── */

.contact-section {
  position: relative;

  overflow: hidden;

  background: var(--navy);

  color: var(--white);

  padding: 56px 60px;
}

.contact-section::before {

  content: "";

  position: absolute;

  left: -60px;
  bottom: -80px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  border: 2px solid rgba(0,168,232,.12);
}

.contact-wrap {

  position: relative;

  max-width: 1240px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 420px;

  gap: 48px;
}

.contact-intro .section-label {
  color: var(--accent);
}

.contact-intro .section-title {
  color: var(--white);
}

.contact-intro .section-body {
  color: rgba(255,255,255,.70);
}

.contact-intro .contact-list li {
  color: rgba(255,255,255,.80);
}

.contact-intro .contact-list strong {
  color: var(--accent);
}


/* ───────────────────────────────────────────────
   CONTACT FORM
   ─────────────────────────────────────────────── */

.contact-form {

  background: var(--navy-mid);

  border: 1px solid rgba(0,168,232,.18);

  border-radius: 14px;

  padding: 28px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {

  display: block;

  margin-bottom: 7px;

  color: rgba(255,255,255,.60);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .6px;
}

.form-row input,
.form-row textarea {

  width: 100%;

  padding: 12px 14px;

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.18);

  border-radius: 8px;

  color: var(--white);

  font-family: inherit;
  font-size: 14px;

  transition:
    border-color .2s,
    background .2s;
}

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

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.form-row input:focus,
.form-row textarea:focus {

  outline: none;

  border-color: var(--accent);

  background: rgba(255,255,255,.10);
}

.form-error {
  display: none;

  margin-top: 6px;

  color: #ff9a8a;

  font-size: 11px;
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #ff9a8a;
}

.form-row.has-error .form-error {
  display: block;
}

.form-submit {

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

  gap: 8px;

  width: 100%;

  padding: 13px 20px;

  border: none;

  border-radius: 24px;

  cursor: pointer;

  background: var(--accent);

  color: var(--navy);

  font-size: 13px;
  font-weight: 700;

  transition:
    background .25s,
    transform .25s;
}

.form-submit:hover {
  background: #33bcf1;
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: .6;
  cursor: default;
}

.form-note {

  margin-top: 12px;

  color: rgba(255,255,255,.45);

  text-align: center;

  font-size: 11px;
}

.form-status {

  display: none;

  margin-top: 14px;

  padding: 10px 12px;

  border-radius: 8px;

  font-size: 12px;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(0,168,232,.15);
  color: var(--accent);
}

.form-status.is-error {
  background: rgba(255,90,90,.15);
  color: #ff9a8a;
}


/* ───────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────── */

footer {

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

  gap: 20px;

  padding: 16px 60px;

  background: var(--navy);

  color: rgba(255,255,255,.45);

  font-size: 11px;
}

.footer-links {

  display: flex;

  gap: 18px;

  list-style: none;
}

.footer-links a {

  color: inherit;

  text-decoration: none;

  transition: color .2s;
}

.footer-links a:hover {
  color: var(--accent);
}

footer span {
  color: var(--accent);
}


/* ───────────────────────────────────────────────
   BACK TO TOP
   ─────────────────────────────────────────────── */

.back-to-top {

  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 42px;
  height: 42px;

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

  border: 1px solid var(--accent);
  border-radius: 50%;

  background: var(--navy);

  color: var(--accent);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity .25s,
    transform .25s,
    background .25s;

  z-index: 150;
}

.back-to-top.is-visible {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.back-to-top:hover {

  background: var(--accent);

  color: var(--navy);
}


/* ───────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────── */

@media (max-width:1024px){

  header{
    padding:36px 40px 32px;
  }

  .headline{
    font-size:28px;
  }

  .logo-row img{
    height:160px;
  }

  .strip{
    padding:12px 40px;
    gap:24px;
  }

  .contact-wrap{
    grid-template-columns:1fr;
  }

  .contact-section{
    padding:44px 40px;
  }

  footer{
    padding:16px 40px;
  }

}

@media (max-width:768px){

  header{
    padding:28px 24px 24px;
  }

  .header-inner{
    flex-direction:column-reverse;
    align-items:flex-start;
    gap:20px;
  }

  .logo-row{
    justify-content:flex-start;
  }

  .logo-row img{
    height:120px;
  }

  .headline{
    font-size:26px;
  }

  .strip{
    flex-wrap:wrap;
    gap:12px;
    padding:10px 24px;
  }

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

  .process{
    flex-wrap:wrap;
    gap:16px;
  }

  .process::before{
    display:none;
  }

  .process-step{
    flex:1 1 40%;
  }

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

  .contact-section{
    padding:36px 24px;
  }

  footer{

    flex-direction:column;

    text-align:center;
  }

}

@media (max-width:480px){

  .headline{
    font-size:22px;
  }

  .logo-row img{
    height:90px;
  }

  .strip{
    padding:10px 16px;
  }

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

  .contact-section{
    padding:28px 16px;
  }

  .contact-form{
    padding:22px 18px;
  }

  footer{
    padding:16px;
  }

}


/* ============================================================
   MULTI-PAGE PROFESSIONAL CONTENT LAYOUTS
   ============================================================ */
.page-intro { margin-bottom: 34px; }
.page-title { font-size: 30px; line-height: 1.2; color: var(--navy); margin-bottom: 12px; max-width: 760px; }
.page-lead { color: var(--muted); font-size: 14px; line-height: 1.75; max-width: 760px; }
.page-sidebar { padding: 48px 36px; background: var(--light); }
.content-panel { margin-top: 44px; padding: 28px; background: var(--light); border: 1px solid var(--rule); border-radius: 12px; }
.engagement-grid, .expect-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.expect-grid { grid-template-columns:repeat(2,1fr); }
.engagement-grid > div, .expect-grid > div { padding:16px; border:1px solid var(--rule); border-radius:10px; background:var(--white); }
.engagement-grid strong, .expect-grid strong { display:block; color:var(--navy); font-size:12px; margin-bottom:5px; }
.engagement-grid span, .expect-grid span { display:block; color:var(--muted); font-size:12px; line-height:1.55; }
.why-grid-expanded { margin-bottom:0; }
.difference-list { display:grid; gap:14px; }
.difference-list > div { display:flex; gap:12px; align-items:flex-start; padding:14px 0; border-top:1px solid var(--rule); }
.difference-mark { color:var(--accent-dim); font-weight:800; }
.difference-list strong { display:block; color:var(--navy); margin-bottom:2px; }
.difference-list span:last-child { color:var(--muted); font-size:12.5px; line-height:1.6; }
.home-section { margin-top:50px; }
.home-section:first-of-type { margin-top:0; }
.home-feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.home-feature { padding:22px 20px; background:var(--light); border:1px solid var(--rule); border-radius:12px; }
.home-feature-number { color:var(--accent-dim); font-size:11px; font-weight:800; letter-spacing:1px; margin-bottom:14px; }
.home-feature h3 { color:var(--navy); font-size:15px; margin-bottom:7px; }
.home-feature p { color:var(--muted); font-size:12.5px; line-height:1.6; }
.home-services-banner { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:16px; }
.outline-button { display:inline-flex; align-items:center; justify-content:center; padding:10px 16px; border:1px solid var(--accent); border-radius:22px; color:var(--navy); background:var(--white); text-decoration:none; font-size:12px; font-weight:700; white-space:nowrap; }
.outline-button:hover { background:var(--accent); }
.home-capability-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.capability-card { display:block; padding:18px; border:1px solid var(--rule); border-radius:10px; background:var(--white); text-decoration:none; transition:transform .2s, border-color .2s, box-shadow .2s; }
.capability-card:hover { transform:translateY(-2px); border-color:var(--accent); box-shadow:0 8px 22px rgba(11,31,58,.08); }
.capability-card span { display:block; color:var(--navy); font-size:13px; font-weight:700; margin-bottom:5px; }
.capability-card small { display:block; color:var(--muted); font-size:11.5px; line-height:1.55; }
.home-highlight { display:grid; grid-template-columns:1.15fr .85fr; gap:28px; padding:28px; background:var(--navy); border-radius:14px; }
.home-highlight .section-title { color:var(--white); }
.home-highlight .section-body { color:rgba(255,255,255,.70); margin-bottom:20px; }
.home-highlight-button { width:auto; display:inline-flex; }
.home-highlight-points { display:grid; gap:10px; }
.home-highlight-points > div { padding:14px 16px; border:1px solid rgba(255,255,255,.12); border-radius:10px; background:rgba(255,255,255,.04); }
.home-highlight-points strong { display:block; margin-bottom:2px; color:var(--accent); font-size:12px; }
.home-highlight-points span { color:rgba(255,255,255,.65); font-size:12px; }
.home-cta-panel { padding:28px; border:1px solid var(--rule); border-radius:12px; background:var(--light); }
.contact-page-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:22px; }
.contact-page-cards > div { padding:16px; border:1px solid var(--rule); border-radius:10px; background:var(--light); }
.contact-page-cards strong { display:block; color:var(--navy); font-size:11px; text-transform:uppercase; letter-spacing:1px; margin-bottom:5px; }
.contact-page-cards a, .contact-page-cards span { color:var(--muted); text-decoration:none; font-size:12.5px; }
.contact-page-note { color:var(--muted); margin-bottom:26px; font-size:13px; }
.page-contact-form { margin-top:48px; }
@media (max-width: 900px) { .engagement-grid, .home-feature-grid, .contact-page-cards { grid-template-columns:1fr; } .home-highlight { grid-template-columns:1fr; } .home-services-banner { align-items:flex-start; flex-direction:column; } }
@media (max-width: 768px) { .page-title { font-size:25px; } .expect-grid, .home-capability-grid { grid-template-columns:1fr; } .page-sidebar { padding:32px 24px; } .content-panel { margin-top:34px; padding:22px; } .page-contact-form { margin-top:36px; } }

/* Home hero and foldable-device responsive behaviour */
.home-header { padding: 30px 60px 30px; }
.home-header-inner { justify-content:center; }
.home-hero { width:100%; max-width:900px; display:flex; flex-direction:column; align-items:center; text-align:center; }
.home-logo { justify-content:center; margin-bottom:28px; }
.home-logo img { height:210px; width:auto; max-width:min(70vw,260px); object-fit:contain; }
.home-header-text { flex:none; width:100%; }
.home-header .headline { max-width:760px; margin:0 auto 16px; }
.home-header .subhead { max-width:700px; margin:0 auto; }

html, body { width:100%; max-width:none; min-width:0; }
body { overflow-x:hidden; }
.topnav, .topnav-inner, header, .strip, main, .contact-section, footer { width:100%; max-width:none; }

@media (horizontal-viewport-segments: 2) {
  .topnav-inner { max-width:none; }
  .topnav, .topnav-inner, header, .strip, main, .contact-section, footer { max-width:none; width:100%; }
}

@media (max-width:900px) {
  .topnav-inner, .nav-drawer { width:100%; max-width:none; }
}

@media (max-width:768px) {
  .home-header { padding:36px 24px 32px; }
  .home-logo { margin-bottom:20px; }
  .home-logo img { height:130px; max-width:55vw; }
}
@media (max-width:480px) {
  .home-header { padding:30px 16px 28px; }
  .home-logo img { height:100px; }
}


/* ============================================================
   CLIENT REVISION — FULL-WIDTH MULTI-PAGE LAYOUT
   ============================================================ */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 0;
}

/* Remove the former two-column/sidebar presentation. */
main.full-main {
  display: block;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 60px 72px;
}

main.full-main .col-main,
main.full-main .col-side {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

main.full-main .col-side { display: none; }

/* Home header: logo on left, copy on right, with the page centre line between them. */
.home-header {
  padding: 30px 60px 30px;
  background: var(--navy);
}

.home-hero {
  position: relative;
  max-width: 1240px;
  min-height: 280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.home-hero-logo,
.home-hero-copy {
  min-width: 0;
}

.home-hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 48px;
}

.home-hero-logo img {
  width: auto;
  height: auto;
  max-width: min(270px, 70%);
  max-height: 230px;
  object-fit: contain;
  border-radius: 12px;
  margin-left: 32px;
}

.home-hero-divider {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.16);
}

.home-hero-copy {
  padding: 20px 48px;
}

.home-hero-copy .headline {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 38px;
}

.home-hero-copy .subhead {
  max-width: 560px;
}

.page-intro {
  max-width: 850px;
  margin-bottom: 48px;
}

.page-title {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -.7px;
  margin-bottom: 14px;
}

.page-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 780px;
}

.home-section { margin: 0 0 48px; }
.home-welcome { max-width: 840px; }

.home-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 60px;
}

.home-benefit {
  padding: 26px 22px 24px;
  background: var(--light);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
}

.home-benefit-number {
  margin-bottom: 18px;
  color: var(--accent-dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.home-benefit h3 { margin-bottom: 7px; color: var(--navy); font-size: 16px; }
.home-benefit p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.text-link {
  color: var(--accent-dim);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.text-link span { margin-left: 5px; }

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.home-service-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-service-card:hover,
.home-service-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(11,31,58,.08);
  outline: none;
}
.home-service-card span { display: block; color: var(--navy); font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.home-service-card small { color: var(--muted); font-size: 12px; }

.home-consultancy {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: stretch;
  padding: 30px;
  margin-bottom: 0;
  background: var(--navy);
  border-radius: 14px;
}
.home-consultancy .section-title { color: var(--white); }
.home-consultancy .section-body { color: rgba(255,255,255,.70); margin-bottom: 0; }
.home-consultancy-points { display: grid; gap: 10px; }
.home-consultancy-points > div { padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.04); }
.home-consultancy-points strong { display: block; color: var(--accent); font-size: 12px; margin-bottom: 2px; }
.home-consultancy-points span { color: rgba(255,255,255,.65); font-size: 12px; }

/* Static service cards with full client-approved copy. */
.services-grid-static {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.service-card-static {
  padding: 26px 24px 28px;
  background: var(--light);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
}
.service-card-static .service-icon {
  margin-bottom: 16px;
}
.service-card-static h2 { color: var(--navy); font-size: 18px; line-height: 1.3; margin-bottom: 10px; }
.service-card-static p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.service-approach {
  padding-top: 8px;
}
.service-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-approach-grid > div { padding: 20px; border: 1px solid var(--rule); border-radius: 10px; }
.service-approach-grid strong { display:block; color:var(--navy); margin-bottom:6px; font-size:13px; }
.service-approach-grid span { color:var(--muted); font-size:12px; line-height:1.6; }

/* How we work */
.process-wide {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 64px;
}
.process-wide::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--rule);
}
.process-wide .process-step { position: relative; z-index: 1; padding: 0 8px; }

.approach-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  padding: 34px 0 10px;
  border-top: 1px solid var(--rule);
}
.approach-items { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.approach-items > div { padding: 18px; border-left: 3px solid var(--accent); background: var(--light); }
.approach-items strong { display:block; color:var(--navy); font-size:13px; margin-bottom:5px; }
.approach-items p { color:var(--muted); font-size:12px; line-height:1.6; }

/* Why Us */
.why-grid-wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.why-card { padding: 26px; border:1px solid var(--rule); border-radius:12px; background:var(--light); }
.why-card > span { display:block; color:var(--accent-dim); font-weight:800; font-size:11px; letter-spacing:1px; margin-bottom:20px; }
.why-card h2 { color:var(--navy); font-size:18px; margin-bottom:7px; }
.why-card p { color:var(--muted); font-size:13px; line-height:1.65; }
.why-statement { max-width: 900px; padding-top:34px; border-top:1px solid var(--rule); }

/* Contact sections are now the consistent bottom block on all pages. */
.page-contact-form {
  margin-top: 0;
  padding: 58px max(24px, calc((100vw - 1120px) / 2));
  background: var(--navy);
}
.page-contact-form .contact-wrap { max-width:1120px; margin:0 auto; }

/* Hide stale sidebar-specific pieces even if an old page copy is present. */
.col-side, .side-section, .side-title { display:none !important; }

/* ============================================================
   MOBILE / FOLDABLE NAVIGATION FIX
   ============================================================ */
.topnav { width:100%; overflow:visible; }
.topnav-inner { width:100%; max-width:1240px; }
.nav-drawer { box-sizing:border-box; }

@media (max-width:900px), (horizontal-viewport-segments: 2) {
  .topnav { width:100%; }
  .topnav-inner { padding:12px 20px; max-width:none; }
  .nav-links { display:none !important; }
  .topnav > .nav-cta { display:none !important; }
  .nav-toggle { display:flex !important; position:relative; z-index:230; flex-shrink:0; }

  .nav-drawer {
    display:flex !important;
    position:fixed !important;
    inset:0 !important;
    width:100vw !important;
    max-width:none !important;
    height:100dvh !important;
    min-height:100dvh !important;
    margin:0 !important;
    padding:88px 28px 28px !important;
    background:var(--navy) !important;
    transform:translateX(100%) !important;
    visibility:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    z-index:220 !important;
    transition:transform .28s ease, visibility 0s linear .28s, opacity .2s ease !important;
  }

  .nav-drawer.is-open {
    transform:translateX(0) !important;
    visibility:visible !important;
    opacity:1 !important;
    pointer-events:auto !important;
    transition:transform .28s ease, visibility 0s linear 0s, opacity .2s ease !important;
  }

  .nav-drawer ul { width:100%; gap:0; }
  .nav-drawer a { font-size:18px; padding:17px 4px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  body.no-scroll { overflow:hidden !important; }
  html { overflow-x:hidden; }

  .home-header { padding:38px 24px 34px; }
  .home-hero { grid-template-columns:1fr; gap:22px; min-height:0; }
  .home-hero-divider { top:50%; bottom:auto; left:10%; right:10%; width:auto; height:1px; }
  .home-hero-logo { padding:8px 20px 26px; }
  .home-hero-logo img { max-width:min(190px, 55vw); }
  .home-hero-copy { padding:26px 4px 6px; text-align:center; }
  .home-hero-copy .headline { font-size:28px; }
  .home-hero-copy .subhead { margin:0 auto; }

  main.full-main { padding:42px 24px 54px; }
  .home-benefits, .services-grid-static, .why-grid-wide, .service-approach-grid { grid-template-columns:1fr; }
  .home-services-grid { grid-template-columns:1fr; }
  .home-consultancy, .approach-grid { grid-template-columns:1fr; }
  .process-wide { grid-template-columns:repeat(2,1fr); gap:24px 14px; }
  .process-wide::before { display:none; }
  .approach-items { grid-template-columns:1fr; }
  .section-heading-row { align-items:flex-start; flex-direction:column; }
  .page-contact-form { padding:42px 24px; }
}

@media (max-width:480px) {
  .topnav-inner { padding:10px 16px; }
  .home-header { padding:30px 16px 28px; }
  .home-hero-copy .headline { font-size:24px; }
  main.full-main { padding:34px 16px 42px; }
  .page-contact-form { padding:34px 16px; }
}
