:root {
  --bg: #14120F;
  --ink: #14120F;
  --paper: #F4F1EA;
  --muted: rgba(20,18,15,0.62);
  --c1: #D9642F;
  --c2: #B23A5C;
  --c3: #3D4A99;
  --c4: #5B6B39;
  --c5: #A9822F;
  --navy: #0a1628;
  --navy-light: #132240;
  --navy-mid: #1a3050;
  --navy-soft: #1e3a5f;
  --gold: #c8a96e;
  --gold-light: #dfc08a;
  --gold-dark: #a8894e;
  --gold-glow: rgba(200, 169, 110, 0.15);
  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #f5f0e8;
  --light-gray: #f0eeeb;
  --gray-100: #e8e6e1;
  --gray-200: #d1cec8;
  --gray-300: #b0aba3;
  --gray-400: #8a857d;
  --gray-500: #6b665e;
  --gray-600: #4d4943;
  --gray-700: #33302b;
  --gray-800: #1f1d1a;
  --dark: #121212;
  --success: #2d8a4e;
  --warning: #c8952e;
  --error: #c0392b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 24px 60px rgba(10, 22, 40, 0.16);
  --shadow-gold: 0 8px 32px rgba(200, 169, 110, 0.2);
  --shadow-card: 0 2px 20px rgba(10, 22, 40, 0.06), 0 8px 32px rgba(10, 22, 40, 0.04);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
  --container-max: 1280px;
  --container-narrow: 960px;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 20px;
  --first-creator-color: #38178c;
  --second-creator-color: #1788a5;
  --third-creator-color: #5120c7;
  --forth-creator-color: #210d5c;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 110, 0.14), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f6f3ec 100%);
  line-height: 1.7;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a, button {
  -webkit-tap-highlight-color: transparent;
}
a, button, input, select, textarea {
  touch-action: manipulation;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
p {
  color: var(--gray-500);
  line-height: 1.8;
  font-size: 1.05rem;
}
.subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container-narrow {
  max-width: var(--container-narrow);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.9rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: all var(--transition-base);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-plate {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-plate:hover {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}
.section-header p {
  margin-top: var(--space-lg);
  font-size: 1.1rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
}
.pill-gold {
  background: var(--gold-glow);
  color: var(--gold-dark);
}
.pill-navy {
  background: rgba(10, 22, 40, 0.06);
  color: var(--navy);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  padding-top: calc(1rem + env(safe-area-inset-top, 0px));
  transition: all var(--transition-base);
}
.navbar.scrolled {
  background: linear-gradient(135deg, #183356 0%, #0f2440 100%);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 10px 30px rgba(8, 18, 35, 0.32);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.88); }
.navbar.scrolled .nav-logo { color: var(--white); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.nav-logo,
.Nav-Logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: color var(--transition-fast);
}
.nav-logo span,
.Nav-Logo span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-link {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active {
  color: var(--white);
}
.nav-link.active::after {
  width: 100%;
}
.nav-cta {
  margin-left: var(--space-lg);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 2px;
}
.navbar.scrolled .nav-toggle span {
  background: var(--white);
}
.scrolled .nav-link { color: rgba(255,255,255,0.88); }
.scrolled .nav-link:hover { color: var(--gold-light); }
.scrolled .nav-link.active { color: var(--white); }
.leg-hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(200,169,110,0.22), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(200,169,110,0.08), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 62%, var(--navy-soft) 100%);
  padding: calc(var(--space-6xl) + 3rem) 0 var(--space-4xl);
  overflow: hidden;
}
.leg-hero::before {
  content: '';
  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: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 30% 40%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 30% 40%, #000, transparent 75%);
  pointer-events: none;
}
.leg-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, #fbfaf7);
  pointer-events: none;
}
.leg-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}
.leg-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.leg-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}
.leg-hero-sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.62);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: var(--space-xl);
}
.leg-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.leg-hero-note {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.leg-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-lg);
}
.leg-breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.leg-breadcrumb a:hover { color: var(--gold-light); }
.leg-breadcrumb-sep { color: var(--gold); opacity: 0.7; }
.leg-seal {
  width: 176px;
  height: 176px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(200,169,110,0.25));
}
.leg-seal .leg-seal-ring-text { fill: var(--gold-light); }
.leg-seal .leg-seal-core { fill: var(--gold); }
.leg-seal .leg-seal-ring { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.6; }
@media (prefers-reduced-motion: no-preference) {
  .leg-seal { animation: leg-seal-spin 70s linear infinite; }
}
@keyframes leg-seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.leg-intro {
  padding: var(--space-md) 0 var(--space-4xl);
}
.leg-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}
.leg-intro-text {
  position: relative;
}
.leg-intro-text h2 {
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.leg-intro-text p {
  margin-bottom: var(--space-lg);
  font-size: 1.08rem;
  line-height: 1.85;
}
.leg-intro-image {
  position: relative;
}
.leg-intro-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.leg-intro-image:hover img {
  transform: scale(1.02);
}
.leg-intro-image::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 2px solid var(--gold);
  opacity: 0.15;
  pointer-events: none;
}
.leg-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-100);
}
.leg-stat {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: default;
}
.leg-stat:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.leg-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  transition: color var(--transition-base);
}
.leg-stat:hover .leg-stat-num {
  color: var(--gold-dark);
}
.leg-stat-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.4rem;
}
.leg-areas {
  padding: var(--space-md) 0 var(--space-4xl);
}
.leg-practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.practice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  padding: var(--space-2xl);
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.practice-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(10, 22, 40, 0.18), 0 12px 24px rgba(10, 22, 40, 0.08);
  border-color: rgba(200,169,110,0.3);
}
.practice-card:hover::before { opacity: 1; }
.practice-card:hover::after { opacity: 1; }
.practice-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
}
.practice-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--cream), var(--off-white));
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--gold-dark);
  transition: all var(--transition-base);
}
.practice-card:hover .practice-card-icon {
  background: var(--gold-glow);
  border-color: rgba(200,169,110,0.3);
  color: var(--gold);
}
.practice-card-num {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.practice-card-header h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 0;
  transition: color var(--transition-base);
}
.practice-card:hover .practice-card-header h3 {
  color: var(--gold-dark);
}
.practice-card-list {
  display: flex;
  flex-direction: column;
}
.practice-card-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.2rem var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
}
.practice-card-list li:hover {
  background: linear-gradient(90deg, rgba(200,169,110,0.08), transparent);
  padding-left: var(--space-lg);
}
.practice-mark {
  color: var(--gold-dark);
  font-size: 1rem;
  padding-top: 3px;
  font-weight: 600;
  transition: transform var(--transition-fast);
}
.practice-card-list li:hover .practice-mark {
  transform: translateX(3px);
  color: var(--gold);
}
.practice-card-list strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.practice-card-list p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}
.leg-process {
  padding: var(--space-md) 0 var(--space-4xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(200,169,110,0.06), transparent 50%),
    var(--off-white);
}
.leg-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.leg-process-step {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.leg-process-step:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.leg-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-lg);
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}
.leg-process-step:hover .leg-process-num {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(200,169,110,0.3);
  transform: scale(1.1);
}
.leg-process-step h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.leg-process-step p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.65;
}
.leg-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.5;
}
.leg-cta {
  padding: var(--space-md) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.leg-cta-inner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, var(--space-3xl));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.leg-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 100%, rgba(200,169,110,0.18), transparent 50%),
    radial-gradient(circle at 10% 0%, rgba(200,169,110,0.08), transparent 40%);
  pointer-events: none;
}
.leg-cta-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}
.leg-cta-inner > * { position: relative; }
.leg-cta h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.leg-cta p {
  color: rgba(255,255,255,0.6);
  max-width: 52ch;
  margin: 0;
  font-size: 1.05rem;
}
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-4xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo {
  margin-bottom: var(--space-lg);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
  font-size: 0.95rem;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.footer h5 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.footer-links li {
  margin-bottom: var(--space-sm);
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}
.footer-contact li i {
  color: var(--gold);
  margin-top: 4px;
  min-width: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-accent);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links a:hover { color: var(--gold); }
.creator-company {
  background: linear-gradient(135deg, var(--first-creator-color), var(--second-creator-color), var(--third-creator-color), var(--forth-creator-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
}
.leg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.leg-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.leg-reveal-delay-1 { transition-delay: 0.1s; }
.leg-reveal-delay-2 { transition-delay: 0.2s; }
.leg-reveal-delay-3 { transition-delay: 0.3s; }
.leg-reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .leg-reveal { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 1024px) {
  .leg-hero-grid { grid-template-columns: 1fr; }
  .leg-seal { width: 112px; height: 112px; margin: 0 auto; }
  .leg-hero { padding: calc(var(--space-5xl) + 2rem) 0 var(--space-3xl); }
  .leg-intro-grid { grid-template-columns: 1fr; }
  .leg-intro-image { order: -1; }
  .leg-intro-image img { height: 340px; }
  .leg-practice-grid { grid-template-columns: 1fr; }
  .leg-process-grid { grid-template-columns: 1fr 1fr; }
  .leg-process-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .leg-hero { padding: calc(var(--space-5xl) + 2rem) 0 var(--space-3xl); }
  .leg-hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
  .leg-hero-actions { flex-direction: column; align-items: stretch; }
  .leg-hero-actions .btn { width: 100%; justify-content: center; min-height: 48px; }
  .leg-areas { padding: var(--space-2xl) 0; }
  .practice-card-header { grid-template-columns: 1fr; }
  .practice-card-icon { display: none; }
  .leg-process-grid { grid-template-columns: 1fr; }
  .leg-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .leg-cta .btn { width: 100%; min-height: 48px; }
  .leg-intro-stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
  .leg-stat { padding: var(--space-md) var(--space-sm); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: var(--space-sm); }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px var(--space-xl) var(--space-xl);
    gap: var(--space-md);
    transition: right 0.4s var(--ease-out);
    z-index: 1001;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: rgba(255,255,255,0.8) !important; min-height: 44px; display: flex; align-items: center; }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-cta { margin-left: 0; margin-top: var(--space-md); }
  .nav-cta .btn { width: 100%; min-height: 48px; }
}
@media (max-width: 480px) {
  .leg-hero h1 { font-size: 2rem; }
  .leg-intro-stats { grid-template-columns: 1fr; gap: var(--space-md); }
  .leg-hero-actions .btn { width: 100%; }
}