/* ========================================
   WIGULU — Main Stylesheet
   ======================================== */


:root {
  --color-primary: #1B4F72;
  --color-primary-dark: #154060;
  --color-primary-light: #2980B9;
  --color-accent: #27AE60;
  --color-accent-dark: #1E8449;
  --color-secondary: #F39C12;
  --color-text-dark: #1A2332;
  --color-text-body: #2C3E50;
  --color-text-muted: #5D6D7E;
  --color-text-light: #F0F4F8;
  --color-bg-base: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-bg-tinted: #EEF2F7;
  --color-bg-dark: #0F2337;
  --color-border: #D5E0EC;

  --shadow-sm: 0 1px 3px rgba(27,79,114,0.08), 0 1px 2px rgba(27,79,114,0.06);
  --shadow-md: 0 4px 12px rgba(27,79,114,0.10), 0 2px 4px rgba(27,79,114,0.07);
  --shadow-lg: 0 8px 30px rgba(27,79,114,0.13), 0 3px 8px rgba(27,79,114,0.08);
  --shadow-xl: 0 16px 50px rgba(27,79,114,0.16), 0 6px 16px rgba(27,79,114,0.10);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --nav-height: 72px;
  --font-display: 'Wix Madefor Display', sans-serif;
  --font-body: 'Wix Madefor Text', sans-serif;
}


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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }

ul { list-style: none; }

address { font-style: normal; }

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

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-image { height: 36px; width: auto; }

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-tab {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-tab:hover {
  color: var(--color-primary);
  background: rgba(27,79,114,0.07);
}

.nav-tab.active {
  color: var(--color-primary);
  background: rgba(27,79,114,0.10);
  font-weight: 600;
}

.nav-tab-contact {
  background: var(--color-primary);
  color: var(--color-text-light) !important;
  padding: 8px 20px;
  font-weight: 600;
}

.nav-tab-contact:hover {
  background: var(--color-primary-dark);
  color: #fff !important;
}

.nav-tab-contact.active {
  background: var(--color-primary-dark);
  color: #fff !important;
}

.nav-border-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-border-line.visible {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.mobile-menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 35, 55, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--color-bg-white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
}

.mobile-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--color-bg-tinted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-text-body);
  margin-bottom: 32px;
  transition: all 0.25s ease;
}

.mobile-menu-close:hover {
  background: var(--color-border);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-body);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.mobile-nav-link:hover {
  background: var(--color-bg-tinted);
  color: var(--color-primary);
}

.mobile-nav-link.active {
  background: rgba(27,79,114,0.08);
  color: var(--color-primary);
  font-weight: 600;
}

.mobile-menu-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ========================================
   BUTTONS
   ======================================== */

.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.button-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.button-primary.button-large {
  font-size: 1rem;
  padding: 14px 32px;
}

.button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.28s ease;
}

.button-ghost:hover {
  background: rgba(27,79,114,0.07);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--color-primary-dark);
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-label.light { color: rgba(240, 244, 248, 0.8); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-heading.centered { text-align: center; }
.section-heading.light { color: #fff; }

.section-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.section-subtext.centered {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 48px;
}

.body-text {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.body-text.light { color: rgba(240, 244, 248, 0.88); }

.max-width-text { max-width: 680px; margin-bottom: 48px; }

.hidden { display: none !important; }

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--color-bg-base);
}

.hero-marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-marquee-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  color: rgba(27,79,114,0.055);
  letter-spacing: -0.02em;
  line-height: 1;
}

.marquee-dot {
  color: rgba(39,174,96,0.10);
  font-size: clamp(2rem, 5vw, 4rem);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image-side {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 520px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow:
    0 20px 60px rgba(27,79,114,0.14),
    0 4px 16px rgba(27,79,114,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(213, 224, 236, 0.6);
  position: relative;
}

.hero-card-tag {
  display: inline-block;
  background: rgba(27,79,114,0.09);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
  padding: 100px 0 80px;
  background: var(--color-bg-white);
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.problem-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}

.problem-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  border-left: 4px solid var(--color-accent);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

.problem-image-side {
  position: relative;
  padding-bottom: 24px;
  padding-right: 24px;
}

/* ========================================
   COMPARISON CARDS
   ======================================== */

.comparison-section {
  padding: 96px 0;
  background: var(--color-bg-tinted);
}

.comparison-header {
  margin-bottom: 56px;
}

.comparison-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.comparison-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.comparison-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(27,79,114,0.14),
    0 6px 16px rgba(27,79,114,0.09);
}

.comparison-card-featured {
  background: linear-gradient(160deg, #1B4F72 0%, #154060 100%);
  border-color: transparent;
  transform: translateY(-8px);
}

.comparison-card-featured:hover {
  transform: translateY(-14px) scale(1.01);
}

.comparison-card-featured .card-title,
.comparison-card-featured .card-subtitle,
.comparison-card-featured .card-features li {
  color: rgba(240, 244, 248, 0.92);
}

.comparison-card-featured .card-features .fa-check {
  color: var(--color-accent);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 20px;
}

.card-icon-teal { background: var(--color-accent); }
.card-icon-blue { background: var(--color-primary-light); }
.card-icon-purple { background: #8E44AD; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.card-features {
  margin-bottom: 28px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-body);
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
}

.comparison-card-featured .card-features li {
  border-bottom-color: rgba(255,255,255,0.12);
}

.card-features li:last-child { border-bottom: none; }

.card-features .fa-check {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.card-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.28s ease;
}

.card-cta-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.card-cta-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.card-cta-solid {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.card-cta-solid:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
}

/* ========================================
   JOURNEY SECTION
   ======================================== */

.journey-section {
  padding: 96px 0 80px;
  background: var(--color-bg-white);
}

.journey-header { margin-bottom: 64px; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.step-connector {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step-connector.last { display: none; }

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--color-bg-tinted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--color-bg-white);
  box-shadow: var(--shadow-md);
  transition: all 0.28s ease;
}

.journey-step:hover .step-icon {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.why-background-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,55,0.88) 0%, rgba(27,79,114,0.80) 100%);
}

.why-content-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.why-content { padding-right: 20px; }

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-feature-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  backdrop-filter: blur(8px);
  transition: all 0.28s ease;
}

.why-feature-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

.why-feature-icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.why-feature-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-feature-card p {
  font-size: 0.875rem;
  color: rgba(240,244,248,0.80);
  line-height: 1.6;
}

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

.services-section {
  padding: 100px 0;
  background: var(--color-bg-base);
}

.services-header { margin-bottom: 64px; }

.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-item-reverse {
  direction: rtl;
}

.service-item-reverse > * {
  direction: ltr;
}

.service-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-image-wrap:hover .service-image {
  transform: scale(1.04);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.service-description {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.cta-section {
  padding: 80px 0;
  background: var(--color-bg-tinted);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: 52px 60px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.cta-subtext {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.cta-actions { flex-shrink: 0; }

/* ========================================
   FOOTER
   ======================================== */

.page-footer {
  background: var(--color-bg-dark);
}

.footer-testimonial-band {
  background: linear-gradient(135deg, #154060 0%, #1B4F72 100%);
  padding: 64px 0;
}

.footer-quote-wrap {
  max-width: 800px;
  position: relative;
  padding-left: 40px;
}

.footer-quote-mark {
  position: absolute;
  left: 0;
  top: -10px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  font-weight: 800;
}

.footer-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: rgba(240,244,248,0.95);
  line-height: 1.55;
  margin-bottom: 16px;
}

.footer-quote-attribution {
  font-size: 0.875rem;
  color: rgba(240,244,248,0.55);
  font-style: italic;
}

.footer-main {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-brand-description {
  font-size: 0.9rem;
  color: rgba(240,244,248,0.55);
  line-height: 1.7;
  max-width: 240px;
}

.footer-column-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(240,244,248,0.45);
  margin-bottom: 20px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  font-size: 0.9rem;
  color: rgba(240,244,248,0.65);
  transition: color 0.25s ease;
}

.footer-link-list a:hover {
  color: rgba(240,244,248,0.95);
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-address p, .footer-address a {
  font-size: 0.9rem;
  color: rgba(240,244,248,0.65);
  transition: color 0.25s ease;
}

.footer-address a:hover {
  color: rgba(240,244,248,0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.825rem;
  color: rgba(240,244,248,0.35);
}

.footer-domain {
  font-size: 0.825rem;
  color: rgba(240,244,248,0.25);
  font-family: var(--font-display);
}

/* ========================================
   FLOATING SIDEBAR CTA
   ======================================== */

.floating-sidebar-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  transition: opacity 0.3s ease;
}

.sidebar-cta-button {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 14px 12px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  box-shadow: var(--shadow-md);
  transition: all 0.28s ease;
  overflow: hidden;
  white-space: nowrap;
}

.sidebar-cta-button:hover {
  background: var(--color-accent-dark);
  padding-left: 16px;
  box-shadow: var(--shadow-lg);
}

.sidebar-cta-button i {
  writing-mode: horizontal-tb;
  transform: rotate(90deg);
  font-size: 1rem;
  margin-bottom: 8px;
}

.sidebar-cta-label {
  display: block;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */

.page-hero-section {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 0;
  background: var(--color-bg-base);
}

.page-hero-content {
  padding-bottom: 56px;
}

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 720px;
}

.page-hero-subtext {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.page-hero-image-strip {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.page-hero-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(248,250,252,0.6) 0%, rgba(248,250,252,0.0) 40%);
}

/* ========================================
   AUDIENCE SECTION (who we work with)
   ======================================== */

.audience-section {
  padding: 96px 0;
  background: var(--color-bg-white);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.audience-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audience-card {
  border-radius: var(--radius-md);
  padding: 28px 28px;
  border: 1px solid var(--color-border);
}

.audience-card-fit {
  background: rgba(39,174,96,0.04);
  border-color: rgba(39,174,96,0.2);
}

.audience-card-notfit {
  background: rgba(231,76,60,0.04);
  border-color: rgba(231,76,60,0.15);
}

.audience-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.audience-card-fit .audience-card-header { color: var(--color-accent-dark); }
.audience-card-fit .audience-card-header i { color: var(--color-accent); }
.audience-card-notfit .audience-card-header { color: #C0392B; }
.audience-card-notfit .audience-card-header i { color: #E74C3C; }

.audience-list { display: flex; flex-direction: column; gap: 9px; }
.audience-list li {
  font-size: 0.9rem;
  color: var(--color-text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.audience-list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

/* ========================================
   SCENARIOS SECTION
   ======================================== */

.scenarios-section {
  padding: 80px 0 96px;
  background: var(--color-bg-tinted);
}

.scenarios-header { margin-bottom: 52px; }

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scenario-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 14px 40px rgba(27,79,114,0.12),
    0 4px 12px rgba(27,79,114,0.07);
}

.scenario-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,79,114,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.scenario-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.scenario-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========================================
   INDUSTRY SECTION
   ======================================== */

.industry-section {
  padding: 96px 0;
  background: var(--color-bg-white);
}

.industry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.industry-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.industry-tag {
  background: rgba(27,79,114,0.08);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(27,79,114,0.15);
}

/* ========================================
   CONSULTING PAGE
   ======================================== */

.consulting-services-section {
  padding: 80px 0 100px;
  background: var(--color-bg-white);
}

.consulting-intro {
  margin-bottom: 72px;
}

.consulting-service-block {
  border-top: 1px solid var(--color-border);
  padding: 60px 0;
}

.consulting-service-block:last-child {
  border-bottom: 1px solid var(--color-border);
}

.consulting-service-alt {
  background: var(--color-bg-tinted);
  margin: 0 -24px;
  padding: 60px 24px;
}

.consulting-service-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.consulting-service-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  padding-top: 8px;
  flex-shrink: 0;
  min-width: 28px;
}

.consulting-service-icon-large {
  width: 60px;
  height: 60px;
  background: rgba(27,79,114,0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.consulting-service-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.consulting-service-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.consulting-service-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding-left: 52px;
}

.consulting-detail-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 28px;
  margin-bottom: 10px;
}

.consulting-aside-card {
  background: var(--color-bg-tinted);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.consulting-aside-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.consulting-aside-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consulting-aside-card li {
  font-size: 0.875rem;
  color: var(--color-text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.consulting-aside-card li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}


.format-section {
  padding: 80px 0 96px;
  background: var(--color-bg-tinted);
}

.format-header { margin-bottom: 52px; }

.format-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.format-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 16px 40px rgba(27,79,114,0.12),
    0 4px 10px rgba(27,79,114,0.07);
}

.format-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,79,114,0.09);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.format-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.format-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========================================
   METHODOLOGY PAGE
   ======================================== */

.principles-section {
  padding: 96px 0;
  background: var(--color-bg-white);
}

.principles-intro { margin-bottom: 60px; }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.principle-card {
  background: var(--color-bg-tinted);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
}

.principle-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 14px 40px rgba(27,79,114,0.11),
    0 4px 10px rgba(27,79,114,0.07);
}

.principle-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(27,79,114,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.principle-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.principle-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.72;
}


.process-section {
  padding: 80px 0 96px;
  background: var(--color-bg-tinted);
}

.process-header { margin-bottom: 60px; }

.process-cycle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cycle-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.cycle-step {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
}

.cycle-step-1 { background: rgba(27,79,114,0.10); }
.cycle-step-2 { background: rgba(41,128,185,0.12); }
.cycle-step-3 { background: rgba(39,174,96,0.12); }
.cycle-step-4 { background: rgba(243,156,18,0.12); }

.cycle-step:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.cycle-step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cycle-step-1 .cycle-step-inner i { color: var(--color-primary); }
.cycle-step-2 .cycle-step-inner i { color: var(--color-primary-light); }
.cycle-step-3 .cycle-step-inner i { color: var(--color-accent); }
.cycle-step-4 .cycle-step-inner i { color: var(--color-secondary); }

.cycle-step-inner i { font-size: 1.3rem; }

.cycle-step-inner span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cycle-arrow {
  color: var(--color-border);
  font-size: 0.9rem;
}

.process-step-detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-step-detail:last-child { border-bottom: none; }

.process-step-detail h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.process-step-detail p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.tools-section {
  padding: 96px 0;
  background: var(--color-bg-white);
}

.tools-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.tools-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.tool-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-bg-tinted);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
}

.tool-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.tool-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(27,79,114,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.tool-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-item-text strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.tool-item-text span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.contrast-section {
  padding: 80px 0 96px;
  background: var(--color-bg-tinted);
}

.contrast-header { margin-bottom: 52px; }

.contrast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contrast-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contrast-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 14px 36px rgba(27,79,114,0.11),
    0 4px 10px rgba(27,79,114,0.07);
}

.contrast-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(231,76,60,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #E74C3C;
  margin-bottom: 16px;
}

.contrast-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.contrast-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-hero-section {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  background: var(--color-bg-base);
}

.contact-hero-content {}

.contact-main-section {
  padding: 0 0 96px;
  background: var(--color-bg-base);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}


.inquiry-form-wrap {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-section-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 32px;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.progress-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-tinted);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.progress-step.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.progress-step.completed {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
}

.progress-line-done {
  background: var(--color-accent);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.form-input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-body);
  background: var(--color-bg-base);
  transition: all 0.25s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  background: var(--color-bg-white);
  box-shadow: 0 0 0 4px rgba(27,79,114,0.08);
}

.form-textarea {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-body);
  background: var(--color-bg-base);
  transition: all 0.25s ease;
  outline: none;
  resize: vertical;
  min-height: 130px;
}

.form-textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-bg-white);
  box-shadow: 0 0 0 4px rgba(27,79,114,0.08);
}

.form-checkbox-group { margin-top: 8px; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.form-checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.form-next-btn {
  width: 100%;
  justify-content: center;
}

.form-step { transition: all 0.3s ease; }


.contact-info-block {
  margin-bottom: 40px;
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,79,114,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--color-text-body);
  transition: color 0.25s ease;
}

a.contact-info-value:hover { color: var(--color-primary); }

.office-directions-block { }


.map-section {
  padding: 0 0 80px;
  background: var(--color-bg-base);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-map { display: block; }

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 48px) 24px 80px;
}

.thanks-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.thanks-icon-wrap { margin-bottom: 24px; }

.thanks-icon {
  font-size: 3.5rem;
  color: var(--color-accent);
}

.thanks-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.thanks-countdown-wrap {
  margin-bottom: 32px;
}

.thanks-redirect-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.thanks-countdown-bar {
  height: 4px;
  background: var(--color-bg-tinted);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.thanks-countdown-fill {
  height: 100%;
  width: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: width 5s linear;
}

.thanks-return-btn {
  display: inline-flex;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page-main {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 96px;
  min-height: 80vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--color-border);
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.legal-body {
  line-height: 1.75;
}

.legal-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  padding: 24px;
  background: var(--color-bg-tinted);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.legal-group {
  margin-bottom: 40px;
}

.legal-group-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.legal-section-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 36px 0 14px;
}

.legal-section-heading:first-of-type { margin-top: 0; }

.legal-bullet-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
  padding-left: 8px;
}

.legal-bullet-group li {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.legal-bullet-group li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

.legal-body p {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  margin-bottom: 14px;
  line-height: 1.72;
}

.legal-inline-note {
  font-size: 0.875rem !important;
  color: var(--color-text-muted) !important;
  background: var(--color-bg-tinted);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

.legal-numbered-list {
  counter-reset: legal-counter;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-numbered-list > li {
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-numbered-list > li:last-child { border-bottom: none; }

.legal-numbered-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}


.cookie-table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--color-bg-tinted);
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

.cookie-table td {
  padding: 14px 16px;
  color: var(--color-text-body);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: rgba(238,242,247,0.5); }

.cookie-table code {
  font-family: monospace;
  font-size: 0.82rem;
  background: rgba(27,79,114,0.08);
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ========================================
   COOKIE CONSENT
   ======================================== */

.cookie-consent-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--color-bg-dark);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow:
    0 8px 32px rgba(15,35,55,0.35),
    0 2px 8px rgba(15,35,55,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  max-width: calc(100vw - 48px);
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.cookie-consent-pill.expanded {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  white-space: normal;
  max-width: 480px;
}

.cookie-pill-text {
  font-size: 0.85rem;
  color: rgba(240,244,248,0.80);
  font-family: var(--font-body);
}

.cookie-pill-text a {
  color: rgba(240,244,248,0.55);
  text-decoration: underline;
  font-size: 0.8rem;
}

.cookie-pill-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-consent-pill.expanded .cookie-pill-actions {
  width: 100%;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cookie-btn-accept:hover { background: var(--color-accent-dark); }

.cookie-btn-customize {
  background: transparent;
  color: rgba(240,244,248,0.65);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cookie-btn-customize:hover {
  border-color: rgba(255,255,255,0.40);
  color: rgba(240,244,248,0.90);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(240,244,248,0.50);
  border: none;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 0.80rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-btn-reject:hover { color: rgba(240,244,248,0.80); }

.cookie-expanded-content {
  display: none;
  width: 100%;
}

.cookie-consent-pill.expanded .cookie-expanded-content { display: block; }

.cookie-expanded-text {
  font-size: 0.875rem;
  color: rgba(240,244,248,0.70);
  line-height: 1.65;
  margin-bottom: 20px;
}

.cookie-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cookie-category-row:last-of-type { border-bottom: none; }

.cookie-category-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(240,244,248,0.85);
}

.cookie-category-desc {
  font-size: 0.78rem;
  color: rgba(240,244,248,0.45);
  margin-top: 3px;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.28s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.28s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-accent); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

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

@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 80px;
  }

  .hero-image-side { height: 360px; }

  .problem-layout,
  .industry-layout,
  .tools-layout,
  .why-content-container,
  .process-cycle,
  .audience-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .comparison-cards-grid,
  .format-cards-row,
  .contrast-grid { grid-template-columns: 1fr; }

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

  .step-connector { display: none; }

  .journey-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }

  .step-icon { margin-bottom: 0; flex-shrink: 0; }

  .service-item, .service-item-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

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

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

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

  .consulting-service-body {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .consulting-aside-card { position: static; }

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

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-tabs { display: none; }

  .mobile-menu-trigger { display: flex; }

  .comparison-card-featured { transform: none; }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-heading { font-size: clamp(1.75rem, 6vw, 2.4rem); }

  .inquiry-form-wrap { padding: 32px 24px; }

  .thanks-card { padding: 44px 28px; }

  .cookie-consent-pill.expanded { max-width: calc(100vw - 32px); }

  .consulting-service-header { flex-wrap: wrap; }

  .sidebar-cta-label { display: none; }

  .sidebar-cta-button {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 14px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
  }

  .sidebar-cta-button i {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .button-primary,
  .hero-actions .button-ghost { width: 100%; justify-content: center; }

  .section-container { padding: 0 16px; }

  .problem-section { padding: 72px 0 60px; }
  .comparison-section { padding: 72px 0; }
  .journey-section { padding: 72px 0 60px; }
  .services-section { padding: 72px 0; }

  .legal-container { padding: 0 16px; }
  .cookie-table { font-size: 0.78rem; }
  .cookie-table th, .cookie-table td { padding: 10px 12px; }
}