/* ============================================
   ZENEXTRAX DIGITAL — MAIN STYLESHEET
   Architectural Grid Design System
   ============================================ */


:root {
  --color-bg: #f4f6f9;
  --color-bg-alt: #eef1f6;
  --color-surface: #ffffff;
  --color-surface-2: #f8fafc;
  --color-border: #d1d9e6;
  --color-border-light: #e8edf5;

  --color-primary: #0d2b5e;
  --color-primary-hover: #0a2250;
  --color-primary-light: #1a3d7c;
  --color-secondary: #1e4d9e;
  --color-accent: #2d6df6;
  --color-accent-hover: #1a5de8;
  --color-accent-light: rgba(45, 109, 246, 0.12);

  --color-text: #1a2540;
  --color-text-muted: #5a6a8a;
  --color-text-light: #8a9ab8;
  --color-text-inverse: #f0f4ff;

  --color-grid-line: rgba(45, 109, 246, 0.07);
  --color-grid-line-strong: rgba(13, 43, 94, 0.12);

  --shadow-sm: 0 1px 3px rgba(13, 43, 94, 0.08), 0 1px 2px rgba(13, 43, 94, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 43, 94, 0.10), 0 2px 4px rgba(13, 43, 94, 0.06);
  --shadow-lg: 0 8px 30px rgba(13, 43, 94, 0.13), 0 4px 10px rgba(13, 43, 94, 0.07);
  --shadow-xl: 0 20px 60px rgba(13, 43, 94, 0.16), 0 8px 20px rgba(13, 43, 94, 0.09);
  --shadow-accent: 0 8px 30px rgba(45, 109, 246, 0.25), 0 2px 8px rgba(45, 109, 246, 0.15);

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

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
}


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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body.global-body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }


.global-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--color-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}


.global-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.global-btn--primary {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.global-btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 12px 40px rgba(45, 109, 246, 0.35), 0 4px 12px rgba(45, 109, 246, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

.global-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.global-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

.global-btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.global-btn--outline:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.global-btn--light {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  box-shadow: var(--shadow-md);
}
.global-btn--light:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-primary);
}


.global-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.global-section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.global-section-label--light { color: rgba(255,255,255,0.8); }
.global-section-label--light::before { background: rgba(255,255,255,0.8); }
.global-section-label--accent { color: var(--color-accent); }

.global-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.global-section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   GLOBAL HEADER
   ============================================ */
.global-header {
  position: relative;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.global-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.global-header__logo img { height: 40px; width: auto; }

.global-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.global-header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.global-header__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}
.global-header__link:hover { color: var(--color-primary); }
.global-header__link:hover::after { transform: scaleX(1); }
.global-header__link--active { color: var(--color-primary); font-weight: 600; }
.global-header__link--active::after { transform: scaleX(1); }

.global-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(45, 109, 246, 0.3);
  min-height: 40px;
}
.global-header__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 109, 246, 0.4);
  color: #ffffff;
}
.global-header__cta--active {
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(13, 43, 94, 0.3);
}

.global-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.global-header__hamburger:hover { background: var(--color-bg); }
.global-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ============================================
   MOBILE MENU — DIAGONAL CLIP-PATH WIPE
   ============================================ */
.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.global-mobile-menu.is-open { pointer-events: all; }

.global-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 94, 0.55);
  opacity: 0;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(4px);
}
.global-mobile-menu.is-open .global-mobile-menu__overlay { opacity: 1; }

.global-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--color-primary);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}
.global-mobile-menu.is-open .global-mobile-menu__panel {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.global-mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.global-mobile-menu__close:hover { background: rgba(255,255,255,0.2); }

.global-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: var(--space-lg);
}

.global-mobile-menu__link {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border-left: 3px solid transparent;
  opacity: 0;
  transform: translateX(20px);
}
.global-mobile-menu.is-open .global-mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(1) { transition: all 0.35s 0.3s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(2) { transition: all 0.35s 0.38s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(3) { transition: all 0.35s 0.46s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(4) { transition: all 0.35s 0.54s; }
.global-mobile-menu.is-open .global-mobile-menu__link:nth-child(5) { transition: all 0.35s 0.62s; }

.global-mobile-menu__link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  border-left-color: var(--color-accent);
}
.global-mobile-menu__link--cta {
  background: var(--color-accent);
  color: #ffffff;
  margin-top: 1rem;
  border-left-color: transparent;
  text-align: center;
  justify-content: center;
  display: flex;
}
.global-mobile-menu__link--cta:hover {
  background: var(--color-accent-hover);
  border-left-color: transparent;
}

/* ============================================
   HOME HERO
   ============================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.home-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,94,0.95) 0%, rgba(13,43,94,0.75) 50%, rgba(13,43,94,0.5) 100%);
}
.home-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,109,246,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,109,246,0.1) 1px, transparent 1px);
  background-size: 80px 80px;
}

.home-hero__midground {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.home-hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45,109,246,0.2);
}
.home-hero__circle--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}
.home-hero__circle--2 {
  width: 300px;
  height: 300px;
  bottom: 50px;
  left: -80px;
  border-color: rgba(45,109,246,0.12);
}
.home-hero__bracket {
  position: absolute;
  width: 40px;
  height: 40px;
}
.home-hero__bracket--tl {
  top: 60px;
  left: 60px;
  border-top: 2px solid rgba(45,109,246,0.4);
  border-left: 2px solid rgba(45,109,246,0.4);
}
.home-hero__bracket--br {
  bottom: 60px;
  right: 60px;
  border-bottom: 2px solid rgba(45,109,246,0.4);
  border-right: 2px solid rgba(45,109,246,0.4);
}

.home-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}

.home-hero__content-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 20px rgba(45,109,246,0.15);
}

.home-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.home-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.home-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.home-hero__title-accent {
  color: var(--color-accent);
  position: relative;
}

.home-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.home-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  cursor: default;
  transition: color var(--transition);
}
.home-hero__trust-item i {
  color: var(--color-accent);
  font-size: 0.875rem;
}
.home-hero__trust-item:hover { color: rgba(255,255,255,0.9); }

.home-hero__image-side { display: none; }

.home-hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.home-hero__side-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.home-hero__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.95);
  color: var(--color-primary);
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}
.home-hero__image-badge i { color: var(--color-accent); }

/* ============================================
   HOME INTRO STRIP
   ============================================ */
.home-intro {
  padding: var(--space-xl) 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 1;
}
.home-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.home-intro__text {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.75;
}
.home-intro__text strong { color: var(--color-primary); }

/* ============================================
   HOME FEATURES
   ============================================ */
.home-features {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.home-features__header {
  margin-bottom: var(--space-xl);
}
.home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.home-features__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.home-features__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.home-features__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(45,109,246,0.15);
  transform: translateY(-4px);
}
.home-features__card:hover::before { transform: scaleX(1); }
.home-features__card--highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
  color: #ffffff;
}
.home-features__card--highlight .home-features__card-label,
.home-features__card--highlight .home-features__card-title,
.home-features__card--highlight .home-features__card-desc { color: rgba(255,255,255,0.9); }
.home-features__card--highlight .home-features__card-icon { background: rgba(255,255,255,0.15); color: #ffffff; }
.home-features__card--highlight .home-features__card-link { color: rgba(255,255,255,0.9); }
.home-features__card--highlight:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.home-features__card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all var(--transition);
}
.home-features__card:hover .home-features__card-icon {
  background: var(--color-accent);
  color: #ffffff;
  transform: scale(1.05);
}
.home-features__card--highlight:hover .home-features__card-icon { background: rgba(255,255,255,0.25); }

.home-features__card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.home-features__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.home-features__card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.home-features__card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition);
}
.home-features__card-link:hover { gap: 0.625rem; }

/* ============================================
   HOME PROCESS
   ============================================ */
.home-process {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.home-process__header { margin-bottom: var(--space-xl); }
.home-process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.home-process__step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.home-process__step:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.home-process__step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: color var(--transition);
}
.home-process__step:hover .home-process__step-num { color: var(--color-accent); }
.home-process__step-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.home-process__step-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   HOME VISUAL BREAK
   ============================================ */
.home-visual-break {
  position: relative;
  z-index: 1;
}
.home-visual-break__image-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.home-visual-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-visual-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,94,0.92) 0%, rgba(13,43,94,0.75) 60%, rgba(13,43,94,0.5) 100%);
}
.home-visual-break__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.home-visual-break__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.home-visual-break__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ============================================
   HOME TOPICS
   ============================================ */
.home-topics {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.home-topics__header { margin-bottom: var(--space-xl); }
.home-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.home-topics__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: default;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.home-topics__item i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.home-topics__item:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

/* ============================================
   HOME CTA
   ============================================ */
.home-cta {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.home-cta__inner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.home-cta__grid-deco {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.home-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.home-cta__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   INNER PAGE HEROES
   ============================================ */
.about-page-hero,
.business-page-hero,
.faq-page-hero,
.contact-page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}
.about-page-hero__grid-deco,
.business-page-hero__grid-deco {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.about-page-hero__title,
.business-page-hero__title,
.faq-page-hero__title,
.contact-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.about-page-hero__subtitle,
.business-page-hero__subtitle,
.faq-page-hero__subtitle,
.contact-page-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   ABOUT STORY
   ============================================ */
.about-story {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-story__text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-story__text p:last-child { margin-bottom: 0; }
.about-story__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--color-surface);
}
.about-story__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-story__image-frame:hover .about-story__img { transform: scale(1.03); }

/* ============================================
   ABOUT VALUES
   ============================================ */
.about-values {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 1;
}
.about-values__header { margin-bottom: var(--space-xl); }
.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.about-values__card {
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.about-values__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-values__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  transition: all var(--transition);
}
.about-values__card:hover .about-values__icon {
  background: var(--color-accent);
  color: #ffffff;
}
.about-values__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.about-values__card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   ABOUT APPROACH
   ============================================ */
.about-approach {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.about-approach__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-approach__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.about-approach__content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-approach__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.about-approach__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 500;
}
.about-approach__list li i { color: var(--color-accent); font-size: 0.875rem; }

/* ============================================
   BUSINESS PAGE
   ============================================ */
.business-why {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.business-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.business-why__content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.business-why__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.business-programs {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 1;
}
.business-programs__header { margin-bottom: var(--space-xl); }
.business-programs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.business-programs__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.business-programs__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.business-programs__card--featured {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
  color: #ffffff;
}
.business-programs__card--featured h3,
.business-programs__card--featured p,
.business-programs__card--featured li { color: rgba(255,255,255,0.9); }
.business-programs__card--featured .business-programs__card-label { color: rgba(255,255,255,0.6); }
.business-programs__card--featured .business-programs__icon { background: rgba(255,255,255,0.15); color: #ffffff; }

.business-programs__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.business-programs__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.business-programs__card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.business-programs__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.business-programs__card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.business-programs__list {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.business-programs__list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.business-programs__list li i { color: var(--color-accent); font-size: 0.6rem; }
.business-programs__card--featured .business-programs__list li i { color: rgba(255,255,255,0.7); }

.business-delivery {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.business-delivery__header { margin-bottom: var(--space-xl); }
.business-delivery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.business-delivery__item {
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.business-delivery__item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.business-delivery__item i {
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}
.business-delivery__item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.business-delivery__item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.faq-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.faq-section__category-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.faq-cat-btn {
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.faq-cat-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.faq-cat-btn--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}
.faq-group__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border-light);
}
.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-surface);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  min-height: 56px;
}
.faq-item__question:hover { color: var(--color-accent); }
.faq-item__question i {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: transform var(--transition);
}
.faq-item__question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-item__question[aria-expanded="true"] { color: var(--color-accent); }
.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
}
.faq-item__answer.is-open { display: block; }
.faq-item__answer p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form-section {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}
.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.contact-form-section__info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-form-section__info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form-section__info-block h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}
.contact-form-section__info-block p {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}
.contact-form-section__info-block a {
  color: var(--color-accent);
  transition: color var(--transition);
}
.contact-form-section__info-block a:hover { color: var(--color-accent-hover); }
.contact-form-section__map { margin-top: var(--space-md); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.contact-form-section__form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}
.contact-form-section__field {
  margin-bottom: 1.25rem;
}
.contact-form-section__field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.contact-form-section__field input,
.contact-form-section__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: all var(--transition);
  outline: none;
  min-height: 48px;
}
.contact-form-section__field textarea { min-height: 140px; resize: vertical; }
.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(45,109,246,0.12);
}
.contact-form-section__field input::placeholder,
.contact-form-section__field textarea::placeholder { color: var(--color-text-light); }

.contact-form-section__privacy {
  margin-bottom: 1.5rem;
}
.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.contact-form-section__checkbox-label input[type="checkbox"] { display: none; }
.contact-form-section__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
  position: relative;
  background: var(--color-surface);
}
.contact-form-section__checkbox-label input:checked + .contact-form-section__checkbox-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.contact-form-section__checkbox-label input:checked + .contact-form-section__checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.contact-form-section__checkbox-label a { color: var(--color-accent); text-decoration: underline; }
.contact-form-section__submit { width: 100%; justify-content: center; }

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  padding: var(--space-3xl) 0;
  display: flex;
  align-items: center;
  min-height: 70vh;
  position: relative;
  z-index: 1;
}
.thanks-page {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.thanks-page__quote-card {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.thanks-page__quote-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.thanks-page__quote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.thanks-page__cite {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.thanks-page__content { padding: var(--space-md); }
.thanks-page__icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.thanks-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.thanks-page__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  z-index: 1;
}
.legal-page__header {
  max-width: 800px;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-border-light);
}
.legal-page__header h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.legal-page__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.legal-page__body {
  max-width: 800px;
}
.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}
.legal-section:last-child { border-bottom: none; }
.legal-section__summary {
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  padding: 0.875rem 1.125rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.legal-section__summary--terms {
  background: linear-gradient(90deg, rgba(13,43,94,0.06), transparent);
  border-left: 3px solid var(--color-primary);
  padding: 0.875rem 1.125rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.875rem;
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 1rem 0 0.5rem;
}
.legal-section p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  margin: 0.75rem 0 0.875rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-section ul li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.legal-section a { color: var(--color-accent); text-decoration: underline; }
.legal-section a:hover { color: var(--color-accent-hover); }


.legal-terms-intro {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.legal-terms-toc {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: var(--space-xl);
}
.legal-terms-toc h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.legal-terms-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.legal-terms-toc ol li a {
  font-size: 0.9rem;
  color: var(--color-accent);
  text-decoration: none;
}
.legal-terms-toc ol li a:hover { text-decoration: underline; }


.legal-cookie-intro {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: var(--space-xl);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.legal-cookie-intro__icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-cookie-intro p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.legal-cookie-table-section { margin-bottom: var(--space-xl); }
.legal-cookie-table-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.legal-cookie-table-wrap { overflow-x: auto; }
.legal-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-cookie-table th {
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
}
.legal-cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
}
.legal-cookie-table tr:last-child td { border-bottom: none; }
.legal-cookie-table tr:nth-child(even) td { background: var(--color-bg); }
.legal-badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.legal-badge--green { background: rgba(34,197,94,0.12); color: #15803d; }
.legal-badge--yellow { background: rgba(234,179,8,0.12); color: #854d0e; }
.legal-badge--red { background: rgba(239,68,68,0.1); color: #b91c1c; }
.legal-cookie-detail { display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0; }
.legal-cookie-detail__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.legal-cookie-detail__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: monospace;
  margin-bottom: 0.5rem;
}
.legal-cookie-detail__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================
   GLOBAL FOOTER
   ============================================ */
.global-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}
.global-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) 0;
  gap: 1.25rem;
}
.global-footer__logo { filter: brightness(0) invert(1); opacity: 0.9; }
.global-footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
}
.global-footer__nav,
.global-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  justify-content: center;
  align-items: center;
}
.global-footer__nav a,
.global-footer__legal a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  padding: 0.25rem 0;
}
.global-footer__nav a:hover,
.global-footer__legal a:hover { color: #ffffff; }
.global-footer__nav { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; width: 100%; justify-content: center; }
.global-footer__legal { font-size: 0.8125rem; }
.global-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  width: 100%;
  align-items: center;
}
.global-footer__contact span { display: flex; align-items: center; gap: 0.5rem; }
.global-footer__contact i { color: var(--color-accent); font-size: 0.875rem; }
.global-footer__contact a { color: rgba(255,255,255,0.7); }
.global-footer__contact a:hover { color: #ffffff; }
.global-footer__legal-info {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  width: 100%;
}
.global-footer__legal-info p { margin-bottom: 0.25rem; }
.global-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.global-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 50;
  box-shadow: var(--shadow-accent);
  font-size: 0.875rem;
}
.global-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.global-back-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(45,109,246,0.4);
}

/* ============================================
   TIPPY CUSTOM THEME
   ============================================ */
.tippy-box[data-theme~='custom'] {
  background: var(--color-primary);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-family);
  font-size: 0.8125rem;
  line-height: 1.5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  padding: 0.125rem;
}
.tippy-box[data-theme~='custom'] .tippy-arrow { color: var(--color-primary); }
.tippy-box[data-theme~='custom'] .tippy-content { padding: 0.625rem 0.875rem; }

/* ============================================
   RESPONSIVE — TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .home-features__grid { grid-template-columns: repeat(2, 1fr); }
  .home-topics__grid { grid-template-columns: repeat(2, 1fr); }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .business-programs__grid { grid-template-columns: repeat(2, 1fr); }
  .business-delivery__grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section__category-nav { flex-direction: column; }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .global-header__nav { display: flex; }
  .global-header__hamburger { display: none; }

  .home-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  .home-hero__image-side { display: block; }

  .home-features__grid { grid-template-columns: repeat(3, 1fr); }
  .home-topics__grid { grid-template-columns: repeat(4, 1fr); }
  .home-process__steps { gap: 1rem; }

  .about-story__grid { grid-template-columns: 1fr 1fr; }
  .about-values__grid { grid-template-columns: repeat(4, 1fr); }
  .about-approach__inner { grid-template-columns: 1fr 1fr; }

  .business-why__grid { grid-template-columns: 1fr 1fr; }
  .business-programs__grid { grid-template-columns: repeat(3, 1fr); }
  .business-delivery__grid { grid-template-columns: repeat(4, 1fr); }

  .faq-section__layout { grid-template-columns: 240px 1fr; }
  .faq-section__category-nav { flex-direction: column; }
  .faq-cat-btn { text-align: left; border-radius: var(--radius-md); }

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

  .home-cta__inner { padding: var(--space-3xl) var(--space-2xl); }

  .legal-page__body--terms { columns: 1; }
}

/* ============================================
   RESPONSIVE — WIDE (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .home-hero__content-card { padding: var(--space-2xl); }
}