:root {
  --primary: #3623c8;
  --primary-light: #24d6c8;
  --primary-dark: #1a1380;
  --primary-gradient: linear-gradient(135deg, #2a1ab8 0%, #4f2fd8 45%, #1fd7be 100%);
  --secondary: #1f1f75;
  --accent: #f2f4ff;
  --accent-strong: #e6fdf8;
  --text: #1f2660;
  --muted: #4e5693;
  --bg: #f7f8ff;
  --border: #d8dcff;
  --shadow-soft: 0 10px 30px rgba(54, 35, 200, 0.15);
  --shadow-blue: 0 8px 25px rgba(42, 26, 184, 0.25);
  --shadow-card: 0 4px 20px rgba(31, 24, 124, 0.13);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --max-width: 1100px;
  --header-height: 92px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 6% 0%, rgba(79, 47, 216, 0.16) 0%, rgba(79, 47, 216, 0) 36%),
    radial-gradient(circle at 95% 8%, rgba(31, 215, 190, 0.2) 0%, rgba(31, 215, 190, 0) 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 1000;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Layout */

.page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f7ff 0%, #eff1ff 28%, #e8fcf6 64%, #ffffff 100%);
  position: relative;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(253, 186, 116, 0.45);
  outline-offset: 2px;
  border-radius: 8px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(226, 232, 240, 0.55);
  z-index: 100;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2a1ab8, #4f2fd8, #1fd7be);
  box-shadow: 0 0 10px rgba(54, 35, 200, 0.4);
  transition: width 0.12s linear;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--secondary);
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 0.75rem;
}

.section-muted {
  background: var(--accent);
  position: relative;
}

.section-muted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.section-muted::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-header h1,
.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h1,
.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

.section-header h1::after,
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-header p {
  color: var(--muted);
  font-size: 0.96rem;
}

.enquiry-notice {
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--primary);
  background: #eef4ff;
  border-radius: 10px;
  color: var(--secondary);
}

.enquiry-notice a {
  color: var(--primary-dark);
  font-weight: 700;
}

.response-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.response-card {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid #d7e5ff;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.response-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.thanks-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.thank-form,
.thanks-wall {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.thanks-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.thanks-item {
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: #f5f9ff;
  border: 1px solid #d9e6ff;
}

.thanks-item strong {
  color: var(--primary-dark);
}

.thanks-item span {
  display: block;
  color: var(--muted);
}

.thanks-empty {
  color: var(--muted);
  font-style: italic;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(100, 116, 139, 0.8);
  margin-bottom: 0.5rem;
}

/* Header / Nav */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(120deg, rgba(34, 20, 140, 0.95), rgba(39, 28, 170, 0.88), rgba(23, 196, 176, 0.8)),
    url("assets/header-banner.svg") center / cover no-repeat;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

header.header-scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.25);
  background: linear-gradient(120deg, rgba(28, 18, 121, 0.96), rgba(39, 28, 170, 0.92), rgba(21, 163, 144, 0.86)),
    url("assets/header-banner.svg") center / cover no-repeat;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.28rem 0.54rem 0.28rem 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.35);
  background: linear-gradient(135deg, rgba(15, 42, 107, 0.42), rgba(30, 58, 138, 0.28));
  box-shadow: 0 6px 16px rgba(15, 42, 107, 0.22);
  gap: 0.85rem;
  padding: 0.38rem 0.7rem 0.38rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.3);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.38), rgba(30, 41, 59, 0.18));
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.brand-link:hover {
  border-color: rgba(191, 219, 254, 0.72);
  background: linear-gradient(135deg, rgba(15, 42, 107, 0.62), rgba(30, 58, 138, 0.4));
  border-color: rgba(226, 232, 240, 0.65);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(30, 41, 59, 0.35));
  transform: translateY(-1px);
}

.logo {
  height: 44px;
  width: auto;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.32);
}

.brand-text {
  display: grid;
  gap: 0.12rem;
  color: rgba(241, 245, 249, 0.94);
}

.brand-name {
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.2;
}

.brand-address {
  font-size: 0.76rem;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: #f8fafc;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #e2e8f0;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(226, 232, 240, 0.75);
  color: #f8fafc;
  font-size: 0.87rem;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.22);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #f8fafc;
}



.web-search-form {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(226, 232, 240, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.25rem 0.2rem 0.55rem;
}

.web-search-input {
  width: 170px;
  border: none;
  background: transparent;
  color: #f8fafc;
  font-size: 0.82rem;
  outline: none;
}

.web-search-input::placeholder {
  color: rgba(226, 232, 240, 0.75);
}

.web-search-btn {
  border: none;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

.web-search-btn:hover {
  background: #1d4ed8;
}

/* Active nav link */

.nav-links a.nav-active {
  font-weight: 600;
  color: #e2e8f0;
}

.nav-links a.nav-active::after {
  width: 100%;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  color: #f8fafc;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.nav-toggle span {
  display: inline-block;
  margin-left: 0.4rem;
}

/* Badge */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--primary-dark);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(37, 99, 235, 0.5); }
  50% { box-shadow: 0 0 16px rgba(37, 99, 235, 0.8); }
}

/* Hero */

.hero {
  padding: 4rem 0 3.5rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1,
.hero h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 32rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Feature banner */

.feature-banner {
  padding: 2.8rem 0;
  background: linear-gradient(120deg, #201082 0%, #3521c5 45%, #1fd7be 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.feature-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.feature-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.feature-banner .eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 0.5rem;
}

.feature-banner h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.feature-banner p {
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 1.2rem;
}

.feature-banner-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
}

.feature-banner-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.feature-banner-list {
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.85);
}

.feature-banner-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-banner-list span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
}

/* Modern feature grid */

.modern-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.modern-feature {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.modern-feature::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
}

.modern-feature h3 {
  margin-top: 0.8rem;
}

.modern-feature p {
  color: var(--muted);
  font-size: 0.94rem;
}

.modern-feature .icon-circle {
  width: 52px;
  height: 52px;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease,
    background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.25);
  background: #1e40af;
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: var(--accent);
}

/* Cards / Grids */

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

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

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(37, 99, 235, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Hero card */

.hero-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue);
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-md);
  background: #eff6ff;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
}

.hero-visual-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-dark);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--primary-dark);
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.2s ease;
}

.pill:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

/* Interactive showcase */

.interactive-showcase {
  position: relative;
  overflow: hidden;
}

.interactive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.focus-buttons {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.focus-button {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.focus-button:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.focus-button.active {
  border-color: rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.9) 0%, rgba(219, 234, 254, 0.9) 100%);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.focus-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: #ffffff;
  padding: 1.6rem;
  box-shadow: var(--shadow-blue);
  display: grid;
  gap: 1rem;
}

.focus-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.focus-chip {
  width: fit-content;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.focus-metric {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.95));
  color: #ffffff;
}

.focus-metric-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.focus-metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.focus-visual {
  border-radius: var(--radius-md);
  background: #eff6ff;
  padding: 0.8rem;
}

.focus-visual img {
  border-radius: 12px;
}

/* Why list */

.why-list {
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: all 0.2s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateX(4px);
}

.why-bullet {
  margin-top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-gradient);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* CTA strip */

.cta-strip {
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip p {
  margin-bottom: 0;
  max-width: 32rem;
  position: relative;
  z-index: 1;
}

.cta-strip .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-strip .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Two column layout */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.values-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.values-item-title {
  font-weight: 600;
  color: var(--secondary);
}

/* Services detail + accordion */

.service-group {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.4rem 1.4rem 0.8rem;
  background: #ffffff;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-group:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-blue);
}

.service-group:hover::before {
  opacity: 1;
}

.service-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.service-group-header:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}

.service-group-header h3 {
  margin-bottom: 0;
}

.service-toggle-icon {
  font-size: 1.2rem;
  color: var(--muted);
  margin-left: 0.8rem;
}

.service-group-body {
  margin-top: 0.7rem;
  display: none;
}

.service-group.open .service-group-body {
  display: block;
}

.service-group-body > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.service-sublist {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.service-sublist h4 {
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.service-sublist p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Lists */

.list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.list-columns ul {
  list-style: disc;
  padding-left: 1.2rem;
}

/* Insights */

.insight-list li {
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
  color: var(--muted);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #fafcff;
}

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

.contact-side p {
  font-size: 0.94rem;
  color: var(--muted);
}

.form-message {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: #b91c1c;
}

/* Footer */

footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.3rem 0 1.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  background: rgba(15, 23, 42, 0.97);
  color: #f9fafb;
  box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.3);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.cookie-banner-inner p {
  margin: 0;
  flex: 1 1 220px;
}

.cookie-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #1e40af;
}



/* Social share dock */

.social-dock {
  position: fixed;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.6rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(4px);
}

.social-link {
  border: none;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-link:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.social-linkedin {
  background: linear-gradient(135deg, #0a66c2, #1d4ed8);
}

.social-x {
  background: linear-gradient(135deg, #111827, #1f2937);
}

.social-email {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.social-copy-link {
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  z-index: 60;
}

.social-link {
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  background: #dbeafe;
  transform: translateX(-3px);
}

.social-copy {
  font-family: inherit;
}

/* Motion graphics */

.hero {
  overflow: hidden;
}

.hero-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 68%);
  animation: drift 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 220px;
  height: 220px;
  top: 12%;
  right: 8%;
}

.hero-orb-2 {
  width: 170px;
  height: 170px;
  bottom: 12%;
  right: 35%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 140px;
  height: 140px;
  top: 35%;
  left: 6%;
  animation-delay: -8s;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-card {
  transition: transform 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

/* Work image section */

.work-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: center;
}

.work-image-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  box-shadow: var(--shadow-blue);
}

.work-image-card img {
  border-radius: 12px;
  width: 100%;
}

/* Responsive */

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .hero-grid,
  .feature-banner-inner,
  .two-col,
  .grid-3,
  .contact-grid,
  .thanks-grid,
  .response-grid,
  .list-columns,
  .modern-feature-grid,
  .interactive-grid,
  .work-image-grid,
  .turning-points-visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .web-search-form {
    width: 100%;
    order: 3;
    margin-top: 0.35rem;
    justify-content: space-between;
  }

  .web-search-input {
    width: 100%;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: linear-gradient(180deg, #071735 0%, #0f2f66 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    padding: 0.9rem 1.2rem 1rem;
  }

  .brand-link {
    padding: 0.22rem 0.44rem 0.22rem 0.24rem;
    gap: 0.5rem;
  }

  .logo {
    height: 36px;
  }

  .brand-address {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav-links a {
    color: #e2e8f0;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .social-dock {
    left: 50%;
    right: auto;
    bottom: 0.65rem;
    transform: translateX(-50%);
    width: min(96%, 560px);
    justify-content: center;
    flex-wrap: wrap;
    right: 0.5rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: calc(100% - 1rem);
  }
}

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }

  .cta-strip {
    padding: 1.4rem 1.3rem;
  }
}

/* Card Icons */

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}

/* Decorative Background Shapes */

.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.bg-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.bg-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -50px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}

.bg-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

/* Decorative Lines */

.decorative-line {
  height: 4px;
  width: 80px;
  background: var(--primary-gradient);
  border-radius: 2px;
  margin: 1rem 0;
}

/* Floating Animation */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Gradient Text */

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats/Numbers styling */

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Feature highlight box */

.feature-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Icon circles */

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
}

/* Progress bar */

.progress-bar {
  height: 6px;
  background: var(--accent-strong);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* Glowing border effect */

.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--primary-gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-border:hover::before {
  opacity: 0.5;
  filter: blur(8px);
}

/* Dotted pattern background */

.dotted-bg {
  background-image: radial-gradient(rgba(37, 99, 235, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Wave separator */

.wave-separator {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23eff6ff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,37.5 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

/* Link with arrow */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 0.6rem;
}

.link-arrow::after {
  content: '\2192';
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(2px);
}

/* Highlight marker effect */

.highlight {
  position: relative;
  display: inline;
}

.highlight::before {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0;
  height: 40%;
  background: rgba(37, 99, 235, 0.15);
  z-index: -1;
  transform: skewX(-5deg);
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .social-link,
  .hero-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Photo highlights */
.photo-highlights {
  background: #f8fafc;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.photo-card {
  margin: 0;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo-card figcaption {
  padding: 0.85rem 1rem;
  color: #475569;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card img {
    height: 200px;
  }
}

.insight-image-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.insight-image-card {
  margin: 0;
  border: 1px solid #d8e0ef;
  border-top: 4px solid #284b8f;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.insight-image-card:hover {
  transform: translateY(-4px);
  border-color: #b9c8e1;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.15);
}

.insight-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.insight-image-content {
  padding: 0.85rem 0.95rem;
}

.insight-image-content h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #0f213f;
}

.insight-image-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #516178;
  line-height: 1.5;
}

.insight-image-card.is-inactive {
  opacity: 0.82;
  filter: saturate(0.8);
  position: relative;
}

.insight-image-card.is-inactive::after {
  content: "In development";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f213f;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #cfd9eb;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.insight-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #5f6f84;
}

.insights-cta-panel {
  margin-top: 1.4rem;
  padding: 1.25rem 1.3rem;
  border-radius: 14px;
  border: 1px solid #d2dced;
  background: linear-gradient(135deg, #f8fbff 0%, #edf3ff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.insights-cta-panel h3 {
  margin-bottom: 0.45rem;
  color: #11284e;
}

.insights-cta-panel p {
  margin: 0;
  color: #4f6078;
  max-width: 56ch;
}

.insights-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  border: 1px solid #1f3f82;
  background: #1f3f82;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.insights-cta-link:hover {
  background: #193369;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(25, 51, 105, 0.25);
}

@media (max-width: 900px) {
  .insight-image-grid {
    grid-template-columns: 1fr;
  }

  .insights-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Homepage modern refresh */
.home-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.72)),
    url("assets/header-banner.svg") center / cover no-repeat;
}

.home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.home-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.7), rgba(37, 99, 235, 0.45));
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.45);
}

.home-brand-tagline {
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.home-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-header-contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: right;
}

.home-header-contact a {
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.79rem;
}

.home-nav-links a {
  font-size: 0.86rem;
}

.reference-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at 14% 19%, rgba(253, 186, 116, 0.34), transparent 40%),
    radial-gradient(circle at 83% 26%, rgba(125, 168, 255, 0.33), transparent 41%),
    linear-gradient(140deg, #1a2e66 0%, #3a63c2 56%, #78acff 100%);
}

.reference-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.52));
}

.reference-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: min(58%, 900px);
  height: 100%;
  opacity: 0.78;
  mix-blend-mode: screen;
  pointer-events: none;
}

.reference-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.reference-hero-media-subtle {
  opacity: 0.52;
  mix-blend-mode: screen;
}

.reference-hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.reference-hero-content h1 {
  color: #eff6ff;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.reference-hero-content p {
  margin-top: 1rem;
  color: rgba(219, 234, 254, 0.9);
  font-size: 1.05rem;
  max-width: 46ch;
}

.reference-intro {
  padding-top: 3.2rem;
}

.reference-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 1.3rem;
  align-items: stretch;
}

.reference-intro-highlight,
.reference-intro-copy {
  margin: 0;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.reference-intro-highlight {
  padding: 1.4rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f2a6b;
}

.reference-intro-copy {
  padding: 1.4rem;
}

.reference-intro-copy h2 {
  font-size: clamp(1.32rem, 2.7vw, 1.8rem);
}

.hero.hero-reference {
  display: none;
}

@media (max-width: 980px) {
  .home-header-contact {
    display: none;
  }

  .reference-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* About page refresh inspired by modern consultancy layouts */
.about-identity {
  padding-top: 2.3rem;
}

.about-identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.about-identity-image-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(148, 163, 184, 0.35);
  min-height: 100%;
}

.about-identity-image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.about-identity-content {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(150deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  padding: 1.35rem;
}

.about-identity-content h2 {
  margin-bottom: 0.7rem;
}

.about-identity-content p {
  color: #475569;
}

.about-metric-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-metric-card {
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.7rem;
}

.about-metric-card strong {
  display: block;
  font-size: 1rem;
  color: #1e3a8a;
}

.about-metric-card span {
  display: block;
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.83rem;
}

.about-story-section .two-col {
  gap: 1.4rem;
}

.about-story-section .two-col > div {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  padding: 1.2rem;
}

@media (max-width: 980px) {
  .about-identity-grid,
  .about-metric-grid {
    grid-template-columns: 1fr;
  }

  .about-identity-image-card img {
    min-height: 250px;
  }
}

/* Turning points visual section */
.turning-points-visual-section {
  padding-top: 0;
}

.turning-points-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: center;
}

.turning-points-visual-copy {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: linear-gradient(160deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.turning-points-visual-copy h2 {
  margin-bottom: 0.75rem;
}

.turning-points-visual-copy p {
  color: #475569;
}

.turning-points-visual-points {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.turning-points-visual-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: #0f2a6b;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
}

.turning-points-visual-points span::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8 0%, #60a5fa 100%);
  box-shadow: 0 0 0 4px rgba(191, 219, 254, 0.7);
  flex-shrink: 0;
}

.turning-points-visual-card {
  margin: 0;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(219, 234, 254, 0.85));
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
}

.turning-points-visual-card img {
  width: 100%;
  border-radius: 22px;
}

/* Shared modern page section applied across all core pages */
.page-identity {
  padding-top: 2.2rem;
}

.page-identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}

.page-identity-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.16);
}

.page-identity-image-card img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
}

.page-identity-content {
  padding: 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(150deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.page-identity-content h2 {
  margin-bottom: 0.7rem;
}

.page-identity-content p {
  color: #475569;
}

.page-identity-pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.page-identity-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.72rem;
}

/* Modern Slavery Act summary panel */
.slavery-summary {
  margin-top: 1.4rem;
  border-radius: 16px;
  border: 1px solid #c9d9fb;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 32px rgba(32, 48, 85, 0.08);
  padding: 1.15rem;
}

.slavery-summary h3 {
  margin-bottom: 0.5rem;
}

.slavery-summary p {
  margin-bottom: 0.4rem;
  color: #425773;
}

.slavery-summary ul {
  margin-top: 0.3rem;
  padding-left: 1.15rem;
  color: #425773;
}

.slavery-summary li {
  margin-bottom: 0.35rem;
}

@media (max-width: 980px) {
  .page-identity-grid {
    grid-template-columns: 1fr;
  }

  .page-identity-image-card img {
    min-height: 240px;
  }
}

.hero-actions { display:flex; gap:0.8rem; margin-top:1rem; flex-wrap:wrap; }
.grid-4 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1rem; }
.trust-strip { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:0.8rem; font-weight:600; color:var(--secondary); }
.trust-strip span { background:#fff; border:1px solid var(--border); border-radius:var(--radius-pill); padding:0.6rem 0.8rem; text-align:center; font-size:0.9rem; }
.services-card-grid .card { border:1px solid var(--border); border-radius:var(--radius-md); padding:1rem; background:#fff; box-shadow:var(--shadow-card); }
.cta-band { text-align:center; background:linear-gradient(135deg,#2a1ab8,#1fd7be); color:#fff; border-radius:var(--radius-lg); padding:2rem; }
.cta-band h2,.cta-band p { color:#fff; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:1rem; padding:1.5rem 0; }
.footer-grid a { display:block; margin-bottom:0.35rem; color:var(--muted); }
.service-overview article h2 { font-size:1.25rem; }
.faq-list { display:grid; gap:0.75rem; }
.faq-list details { background:#fff; border:1px solid var(--border); border-radius:10px; padding:0.8rem; }
.faq-list summary { cursor:pointer; font-weight:600; }
.case-study { border:1px solid var(--border); border-radius:var(--radius-md); padding:1rem; background:#fff; margin-bottom:1rem; }
.article-content { max-width:760px; }
.article-content h2 { margin-top:1.1rem; }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .trust-strip { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns:1fr; }
  .trust-strip { grid-template-columns:1fr; }
}

.small-note{margin-top:.75rem;font-size:.95rem;color:var(--muted);line-height:1.6;}

.service-summary-block {
  border: 1px solid #cddaf9;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #edf3ff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  padding: 1.4rem;
}

.service-summary-block h2 {
  margin-bottom: 0.6rem;
}

.service-summary-block p {
  color: #415574;
  margin-bottom: 0;
}

.service-highlight-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.service-highlight-list p {
  margin: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #d7e4ff;
  background: #ffffff;
  color: #2f4a70;
  font-weight: 500;
}

.service-highlight-list p::before {
  content: "✓ ";
  color: #1d4ed8;
  font-weight: 700;
}

.infra-intro-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: start;
}

.service-visual-stack {
  display: grid;
  gap: 1rem;
}

.service-visual-card {
  margin: 0;
  border: 1px solid #d6e2fb;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.service-visual-card img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.service-visual-card figcaption {
  padding: 0.7rem 0.9rem 0.9rem;
  color: #4b5e79;
  font-size: 0.9rem;
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.platform-grid article ul {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  color: #3d4d66;
}

.platform-grid article li {
  margin-bottom: 0.3rem;
}

.check-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.check-grid p {
  margin: 0;
  border: 1px solid #d8e2f8;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.58rem 0.8rem;
  color: #3f526e;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.check-grid p::before {
  content: "✓ ";
  color: #1f3f82;
  font-weight: 700;
}

.check-grid.compact {
  margin-top: 0.7rem;
}

@media (max-width: 980px) {
  .infra-intro-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026 corporate refresh */
:root {
  --primary: #0f2d4d;
  --primary-light: #1a5c8a;
  --primary-dark: #0a2238;
  --primary-gradient: linear-gradient(135deg, #0f2d4d 0%, #164b74 45%, #2d6f9f 100%);
  --secondary: #0f2d4d;
  --accent: #f4f8fc;
  --accent-strong: #ecf5fb;
  --text: #13253a;
  --muted: #4a6078;
  --bg: #f7f9fc;
  --border: #d6e2ee;
  --shadow-soft: 0 14px 32px rgba(15, 45, 77, 0.16);
  --shadow-blue: 0 8px 24px rgba(22, 75, 116, 0.26);
  --shadow-card: 0 8px 20px rgba(19, 37, 58, 0.09);
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-width: 1160px;
}

body {
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 6% 0%, rgba(26, 92, 138, 0.12) 0%, rgba(26, 92, 138, 0) 36%),
    radial-gradient(circle at 95% 8%, rgba(45, 111, 159, 0.1) 0%, rgba(45, 111, 159, 0) 32%),
    var(--bg);
}

header {
  backdrop-filter: saturate(145%) blur(8px);
  border-bottom: 1px solid rgba(214, 226, 238, 0.75);
}

.header-scrolled {
  box-shadow: 0 8px 18px rgba(15, 45, 77, 0.1);
}

.nav-links a {
  font-weight: 500;
}

.btn {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary-gradient);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline {
  border: 1px solid var(--primary-light);
  color: var(--primary-dark);
  background: #ffffff;
}

.feature-box,
.card,
.case-study,
.service-summary-block,
.faq-list details {
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.feature-box:hover,
.card:hover,
.case-study:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.reference-hero {
  border-bottom: 1px solid rgba(214, 226, 238, 0.9);
}

.sticky-business-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  border-radius: 999px;
  padding: 0.82rem 1.08rem;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-blue);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.sticky-business-cta:hover {
  transform: translateY(-2px);
}

.sticky-business-cta.hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

@media (max-width: 780px) {
  .sticky-business-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}


@media (max-width: 980px) {
  .reference-hero-media {
    width: 100%;
    opacity: 0.46;
    mix-blend-mode: soft-light;
  }

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

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

@media (max-width: 640px) {
  .service-image-grid {
    grid-template-columns: 1fr;
  }
}
