@font-face{
  font-family:"Unbounded";
  src:url("/fonts/Unbounded/static/Unbounded-Regular.ttf") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Unbounded";
  src:url("/fonts/Unbounded/static/Unbounded-Medium.ttf") format("truetype");
  font-weight:500; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Unbounded";
  src:url("/fonts/Unbounded/static/Unbounded-SemiBold.ttf") format("truetype");
  font-weight:600; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Unbounded";
  src:url("/fonts/Unbounded/static/Unbounded-Bold.ttf") format("truetype");
  font-weight:700; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Unbounded";
  src:url("/fonts/Unbounded/static/Unbounded-ExtraBold.ttf") format("truetype");
  font-weight:800; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Unbounded";
  src:url("/fonts/Unbounded/static/Unbounded-Black.ttf") format("truetype");
  font-weight:900; font-style:normal; font-display:swap;
}

:root{
  
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #E9ECFF;
  --ink: #1a1a17;
  --ink-2: #333333;
  --ink-3: #666666;
  --line: #c8ccff;
  --line-2: #a8aeff;

  
  --accent: #808DFD;
  --accent-strong: #534AB7;
  --on-accent: #ffffff;
  --accent-soft: color-mix(in oklab, var(--accent) 16%, var(--bg));
  --accent-line: color-mix(in oklab, var(--accent) 42%, var(--line));

  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --font-accent: "Unbounded", ui-sans-serif, system-ui, sans-serif;
  --display-weight: 800;
  --display-tracking: -0.022em;

  --t-mega: clamp(2.9rem, 4.5vw, 5.6rem);
  --t-xl: clamp(2rem, 4vw, 3.2rem);
  --t-lg: clamp(1.55rem, 2.7vw, 2.25rem);
  --t-md: 1.28rem;

  --pad-y: 104px;          
  --gap: 24px;
  --maxw: 1240px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 14px 40px -22px rgba(128,141,253,0.25);

  --btn-py:14px;
  --btn-px:24px;
  --btn-radius:999px;
  --btn-weight:600;
  --btn-tracking:-0.01em;
  --btn-tt:none;

  
  --accent: #000000;
  --accent-strong: #000000;
  --on-accent: #ffffff;
  --accent-soft: color-mix(in oklab, var(--accent) 8%, var(--bg));
  --accent-line: color-mix(in oklab, var(--accent) 30%, var(--line));
}

[data-accent="clay"] {
  --accent: oklch(0.575 0.085 48);
  --accent-strong: oklch(0.49 0.09 46);
}

[data-accent="indigo"] {
  --accent: oklch(0.545 0.09 264);
  --accent-strong: oklch(0.47 0.1 264);
}

[data-accent="plum"] {
  --accent: oklch(0.52 0.085 332);
  --accent-strong: oklch(0.45 0.09 332);
}

[data-accent="orange"] {
  --accent: oklch(0.66 0.16 52);
  --accent-strong: oklch(0.58 0.17 47);
}

[data-theme="dark"]{
  --bg: #0d0e1a;
  --surface: #13152e;
  --surface-2: #1a1d3a;
  --ink: #f0f0ff;
  --ink-2: #a8aacc;
  --ink-3: #7070a0;
  --line: #2a2d5a;
  --line-2: #3a3d7a;
  --on-accent: #ffffff;
  --accent-soft: color-mix(in oklab, var(--accent) 24%, var(--bg));
  --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 18px 46px -24px rgba(0,0,0,0.7);
}

[data-theme="dark"][data-accent="sage"]   { --accent: #a8b0fe; }

[data-theme="dark"][data-accent="clay"]   { --accent: oklch(0.69 0.09 52); }

[data-theme="dark"][data-accent="indigo"] { --accent: oklch(0.66 0.1 266); }

[data-theme="dark"][data-accent="plum"]   { --accent: oklch(0.64 0.095 332); }

[data-theme="dark"][data-accent="orange"] { --accent: oklch(0.74 0.16 55); }

[data-density="compact"] { --pad-y: 72px;  --gap: 18px; }

[data-density="comfy"]   { --pad-y: 132px; --gap: 30px; }

[data-headfont="serif"] {
  --font-display: "Lora", Georgia, serif;
  --display-weight: 600;
  --display-tracking: -0.005em;
}

[data-btn="pill"] {
  --btn-py:14px;
  --btn-px:24px;
  --btn-radius:999px;
}

[data-btn="compact"] {
  --btn-py:10px;
  --btn-px:18px;
  --btn-radius:999px;
}

[data-btn="soft"] {
  --btn-py:13px;
  --btn-px:22px;
  --btn-radius:12px;
}

[data-btn="sharp"] {
  --btn-py:14px;
  --btn-px:26px;
  --btn-radius:4px;
}

[data-btn="wide"] {
  --btn-py:15px;
  --btn-px:38px;
  --btn-radius:999px;
}

[data-btn="mono"] {
  --btn-py:13px;
  --btn-px:22px;
  --btn-radius:8px;
  --btn-weight:500;
  --btn-tracking:0.04em;
  --btn-tt:uppercase;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:var(--font-body); font-size:17px; line-height:1.62;
  font-weight:400; -webkit-font-smoothing:antialiased; letter-spacing:-0.005em;
  transition:background .35s ease, color .35s ease;
}

h1,h2,h3 {
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  letter-spacing:var(--display-tracking);
  line-height:1.04;
  margin:0;
  text-wrap:balance;
}

.h2{
    font-size: 24px;
    line-height: normal;
    margin: 25px 0 15px 0;
}

.h3{
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

p{margin:0; text-wrap:pretty;}

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

address{
  font-size: 14px;
}

address a{
  text-decoration: underline;
}

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

figcaption {
  font-size: 0.88rem;
  color: var(--ink-2);
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

figure img {
    cursor: zoom-in;
}

blockquote {
    border-left: 4px solid #6287ae;
    background: linear-gradient(90deg, rgba(127, 119, 221, 0.08) 0%, transparent 100%);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 12px;
    font-weight: 300;
    margin: 20px 0 0 0;
}

cite {
    padding: 5px 0 0 0;
    display: block;
}

#lb {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-out; z-index: 9999;
}

#lb img {
  max-width: 90vw; max-height: 90vh; border-radius: 4px;
}

.wrap {
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}

.mono{font-family:var(--font-mono); font-feature-settings:"ss01";}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font-body); font-weight:400; font-size:14px;
  letter-spacing:var(--btn-tracking); text-transform:var(--btn-tt);
  padding:10px 20px; border-radius:24px; cursor:pointer; border:1px solid transparent;
  transition:color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
  white-space:nowrap;
}

[data-btn="mono"] .btn{ font-family:var(--font-mono); font-size:0.82rem; }

.btn--primary{
  background:var(--accent-two, var(--accent)); color:#fff; border-color:var(--accent-two, var(--accent));
  box-shadow:0 10px 26px -14px var(--accent-two, var(--accent));
}

.btn--primary:hover{
  background:color-mix(in oklab, var(--accent-two, var(--accent)) 85%, #000);
  border-color:color-mix(in oklab, var(--accent-two, var(--accent)) 85%, #000);
  transform:translateY(-2px);
  box-shadow:0 16px 32px -16px var(--accent-two, var(--accent));
}

.pill{
  display:inline-flex; align-items:center; gap:7px; padding:4px 10px; border-radius:20px;
  font-size:0.75rem; font-weight:400; color:var(--ink-2);
  border:1px solid var(--line); background:transparent;
  transition:color .15s ease, border-color .15s ease;
}

.pill:hover{
  background:transparent;
  color:var(--ink);
  border-color:var(--ink);
}

.pill--on{background:var(--accent); color:var(--on-accent); border-color:var(--accent);}

.topbar{
  position:sticky; top:0; z-index:50; background:color-mix(in oklab, var(--bg) 86%, transparent);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border-bottom:1.5px solid transparent; transition:border-color .3s ease, background .3s ease;
}

.topbar .wrap {
  display:flex;
  align-items:center;
  gap:28px;
  height:74px;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
}

.brand .name {
  display:block;
  font-family:var(--font-accent);
  font-weight:700;
  font-size:1.18rem;
  letter-spacing:-0.01em;
  line-height:1;
}

.brand .sub {
  display:block;
  font-family:var(--font-mono);
  font-size:0.62rem;
  color:var(--ink-3);
  letter-spacing:0.02em;
  margin-top:3px;
  white-space:nowrap;
}

.nav {
  display:flex;
  align-items:center;
  gap:4px;
  margin-left:auto;
}

.nav a {
  padding:9px 14px;
  border-radius:9px;
  font-size:0.92rem;
  font-weight:500;
  color:var(--ink-2);
  transition:.15s;
  white-space:nowrap;
}

.nav a:hover{color:var(--ink); background:var(--surface-2);}

.topbar .btn{margin-left:8px;}

.menu-btn {
  display:none;
  margin-left:auto;
  width:44px;
  height:44px;
  border-radius:11px;
  border: transparent;
  background:var(--surface);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}

.menu-btn i {
  width:18px;
  height:2px;
  background:var(--ink);
  border-radius:2px;
}

body.no-scroll{overflow:hidden;}

.drawer-overlay{
  position:fixed; inset:0; z-index:90;
  background:rgba(0,0,0,0.45);
  opacity:0; visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
}

.drawer-overlay.is-open{opacity:1; visibility:visible;}

.drawer{
  position:fixed; top:0; right:0; bottom:0; z-index:91;
  width:min(320px, 82vw);
  background:var(--surface);
  border-left:1.5px solid var(--line);
  box-shadow:-24px 0 48px -24px rgba(0,0,0,0.25);
  transform:translateX(100%);
  transition:transform .3s ease;
  display:flex; flex-direction:column;
  overflow-y:auto;
}

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

.drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 20px;
  border-bottom:1.5px solid var(--line);
}

.drawer-head .name{
  font-family:var(--font-accent);
  font-weight:700;
  font-size:1.05rem;
}

.drawer-close{
  width:36px; height:36px; border-radius:9px;
  border:1.5px solid var(--line);
  background:var(--surface);
  font-size:1.3rem; line-height:1;
  color:var(--ink);
  cursor:pointer;
}

.drawer-nav{
  display:flex; flex-direction:column;
  padding:14px 16px; gap:4px;
}

.drawer-nav a{
  padding:13px 14px;
  border-radius:9px;
  font-size:0.98rem;
  font-weight:500;
  color:var(--ink-2);
}

.drawer-nav a:hover{color:var(--ink); background:var(--surface-2);}

.drawer-nav .btn--primary{
  margin-top:10px;
  text-align:center;
  color:#fff;
}

.drawer-nav .btn--primary:hover{
  color:#fff;
  background:color-mix(in oklab, var(--accent-two, var(--accent)) 85%, #000);
  border-color:color-mix(in oklab, var(--accent-two, var(--accent)) 85%, #000);
}

@media (min-width:881px) {
.drawer, .drawer-overlay{display:none;}
}

.hero{padding:56px 0 78px; position:relative;}

.hero-grid{
  display:grid; grid-template-columns:340px 1fr; gap:56px; align-items:stretch;
}

.hero-stats {
  display:flex;
  flex-wrap:wrap;
  gap: 0;
  align-content:flex-start;
}

section.block{
  padding:var(--pad-y) 0;
}

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

.footer{padding:54px 0 60px; border-top:1.5px solid var(--line);}

.footer .wrap {
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  align-items:center;
}

.footer a{color:var(--ink-2); font-size:0.92rem;}

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

.start{ display:grid; max-width:max-content; }

@media (max-width:880px) {
.nav{display:none;}
.topbar .btn--primary{display:none;}
.menu-btn{display:flex;}
.hero-grid{grid-template-columns:1fr; gap:40px;}
}

@media (max-width:600px) {
.wrap{padding:0 20px;}
:root{--pad-y:64px;}
.hero-stats{gap:24px 32px;}
.footer .wrap{flex-direction:column; align-items:flex-start;}
}

@media (prefers-reduced-motion:reduce) {
*{transition:none !important; animation:none !important;}
html{scroll-behavior:auto;}
}

#heroMedia{
  display: none;
}

#heroMediaClose {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.45); color: #fff;
  border: none; cursor: pointer; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

#heroMediaClose:hover { background: rgba(0,0,0,0.7); }

/* ===== Merged from dzenworkout-method.blade.php inline <style> block ===== */
    :root {
  --bg-page: #f5f7fb;
  --accent: #3b82f6;
  --accent-soft: rgba(59,130,246,0.10);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border-soft: rgba(15,23,42,0.08);
  --border-medium: rgba(15,23,42,0.12);
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 22px 45px rgba(15,23,42,0.10);
  --shadow-small: 0 10px 25px rgba(15,23,42,0.07);
  --transition-fast: 180ms ease-out;
  --container-width: 1120px;

  --section-overlay: linear-gradient(
    to bottom,
    rgba(15,23,42,0.01),
    rgba(15,23,42,0.02)
  );
}

html {
  scroll-behavior: auto;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0, #eef1f8 45%, #eef1f8 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  background: radial-gradient(circle at top left, #ffffff 0, #eef1f8 55%, #eef1f8 100%);
}

section {
  position: relative;
}

/*section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-overlay);
  pointer-events: none;
  z-index: 0;
}*/

section > * {
  position: relative;
  z-index: 1;
}

.services-bg,
.approach {
  background: none !important;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* HERO */

.hero {
  padding: 70px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-small);
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--text-main);
  grid-gap: 10px;
  max-width: max-content;
}

.hero-kicker-pill {
  border-radius: 999px;
  padding: 3px 8px;
  background: linear-gradient(to right, rgba(59,130,246,0.14), rgba(34,197,94,0.14));
  border: 1px solid rgba(59,130,246,0.3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1d4ed8;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text-main);
  line-height: normal;
}

.hero-title span.accent {
  background: linear-gradient(to right, #2563eb, #16a34a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pill {
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border-medium);
  font-size: 12px;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-small);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-secondary {
  border-radius: 999px;
  padding: 9px 18px;
  border: 1px solid var(--border-medium);
  background: var(--white);
  color: var(--text-main);
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-small);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: rgba(15,23,42,0.2);
  transform: translateY(-1px);
}

.hero-meta {
  display: grid;
  grid-gap: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-meta strong {
  color: #2563eb;
  font-weight: 500;
}

.white-txt{ color: var(--text-muted); }

/* HERO RIGHT CARD */

.hero-panel {
  background: var(--white);
  border-radius: 26px;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-soft);
  padding: 20px 10px 18px;
  position: relative;
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero-panel-title {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 600;
}

.hero-flow {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.hero-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-step {
  padding: 9px 10px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-step-badge {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.4);
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.hero-step-body {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-step-body strong {
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
  color: var(--text-main);
}

.hero-stats {
  padding: 10px 10px 9px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--border-soft);
  font-size: 11px;
  color: var(--text-main);
}

.hero-stats-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.hero-stat {
  padding: 7px 8px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border-soft);
}

.hero-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.hero-stat-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.hero-panel-footer {
  display: grid;
  grid-gap: 10px;
  margin-top: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-badge-inline {
    display: grid;
    align-items: center;
    gap: 10px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #15803d;
    grid-template-columns: max-content auto;
    max-width: 135px;
}

/* SECTIONS SHARED */

section { padding: 40px 0; }

.section-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 350px;
}

/* SERVICES */

.services-bg { background: none; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-small);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(59,130,246,0.35);
}

.card-media {
  margin: -16px -16px 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(59,130,246,0.18), rgba(59,130,246,0.04));
  border: 1px solid rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  font-size: 18px;
  margin-bottom: 4px;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.service-text {
  font-size: 13px;
  color: var(--text-muted);
}

.service-meta {
  margin-top: auto;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
}

/* CASES */

.cases { padding-top: 40px; padding-bottom: 40px; }

.cases-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.case-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
}

.case-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.case-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
}

.case-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.metric {
  padding: 8px 9px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--border-soft);
  font-size: 11px;
  color: var(--text-main);
}

.metric strong {
  font-size: 13px;
  display: block;
  margin-bottom: 1px;
  color: #1d4ed8;
}

.case-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.case-logo {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
}

.case-secondary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.case-secondary-item {
  padding: 9px 10px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-small);
}

.case-secondary-item strong {
  display: block;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 2px;
}

/* CTA / CONTACT */

.cta { padding: 40px 0 60px; }

.cta-inner {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(255,255,255,1));
  border-radius: 24px;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 24px;
  align-items: center;
}

.cta-title { font-size: 20px; font-weight: 600; margin-bottom: 6px; color: var(--text-main); }
.cta-text { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cta-point {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-medium);
}

.cta-point span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
}

.cta-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-medium);
  text-align: center;
  box-shadow: var(--shadow-small);
}

.cta-panel .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 14px;
  margin-top: 12px;
}

.cta-panel-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--border-soft);
  padding: 14px 0 20px;
  font-size: 11px;
  color: var(--text-muted);
  background: #f8fafc;
}

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

.footer-links { display: flex; gap: 14px; }
.footer-links a { color: var(--text-muted); }

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: 0; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cases-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .hero { padding-top: 54px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 18px 16px 16px; }
  .hero-panel { border-radius: 22px; }
}

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

/* TABS SECTION */

.approach { padding: 40px 0; }

.tabs-container {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
  overflow-x: auto;
  padding-top: 10px;
}

.tab-btn {
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border-medium);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-small);
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(to right, #3b82f6, #22c55e);
  border-color: transparent;
  color: white;
}


.tab-pane { display: none; animation: fadeIn 0.4s ease-out; }
.tab-pane.active { display: block; }

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

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.tab-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  max-height: 420px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), #f1f5f9);
  border: 2px solid rgba(59,130,246,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(59,130,246,0.12), transparent 70%);
}

.image-placeholder .emoji {
  font-size: 80px;
  position: relative;
  z-index: 2;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

/* Slide 5's photo is taller (2:3) than the other slides' shared 3:4 frame —
   give it its own ratio so it still shows uncropped. */
#tab-5 .tab-image {
  aspect-ratio: 2 / 3;
  max-height: 420px;
}

.tab-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text-main);
}

.tab-points {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.tab-points li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.tabs-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(59,130,246,0.35);
  background: var(--white);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-small);
}

.nav-btn:hover {
  background: #f8fafc;
  border-color: rgba(59,130,246,0.55);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.nav-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.tabs-counter { font-size: 14px; color: var(--text-muted); }

.tabs-counter .current-tab { color: #2563eb; font-weight: 600; font-size: 18px; }

@media (max-width: 900px) {
  .tab-grid { grid-template-columns: 1fr; gap: 30px; }
  .image-placeholder { height: auto; }
  .tab-image { max-height: 320px; }
  .tabs-nav { justify-content: center; }

  #tab-5 .tab-image { max-height: 320px; }
}

@media (max-width: 640px) {
  .tabs-container { padding: 20px; }
  .tab-text h3 { font-size: 18px; }
  .tabs-navigation { flex-direction: column; gap: 15px; }
  .nav-btn { width: 100%; justify-content: center; }
}

/* PRINCIPLES */

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

.principle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-small);
}

.principle-avatar {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(96,165,250,.55), rgba(29,78,216,.15) 45%, transparent 60%),
    linear-gradient(135deg, rgba(34,197,94,.15), rgba(59,130,246,.12)),
    #f1f5f9;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

@media (max-width: 900px) {
  .principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* SOURCES (замена блока "команда") */

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

.source-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-small);
}

@media (max-width: 900px) {
  .sources-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* LEGAL / ORG INFO */

.legal-grid {
  display: grid;
  gap: 24px;
}

.legal-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 20px;
  box-shadow: var(--shadow-small);
}

.legal-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1d4ed8;
}

.legal-list {
  list-style: none;
  padding: 0;
}

.legal-list li {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-left: 2px solid #3b82f6;
  padding-left: 12px;
}

.legal-list strong {
  color: var(--text-main);
  font-weight: 500;
}

/* LINKS */

a:not(.pill):not(.btn-primary):not(.btn-secondary):not(.nav-btn):not(.tab-btn) {
  text-decoration: underline;
  text-decoration-color: rgba(37,99,235,0.35);
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:not(.pill):not(.btn-primary):not(.btn-secondary):not(.nav-btn):not(.tab-btn):hover {
  color: #1d4ed8;
  text-decoration-color: currentColor;
}

/* UTILITIES (extracted from inline styles) */

.link-accent { color: #2563eb; }
.hero-note { font-size: 12px; margin-bottom: 4px; }
.hero-flow--how { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.mt-18 { margin-top: 18px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.text-italic { font-style: italic; }
.justify-center { justify-content: center; }
.services-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cases-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.legal-grid--split { grid-template-columns: minmax(0,1fr) minmax(0,1.3fr); }
.legal-card--center { text-align: center; }

.legal-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 1px solid var(--border-medium);
}

.btn-secondary--sm { padding: 6px 12px; font-size: 12px; }
.bg-white { background: var(--white); }

.btn-secondary--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn-secondary--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.cta-inner--dark .btn-secondary:not(.btn-secondary--ghost):hover {
  background: #eef2ff;
  border-color: transparent;
}

.cta-inner--dark {
  background: radial-gradient(circle at top left, #14203f 0, #020617 70%, #020617 100%);
  border-color: rgba(15,23,42,0.9);
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.text-muted-dark { color: #94a3b8; }
.text-white { color: #fff; }
.text-light { color: #cbd5e1; }

/* Header parity with home page: keep the shared site --accent (black)
   inside the topbar/drawer, isolated from this page's local blue accent. */
.topbar, .drawer {
  --accent: #000000;
  --accent-two: #000000;
}
