/* ============================================================
   ZYNTRALIS — Institutional Communication Consultancy
   Complete Stylesheet — Elevated Cards Design System
   ============================================================ */


:root {
  
  --ink-900: #0f1623;
  --ink-800: #1a2336;
  --ink-700: #243047;
  --ink-600: #3a4a63;
  --ink-500: #5a6a83;
  --ink-400: #8a9ab3;
  --ink-300: #b8c4d4;
  --ink-200: #dce3ec;
  --ink-100: #eef1f6;
  --ink-50: #f5f7fa;

  --canvas-bg: #f2f5f9;
  --surface-0: #ffffff;
  --surface-1: #f8fafc;

  --primary: #1a4f8a;
  --primary-dark: #123968;
  --primary-light: #2a6ab5;
  --primary-muted: #e8f0fb;

  --accent: #c8873a;
  --accent-dark: #a86c28;
  --accent-light: #e8a558;
  --accent-muted: #fdf3e7;

  --secondary: #2d7a6f;
  --secondary-dark: #1f5a52;
  --secondary-light: #3d9a8d;
  --secondary-muted: #e6f4f2;

  --success: #2d7a6f;
  --error: #c0392b;
  --warning: #c8873a;

  
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: clamp(2rem, 4vw, 3rem);
  --text-5xl: clamp(2.5rem, 5vw, 3.75rem);
  --text-hero: clamp(2.8rem, 6vw, 4.5rem);

  
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  
  --shadow-0: none;
  --shadow-1:
    0 1px 2px rgba(15, 22, 35, 0.04),
    0 2px 4px rgba(15, 22, 35, 0.04);
  --shadow-2:
    0 2px 4px rgba(15, 22, 35, 0.05),
    0 4px 8px rgba(15, 22, 35, 0.06),
    0 1px 2px rgba(15, 22, 35, 0.04);
  --shadow-3:
    0 4px 8px rgba(15, 22, 35, 0.06),
    0 8px 16px rgba(15, 22, 35, 0.08),
    0 2px 4px rgba(15, 22, 35, 0.04);
  --shadow-4:
    0 8px 16px rgba(15, 22, 35, 0.08),
    0 16px 32px rgba(15, 22, 35, 0.10),
    0 4px 8px rgba(15, 22, 35, 0.05);
  --shadow-5:
    0 16px 32px rgba(15, 22, 35, 0.10),
    0 32px 64px rgba(15, 22, 35, 0.12),
    0 8px 16px rgba(15, 22, 35, 0.06);
  --shadow-accent:
    0 4px 12px rgba(200, 135, 58, 0.25),
    0 8px 24px rgba(200, 135, 58, 0.15);
  --shadow-primary:
    0 4px 12px rgba(26, 79, 138, 0.25),
    0 8px 24px rgba(26, 79, 138, 0.15);

  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;
  --t-xslow: 600ms;

  
  --nav-height: 72px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-800);
  background-color: var(--canvas-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--t-base) var(--ease-out);
}

a:hover { color: var(--primary-light); }

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--ink-900);
  font-weight: 700;
}


.cookie-shelf {
  background: var(--ink-900);
  color: var(--ink-200);
  padding: var(--sp-3) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  flex-wrap: wrap;
  transition: all var(--t-slow) var(--ease-out);
  overflow: hidden;
}

.cookie-shelf.hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.cookie-shelf p {
  flex: 1;
  min-width: 200px;
  color: var(--ink-300);
}

.cookie-shelf a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-shelf a:hover { color: var(--accent); }

.cookie-shelf-actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--t-base) var(--ease-out);
  min-height: 32px;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-btn-accept:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--ink-300);
  border-color: var(--ink-600);
}

.cookie-btn-decline:hover {
  border-color: var(--ink-400);
  color: var(--ink-100);
}


.nav-canvas {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-0);
  border-bottom: 1px solid var(--ink-200);
  transition: box-shadow var(--t-base) var(--ease-out);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img,
.nav-brand svg {
  height: 36px;
  width: auto;
}

.nav-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-links a {
  padding: var(--sp-2) var(--sp-3);
  color: var(--ink-600);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--ink-100);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-2);
}

.lang-btn {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-500);
  padding: 3px var(--sp-2);
  border-radius: var(--radius-full);
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none;
}

.lang-btn:hover { color: var(--primary); }

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

.lang-divider {
  color: var(--ink-300);
  font-size: var(--text-xs);
}


.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--t-base) var(--ease-out);
  box-shadow: var(--shadow-primary);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-4);
}


.nav-progress {
  height: 2px;
  background: var(--ink-100);
  position: relative;
}

.nav-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 50ms linear;
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--radius-md);
  transition: background var(--t-base);
}

.nav-hamburger:hover { background: var(--ink-100); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease-out);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 35, 0.5);
  backdrop-filter: blur(2px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow) var(--ease-out);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100dvh;
  background: var(--ink-900);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform var(--t-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer-panel.open {
  transform: translateX(0);
}

.drawer-header {
  padding: var(--sp-6);
  border-bottom: 1px solid var(--ink-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.drawer-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: var(--text-base);
}

.drawer-close {
  width: 36px;
  height: 36px;
  background: var(--ink-700);
  border: none;
  border-radius: var(--radius-md);
  color: var(--ink-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.drawer-close:hover {
  background: var(--ink-600);
  color: #fff;
}

.drawer-nav {
  padding: var(--sp-6);
  flex: 1;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4);
  color: var(--ink-300);
  font-size: var(--text-base);
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all var(--t-base) var(--ease-out);
  margin-bottom: var(--sp-1);
  opacity: 0;
  transform: translateX(-16px);
}

.drawer-panel.open .drawer-nav a {
  opacity: 1;
  transform: translateX(0);
}

.drawer-nav a:nth-child(1) { transition-delay: 100ms; }
.drawer-nav a:nth-child(2) { transition-delay: 150ms; }
.drawer-nav a:nth-child(3) { transition-delay: 200ms; }
.drawer-nav a:nth-child(4) { transition-delay: 250ms; }
.drawer-nav a:nth-child(5) { transition-delay: 300ms; }
.drawer-nav a:nth-child(6) { transition-delay: 350ms; }

.drawer-nav a:hover,
.drawer-nav a.active {
  color: #fff;
  background: var(--ink-700);
}

.drawer-nav a i {
  width: 20px;
  color: var(--accent);
  font-size: var(--text-sm);
}

.drawer-footer {
  padding: var(--sp-6);
  border-top: 1px solid var(--ink-700);
}

.drawer-lang {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.drawer-lang span {
  color: var(--ink-500);
  font-size: var(--text-sm);
}

.drawer-lang-btn {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-400);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--ink-700);
  transition: all var(--t-base);
  text-decoration: none;
}

.drawer-lang-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.drawer-lang-btn:hover:not(.active) {
  border-color: var(--ink-500);
  color: var(--ink-200);
}


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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  width: 100%;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}


.stage {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--sp-16)) 0 0;
}

.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 79, 138, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 135, 58, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.stage-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--sp-6) var(--sp-16);
  max-width: 860px;
  margin: 0 auto;
}

.stage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200, 135, 58, 0.15);
  border: 1px solid rgba(200, 135, 58, 0.3);
  color: var(--accent-light);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
}

.stage-eyebrow i {
  font-size: var(--text-xs);
}

.stage h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}

.stage h1 .highlight {
  color: var(--accent-light);
  position: relative;
}

.stage-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-300);
  max-width: 640px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

.stage-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-base);
  transition: all var(--t-base) var(--ease-out);
  box-shadow: var(--shadow-accent);
  border: 2px solid var(--accent);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  background: transparent;
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  transition: all var(--t-base) var(--ease-out);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--t-base) var(--ease-out);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--primary-muted);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--t-base) var(--ease-out);
  border: none;
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}


.stage-trust {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-5) var(--sp-6);
}

.stage-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--ink-300);
  font-size: var(--text-sm);
  font-weight: 500;
}

.trust-item i {
  color: var(--accent-light);
  font-size: var(--text-base);
  flex-shrink: 0;
}


.section {
  padding: var(--sp-16) 0;
}

.section-sm {
  padding: var(--sp-10) 0;
}

.section-lg {
  padding: var(--sp-24) 0;
}

.section-dark {
  background: var(--ink-900);
}

.section-mid {
  background: var(--ink-800);
}

.section-light {
  background: var(--surface-0);
}

.section-tinted {
  background: var(--ink-50);
}

.section-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.section-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.section-header p {
  font-size: var(--text-md);
  color: var(--ink-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-header h2,
.section-mid .section-header h2 {
  color: #fff;
}

.section-dark .section-header p,
.section-mid .section-header p {
  color: var(--ink-400);
}


.shelf {
  display: grid;
  gap: var(--sp-6);
}

.shelf-2 { grid-template-columns: repeat(2, 1fr); }
.shelf-3 { grid-template-columns: repeat(3, 1fr); }
.shelf-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-4);
  border-color: var(--ink-200);
}

.card:hover::before {
  opacity: 1;
}


.card:has(img) {
  padding: 0;
  overflow: hidden;
}

.card:has(img) .card-body {
  padding: var(--sp-6);
}

.card:has(img):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-5);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.card-icon-primary {
  background: var(--primary-muted);
  color: var(--primary);
}

.card-icon-accent {
  background: var(--accent-muted);
  color: var(--accent);
}

.card-icon-secondary {
  background: var(--secondary-muted);
  color: var(--secondary);
}

.card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--ink-900);
}

.card p {
  color: var(--ink-600);
  line-height: 1.65;
  font-size: var(--text-sm);
}


.spotlight {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-color: transparent;
}

.spotlight h3,
.spotlight p,
.spotlight .card-icon { color: #fff; }

.spotlight .card-icon {
  background: rgba(255,255,255,0.15);
}

.spotlight::before {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}


.gallery-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(26, 79, 138, 0.04));
  transition: height var(--t-slow) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-4);
  border-color: var(--primary-muted);
}

.service-card:hover::after {
  height: 100%;
}

.service-number {
  font-family: var(--font-head);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--ink-100);
  line-height: 1;
  margin-bottom: var(--sp-3);
  transition: color var(--t-base);
}

.service-card:hover .service-number {
  color: var(--primary-muted);
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--ink-900);
}

.service-card p {
  color: var(--ink-600);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.service-tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: var(--primary-muted);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
}


.gallery-photos {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--sp-4);
}

.photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 22, 35, 0.5) 100%);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.photo-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-5);
}

.photo-frame:hover::after {
  opacity: 1;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-xslow) var(--ease-out);
}

.photo-frame:hover img {
  transform: scale(1.04);
}

.photo-frame-a { grid-column: span 7; grid-row: span 2; height: 380px; }
.photo-frame-b { grid-column: span 5; height: 180px; }
.photo-frame-c { grid-column: span 5; height: 180px; }


.mosaic-row {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.mosaic-2-1 { grid-template-columns: 2fr 1fr; }
.mosaic-1-2 { grid-template-columns: 1fr 2fr; }
.mosaic-equal { grid-template-columns: repeat(3, 1fr); }
.mosaic-4 { grid-template-columns: repeat(4, 1fr); }

.mosaic-card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  transition: all var(--t-slow) var(--ease-out);
}

.mosaic-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-2px);
}

.mosaic-card-dark {
  background: var(--ink-900);
  border-color: var(--ink-700);
}

.mosaic-card-dark h3,
.mosaic-card-dark p { color: var(--ink-200); }

.mosaic-card-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: transparent;
}

.mosaic-card-accent h3,
.mosaic-card-accent p { color: #fff; }

.mosaic-card-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}

.mosaic-card-primary h3,
.mosaic-card-primary p { color: #fff; }


.tab-stage {
  background: var(--surface-0);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--ink-200);
  overflow: hidden;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--ink-200);
  background: var(--ink-50);
  padding: var(--sp-2);
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: var(--sp-3) var(--sp-5);
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-500);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
}

.tab-btn i {
  font-size: var(--text-sm);
}

.tab-btn:hover {
  color: var(--primary);
  background: var(--primary-muted);
}

.tab-btn.active {
  background: var(--surface-0);
  color: var(--primary);
  box-shadow: var(--shadow-2);
}

.tab-content {
  padding: var(--sp-8);
}

.tab-panel {
  display: none;
  animation: tabReveal 300ms var(--ease-out) forwards;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

@keyframes tabReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-text h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.tab-panel-text p {
  color: var(--ink-600);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.tab-panel-text ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.tab-panel-text ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--ink-700);
  font-size: var(--text-sm);
}

.tab-panel-text ul li i {
  color: var(--accent);
  font-size: var(--text-sm);
  margin-top: 2px;
  flex-shrink: 0;
}

.tab-panel-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
}

.tab-panel-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}


.process-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.process-shelf::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-muted), var(--accent-muted));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--surface-0);
  border: 3px solid var(--primary-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-2);
  transition: all var(--t-base) var(--ease-out);
}

.process-step:hover .process-num {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--ink-900);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.6;
}


.audience-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.audience-card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  border-left: 4px solid var(--primary);
  transition: all var(--t-slow) var(--ease-out);
}

.audience-card:nth-child(2) { border-left-color: var(--accent); }
.audience-card:nth-child(3) { border-left-color: var(--secondary); }

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

.audience-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-4);
}

.audience-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.audience-card p {
  color: var(--ink-600);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--ink-700);
}

.audience-list li i {
  color: var(--accent);
  font-size: 10px;
}


.cta-stage {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--primary-dark) 60%, var(--ink-900) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-5);
}

.cta-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 135, 58, 0.1) 0%, transparent 70%);
}

.cta-stage h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-stage p {
  color: var(--ink-300);
  font-size: var(--text-md);
  max-width: 540px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
  position: relative;
}

.cta-stage-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  position: relative;
}


.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--ink-200);
  height: 480px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-wrap {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--ink-200);
}

.contact-form-wrap h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.contact-form-wrap > p {
  color: var(--ink-500);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: var(--sp-2);
}

.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: var(--surface-0);
  color: var(--ink-900);
  font-size: var(--text-sm);
  transition: all var(--t-base) var(--ease-out);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 79, 138, 0.1);
}

.form-control::placeholder {
  color: var(--ink-400);
}

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


.form-group:has(:focus) label {
  color: var(--primary);
}

.form-group:has(:invalid:not(:placeholder-shown)) .form-control {
  border-color: var(--error);
}

.form-group:has(:valid:not(:placeholder-shown)) .form-control {
  border-color: var(--success);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.5;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.privacy-check a {
  color: var(--primary);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: var(--sp-4);
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  margin-top: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 52px;
  box-shadow: var(--shadow-primary);
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-4);
}


.iti, #phone { width: 100%; }
.iti__flag-container { z-index: 10; }


.pricing-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.pricing-card {
  background: var(--surface-0);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
}

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

.pricing-card.featured {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow-5);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-5);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.pricing-tier {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.pricing-card.featured .pricing-tier {
  color: rgba(255,255,255,0.7);
}

.pricing-name {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: var(--sp-3);
}

.pricing-card.featured .pricing-name { color: #fff; }

.pricing-desc {
  color: var(--ink-500);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--ink-200);
}

.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--ink-700);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.85);
}

.pricing-features li i {
  color: var(--accent);
  font-size: var(--text-sm);
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
  color: var(--accent-light);
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: all var(--t-base) var(--ease-out);
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.pricing-cta:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.pricing-card.featured .pricing-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pricing-card.featured .pricing-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-accent);
}


.team-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.team-card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  transition: all var(--t-slow) var(--ease-out);
}

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

.team-photo {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-xslow) var(--ease-out);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-body {
  padding: var(--sp-6);
}

.team-body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}

.team-role {
  font-size: var(--text-sm);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.team-body p {
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.65;
}


.values-shelf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.value-card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  display: flex;
  gap: var(--sp-5);
  transition: all var(--t-slow) var(--ease-out);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
  border-color: var(--primary-muted);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--primary-muted);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  flex-shrink: 0;
  transition: all var(--t-base);
}

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

.value-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.65;
}


.formats-shelf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.format-card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.format-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
}

.format-card:nth-child(2)::before { background: var(--accent); }
.format-card:nth-child(3)::before { background: var(--secondary); }
.format-card:nth-child(4)::before { background: var(--primary-light); }

.format-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.format-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-muted);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
}

.format-card:nth-child(2) .format-icon {
  background: var(--accent-muted);
  color: var(--accent);
}

.format-card:nth-child(3) .format-icon {
  background: var(--secondary-muted);
  color: var(--secondary);
}

.format-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink-900);
}

.format-card p {
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.format-tag {
  padding: 3px var(--sp-3);
  background: var(--ink-100);
  color: var(--ink-600);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
}


.timeline {
  position: relative;
  padding-left: var(--sp-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--sp-8);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: calc(-2rem - 8px);
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--primary);
  border: 3px solid var(--surface-0);
  box-shadow: var(--shadow-1);
  transition: all var(--t-base);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent);
  transform: scale(1.3);
}

.timeline-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.timeline-item p {
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.65;
}

.timeline-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-muted);
  padding: 2px var(--sp-2);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.05em;
}


.thanks-stage {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: var(--sp-24) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: var(--text-3xl);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.thanks-stage h1 {
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--sp-4);
  position: relative;
}

.thanks-stage p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.thanks-content {
  padding: var(--sp-16) var(--sp-6);
  text-align: center;
  background: var(--surface-0);
}

.thanks-content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-4);
}

.thanks-content p {
  color: var(--ink-600);
  max-width: 480px;
  margin: 0 auto var(--sp-8);
}


.legal-header {
  background: var(--ink-900);
  padding: var(--sp-16) 0 var(--sp-12);
}

.legal-header h1 {
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--sp-3);
}

.legal-header p {
  color: var(--ink-400);
  font-size: var(--text-sm);
}

.legal-body {
  padding: var(--sp-16) 0;
  background: var(--surface-0);
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin: var(--sp-8) 0 var(--sp-3);
  color: var(--ink-900);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--ink-100);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin: var(--sp-5) 0 var(--sp-2);
  color: var(--ink-800);
}

.legal-content p {
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  font-size: var(--text-sm);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-6);
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  color: var(--ink-700);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0 var(--sp-6);
  font-size: var(--text-sm);
}

.cookie-table th {
  background: var(--ink-50);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-weight: 700;
  color: var(--ink-800);
  border-bottom: 2px solid var(--ink-200);
}

.cookie-table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-700);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:hover td { background: var(--ink-50); }


.site-footer {
  background: var(--ink-900);
  color: var(--ink-400);
  margin-top: auto;
}

.footer-main {
  padding: var(--sp-16) 0 var(--sp-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  text-decoration: none;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: var(--text-lg);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: var(--text-sm);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item a {
  color: var(--ink-400);
  transition: color var(--t-base);
}

.footer-contact-item a:hover { color: var(--ink-200); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-5);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  color: var(--ink-500);
  font-size: var(--text-sm);
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-links a:hover {
  color: var(--ink-200);
  transform: translateX(3px);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--ink-800);
}

.footer-bottom {
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--ink-600);
}

.footer-legal {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--ink-600);
  transition: color var(--t-base);
}

.footer-legal a:hover { color: var(--ink-400); }


.page-hero {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26, 79, 138, 0.25) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.page-hero p {
  color: var(--ink-300);
  font-size: var(--text-md);
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  font-size: var(--text-sm);
}

.breadcrumb a {
  color: var(--ink-400);
  transition: color var(--t-base);
}

.breadcrumb a:hover { color: var(--ink-200); }

.breadcrumb span {
  color: var(--ink-600);
}

.breadcrumb-current {
  color: var(--ink-300);
}


.stat-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.stat-card {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-200);
  transition: all var(--t-slow) var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}

.stat-icon {
  font-size: var(--text-2xl);
  color: var(--primary);
  margin-bottom: var(--sp-3);
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-800);
  line-height: 1.3;
}

.stat-sub {
  font-size: var(--text-xs);
  color: var(--ink-500);
  margin-top: var(--sp-1);
}


section:has(.spotlight) {
  background: var(--ink-50);
}


.shelf:has(.card img) .card {
  padding: 0;
}


.contact-form-wrap:has(:focus) {
  border-color: var(--primary-muted);
  box-shadow: var(--shadow-3), 0 0 0 3px rgba(26, 79, 138, 0.05);
}


.section:has(.featured) {
  background: var(--ink-50);
}


.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--ink-500); }
.text-white { color: #fff; }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }

.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }
.mt-8 { margin-top: var(--sp-8); }

.gap-4 { gap: var(--sp-4); }

.flex { display: flex; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}

.badge-primary {
  background: var(--primary-muted);
  color: var(--primary);
}

.badge-accent {
  background: var(--accent-muted);
  color: var(--accent-dark);
}

.badge-secondary {
  background: var(--secondary-muted);
  color: var(--secondary-dark);
}

.divider {
  border: none;
  border-top: 1px solid var(--ink-200);
  margin: var(--sp-8) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .gallery-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-shelf {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-shelf::before { display: none; }
}

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .shelf-3,
  .shelf-4,
  .gallery-services,
  .audience-shelf,
  .team-shelf,
  .pricing-shelf {
    grid-template-columns: 1fr;
  }

  .shelf-2 {
    grid-template-columns: 1fr;
  }

  .mosaic-2-1,
  .mosaic-1-2,
  .mosaic-equal,
  .mosaic-4 {
    grid-template-columns: 1fr;
  }

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

  .contact-map {
    height: 300px;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .photo-frame-a,
  .photo-frame-b,
  .photo-frame-c {
    grid-column: span 12;
    height: 220px;
  }

  .stat-shelf {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-shelf,
  .formats-shelf {
    grid-template-columns: 1fr;
  }

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

  .stage-trust-inner {
    gap: var(--sp-5);
  }

  .trust-item {
    font-size: var(--text-xs);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .cta-stage {
    padding: var(--sp-10) var(--sp-6);
  }
}

@media (max-width: 600px) {
  :root {
    --sp-16: 3rem;
    --sp-20: 4rem;
    --sp-24: 5rem;
  }

  .container,
  .container-sm {
    padding: 0 var(--sp-4);
  }

  .stage h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .stage-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stage-actions .btn-primary,
  .stage-actions .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .stage-trust-inner {
    flex-direction: column;
    gap: var(--sp-3);
    align-items: flex-start;
  }

  .section-header h2 {
    font-size: var(--text-3xl);
  }

  .stat-shelf {
    grid-template-columns: 1fr 1fr;
  }

  .process-shelf {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    justify-content: center;
  }

  .tab-nav {
    gap: var(--sp-1);
  }

  .tab-btn {
    padding: var(--sp-2) var(--sp-3);
    font-size: var(--text-xs);
  }

  .cookie-shelf {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: var(--sp-12) 0;
  }

  .legal-header {
    padding: var(--sp-12) 0 var(--sp-8);
  }
}


[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}