  :root{
    --navy-950:#0b1930;
    --navy-900:#0f1e33;
    --navy-800:#16283f;
    --navy-700:#1f3552;
    --gold-600:#a9832f;
    --gold-500:#c49a42;
    --gold-400:#d7b667;
    --gold-300:#dfc17e;
    --gold-200:#ecd9a8;
    --cream-50:#faf5e9;
    --cream-100:#f2ead9;
    --ink-900:#1a2130;
    --ink-700:#333c4c;
    --slate-500:#616b7a;
    --slate-300:#9aa2ae;
    --white:#ffffff;
    --line:rgba(26,33,48,0.1);
    --line-dark:rgba(255,255,255,0.12);
    --radius-lg:20px;
    --radius-md:14px;
    --radius-sm:8px;
    --shadow-soft:0 30px 60px -25px rgba(11,25,48,0.35);
    --ease:cubic-bezier(.22,.61,.36,1);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}

  /* ---------- SCROLLBAR ---------- */
  html{ scrollbar-width:auto; scrollbar-color:var(--gold-500) var(--navy-900); }
  ::-webkit-scrollbar{ width:14px; height:14px; }
  ::-webkit-scrollbar-track{ background:var(--navy-900); }
  ::-webkit-scrollbar-thumb{
    background:var(--gold-500); border-radius:8px;
    border:3px solid var(--navy-900); background-clip:padding-box;
  }
  ::-webkit-scrollbar-thumb:hover{ background:var(--gold-400); }
  body{
    margin:0;
    font-family:'Inter', sans-serif;
    color:var(--ink-900);
    background:var(--cream-50);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  .container{
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding-left:32px;
    padding-right:32px;
  }
  h1,h2,h3,h4{
    font-family:'Manrope', sans-serif;
    font-weight:800;
    line-height:1.05;
    margin:0;
    letter-spacing:-0.01em;
  }
  p{margin:0; line-height:1.65;}
  .eyebrow{
    font-family:'Manrope', sans-serif;
    font-style:normal;
    font-weight:700;
    font-size:12px;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--gold-400);
  }
  ::selection{ background:var(--gold-200); color:var(--navy-950); }
  :focus-visible{ outline:2px solid var(--gold-500); outline-offset:3px; }
  section[id], .lead-card{ scroll-margin-top:96px; }

  .skip-link{
    position:absolute; left:16px; top:-60px; z-index:200;
    background:var(--gold-500); color:var(--navy-950); font-weight:700;
    padding:12px 18px; border-radius:8px; text-decoration:none; font-size:14px;
    transition:top .25s ease;
  }
  .skip-link:focus{ top:16px; }

  /* subtle grain for dark sections - adds tactile depth without noise on light bg */
  .noise{ position:relative; isolation:isolate; }
  .noise::after{
    content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
    opacity:0.5; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
  }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }
  .reveal-stagger.in > *{ transition-delay:calc(var(--i, 0) * 80ms); }

  /* ---------- SECTION EYEBROW (signature marker) ---------- */
  .section-eyebrow{
    display:flex; align-items:center; gap:12px; margin-bottom:18px;
    font-family:'Fraunces', serif; font-style:italic; font-weight:500;
    font-size:14.5px; letter-spacing:0.02em; color:var(--ink-700);
  }
  .section-eyebrow::before{ content:''; width:28px; height:1px; background:var(--gold-500); display:inline-block; flex-shrink:0; }
  .section-eyebrow.on-dark{ color:rgba(250,245,233,0.75); }
  .section-eyebrow.on-dark::before{ background:var(--gold-400); }

  /* ---------- BUTTONS ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 26px;
    border-radius:999px;
    font-family:'Manrope', sans-serif;
    font-weight:700;
    font-size:15px;
    letter-spacing:0.01em;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, border-color .3s ease;
    text-decoration:none;
    white-space:nowrap;
  }
  .btn svg{ transition:transform .3s var(--ease); }
  .btn:hover svg{ transform:translateX(3px); }
  .btn-gold{
    background:linear-gradient(180deg, var(--gold-400), var(--gold-600));
    color:var(--navy-950);
    box-shadow:0 12px 24px -10px rgba(196,154,66,0.55);
  }
  .btn-gold:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(196,154,66,0.7); }
  .btn-navy{
    background:var(--navy-900);
    color:var(--cream-50);
  }
  .btn-navy:hover{ transform:translateY(-2px); background:var(--navy-950); }
  .btn-cream{
    background:var(--cream-50);
    color:var(--navy-950);
  }
  .btn-cream:hover{ transform:translateY(-2px); background:var(--white); }
  .btn-ghost{
    background:transparent;
    border-color:var(--line-dark);
    color:var(--cream-50);
  }
  .btn-ghost:hover{ background:rgba(255,255,255,0.06); }
  .btn-outline-light{
    background:rgba(255,255,255,0.06); border-color:var(--line-dark); color:var(--cream-50);
  }
  .btn-outline-light:hover{ background:rgba(255,255,255,0.12); }

  /* ---------- HEADER ---------- */
  .site-header{
    position:fixed; top:0; left:0; right:0; width:100%; z-index:100;
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:box-shadow .3s ease;
  }
  /* Blur/tint lives on a pseudo-element rather than on .site-header itself.
     backdrop-filter on the header would turn it into a containing block for
     its position:fixed mobile nav drawer, which collapsed the drawer down to
     the header's own height and hid the menu links behind the logo. */
  .site-header::before{
    content:''; position:absolute; inset:0; z-index:-1;
    background:rgba(11,25,48,0.8);
    backdrop-filter:blur(16px) saturate(150%);
    -webkit-backdrop-filter:blur(16px) saturate(150%);
    transition:background .3s ease;
  }
  .site-header.scrolled::before{ background:rgba(9,17,30,0.8); }
  .site-header.scrolled{
    box-shadow:0 12px 30px -18px rgba(0,0,0,0.4);
  }
  .header-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 0;
    position:relative; z-index:2;
  }

  /* ---------- PROGRESSIVE SCROLL BLUR ----------
     Sits right below the header, pinned to it, and fades the content
     scrolling underneath - most blurred close to the header, tapering
     to fully sharp further down. Several stacked, individually masked
     blur layers approximate a smooth variable-radius blur, since
     backdrop-filter itself can't be gradient-animated directly. */
  .scroll-blur{
    position:absolute; top:100%; left:0; right:0; height:40px;
    pointer-events:none; z-index:1;
  }
  .scroll-blur span{
    position:absolute; inset:0;
    -webkit-backdrop-filter:blur(var(--b));
    backdrop-filter:blur(var(--b));
  }
  .scroll-blur span:nth-child(1){
    --b:2px;
    -webkit-mask-image:linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
    mask-image:linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
  }
  .scroll-blur span:nth-child(2){
    --b:5px;
    -webkit-mask-image:linear-gradient(to bottom, black 0%, black 42%, transparent 78%);
    mask-image:linear-gradient(to bottom, black 0%, black 42%, transparent 78%);
  }
  .scroll-blur span:nth-child(3){
    --b:9px;
    -webkit-mask-image:linear-gradient(to bottom, black 0%, black 30%, transparent 60%);
    mask-image:linear-gradient(to bottom, black 0%, black 30%, transparent 60%);
  }
  .scroll-blur span:nth-child(4){
    --b:15px;
    -webkit-mask-image:linear-gradient(to bottom, black 0%, black 18%, transparent 42%);
    mask-image:linear-gradient(to bottom, black 0%, black 18%, transparent 42%);
  }
  .scroll-blur span:nth-child(5){
    --b:24px;
    -webkit-mask-image:linear-gradient(to bottom, black 0%, black 8%, transparent 26%);
    mask-image:linear-gradient(to bottom, black 0%, black 8%, transparent 26%);
  }
  .scroll-blur::before{
    content:''; position:absolute; inset:0;
  }
  @media (max-width:760px){
    .scroll-blur{ height:26px; }
  }
  .brand{ display:flex; align-items:center; text-decoration:none; }
  .brand-mark{
    height:80px; width:auto; max-width:250px;
    object-fit:contain; object-position:left center;
    flex-shrink:0;
  }
  .footer-brand .brand-mark{ height:150px; }
  .main-nav{ display:flex; align-items:center; }
  .nav-drawer-head{ display:none; }
  .nav-links{ display:flex; align-items:center; gap:4px; }
  .main-nav a{
    text-decoration:none; color:rgba(250,245,233,0.78); font-size:14.5px; font-weight:500;
    padding:9px 16px; border-radius:999px;
    transition:color .25s ease, background .25s ease;
  }
  .main-nav a:hover{ color:var(--cream-50); background:rgba(255,255,255,0.07); }
  .nav-drawer-foot{ display:none; }
  .header-actions{ display:flex; align-items:center; gap:10px; margin-left:22px; padding-left:22px; border-left:1px solid var(--line-dark); }
  .call-icon-btn{
    display:none; width:42px; height:42px; border-radius:11px; flex-shrink:0;
    align-items:center; justify-content:center;
    background:rgba(255,255,255,0.08); border:1px solid var(--line-dark); color:var(--gold-400);
    text-decoration:none; transition:background .3s ease;
  }
  .call-icon-btn:hover{ background:rgba(255,255,255,0.14); }
  .nav-toggle{
    display:none; position:relative; width:42px; height:42px; flex-shrink:0;
    background:none; border:none; cursor:pointer; padding:0;
  }
  .nav-toggle span{
    position:absolute; left:9px; display:block; width:24px; height:2px; background:var(--cream-50); border-radius:2px;
    transition:transform .35s var(--ease), opacity .25s ease, top .35s var(--ease);
  }
  .nav-toggle span:nth-child(1){ top:15px; }
  .nav-toggle span:nth-child(2){ top:20px; }
  .nav-toggle span:nth-child(3){ top:25px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){ top:20px; transform:rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){ top:20px; transform:rotate(-45deg); }

  .nav-overlay{
    display:none; position:fixed; inset:0; z-index:98;
    background:rgba(9,16,28,0.55); backdrop-filter:blur(2px);
    opacity:0; transition:opacity .3s ease;
  }
  .nav-overlay.show{ display:block; opacity:1; }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:var(--navy-950);
    min-height:92vh;
    display:flex;
    align-items:center;
    overflow:hidden;
  }
  .hero-bg{
    position:absolute; inset:0;
    background:
      linear-gradient(90deg, rgba(11,19,32,0.94) 0%, rgba(11,19,32,0.62) 45%, rgba(11,19,32,0.35) 100%),
      linear-gradient(0deg, rgba(11,19,32,0.85) 0%, rgba(11,19,32,0.15) 45%, rgba(11,19,32,0.55) 100%),
      url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop');
    background-size:cover; background-position:center;
    filter:grayscale(45%) saturate(90%);
  }
  .hero-inner{
    position:relative; z-index:2;
    width:100%;
    padding-top:128px;
    padding-bottom:84px;
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:48px;
    align-items:center;
  }
  .hero-copy .eyebrow{ display:flex; align-items:center; gap:10px; margin-bottom:22px; color:var(--gold-300, var(--gold-400)); }
  .hero-copy .eyebrow::before{ content:''; width:26px; height:1px; background:var(--gold-400); display:inline-block; }
  .hero-copy h1{
    font-size:clamp(40px, 5.6vw, 74px);
    line-height:1.18;
    color:var(--cream-50);
    max-width:15ch;
  }
  .hero-copy h1 .accent{
    display:block;
    padding-bottom:0.08em;
    background:linear-gradient(95deg, var(--gold-200), var(--gold-500));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hero-copy p{
    margin-top:26px; max-width:46ch;
    font-size:17.5px; color:rgba(250,245,233,0.78);
  }
  .hero-copy .hero-cta-row{
    display:flex; gap:14px; margin-top:36px; flex-wrap:wrap;
  }

  .lead-card{
    background:var(--cream-50);
    border-radius:var(--radius-lg);
    padding:38px 34px 30px;
    box-shadow:var(--shadow-soft);
    position:relative;
    animation:cardIn 1s var(--ease) both;
    animation-delay:.15s;
  }
  @keyframes cardIn{
    from{ opacity:0; transform:translateY(26px); }
    to{ opacity:1; transform:translateY(0); }
  }
  .lead-card h3{
    font-size:22px; color:var(--navy-950); margin-bottom:6px;
  }
  .lead-card .lead-sub{
    font-size:14px; color:var(--slate-500); margin-bottom:26px; display:flex; align-items:center; gap:8px;
  }
  .pulse-dot{
    position:relative; width:8px; height:8px; border-radius:50%; background:#4caf6d; flex-shrink:0;
  }
  .pulse-dot::after{
    content:''; position:absolute; inset:-4px; border-radius:50%; border:1.5px solid #4caf6d;
    animation:pulseRing 2.2s ease-out infinite;
  }
  @keyframes pulseRing{
    0%{ transform:scale(0.6); opacity:0.9; }
    100%{ transform:scale(1.8); opacity:0; }
  }
  .field{ margin-bottom:18px; }
  .field label{
    display:block; font-size:12.5px; font-weight:600; letter-spacing:0.03em;
    color:var(--ink-700); margin-bottom:7px; text-transform:uppercase;
  }
  .field-optional{ text-transform:none; font-weight:500; letter-spacing:0; color:var(--slate-500); }
  .field input, .field select, .field textarea{
    width:100%; padding:13px 15px; border-radius:10px;
    border:1px solid rgba(26,33,48,0.14);
    background:var(--white);
    font-family:'Inter', sans-serif; font-size:15px; color:var(--ink-900);
    transition:border-color .25s ease, box-shadow .25s ease;
    appearance:none;
  }
  .field textarea{ resize:vertical; min-height:80px; line-height:1.5; }
  .field select{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23616b7a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 15px center;
  }
  .field input::placeholder, .field textarea::placeholder{ color:#a8a297; }
  .field input:focus, .field select:focus, .field textarea:focus{
    outline:none; border-color:var(--gold-500); box-shadow:0 0 0 4px rgba(196,154,66,0.15);
  }
  .field input.has-error, .field select.has-error, .field textarea.has-error{
    border-color:#c0392b; box-shadow:0 0 0 4px rgba(192,57,43,0.1);
  }
  .field-error{
    display:block; font-size:12.5px; color:#c0392b; margin-top:7px; min-height:0;
  }
  .field-error:empty{ display:none; }

  /* honeypot - hidden from real users, only bots fill this in */
  .hp-field{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }

  /* ---------- FILE UPLOAD / DROPZONE ---------- */
  .dropzone{
    position:relative;
    border:1.5px dashed rgba(26,33,48,0.2);
    border-radius:14px;
    padding:26px 18px;
    display:flex; flex-direction:column; align-items:center; text-align:center; gap:8px;
    cursor:pointer;
    background:rgba(26,33,48,0.02);
    transition:border-color .25s ease, background .25s ease;
  }
  .dropzone:hover, .dropzone:focus-visible{ border-color:var(--gold-500); background:rgba(196,154,66,0.05); }
  .dropzone.dragover{ border-color:var(--gold-500); background:rgba(196,154,66,0.09); }
  .dropzone input[type="file"]{
    position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:pointer;
  }
  .dropzone-icon{ color:var(--gold-600); }
  .dropzone-text{ font-size:14px; color:var(--ink-700); font-weight:500; }
  .dropzone-text strong{ color:var(--navy-950); text-decoration:underline; text-underline-offset:2px; }
  .dropzone-hint{ font-size:12px; color:var(--slate-500); }

  .file-list{ list-style:none; margin:10px 0 0; padding:0; display:flex; flex-direction:column; gap:8px; }
  .file-list:empty{ margin:0; }
  .file-chip{
    display:flex; align-items:center; gap:10px;
    padding:9px 10px 9px 12px; border-radius:10px;
    background:rgba(26,33,48,0.04); border:1px solid rgba(26,33,48,0.08);
    font-size:13px;
  }
  .file-chip .file-ico{ color:var(--gold-600); flex-shrink:0; display:flex; }
  .file-chip .file-meta{ flex:1; min-width:0; }
  .file-chip .file-name{
    display:block; color:var(--ink-900); font-weight:600;
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  }
  .file-chip .file-size{ display:block; color:var(--slate-500); font-size:11.5px; margin-top:1px; }
  .file-chip .file-remove{
    width:26px; height:26px; border-radius:50%; flex-shrink:0;
    border:none; background:transparent; color:var(--slate-500); cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s ease, color .2s ease;
  }
  .file-chip .file-remove:hover{ background:rgba(192,57,43,0.1); color:#c0392b; }

  /* ---------- FORM STATUS BANNER ---------- */
  .form-status{
    display:none; font-size:13.5px; line-height:1.5; padding:12px 14px; border-radius:10px; margin-bottom:16px;
  }
  .form-status.show{ display:block; }
  .form-status.success{ background:rgba(76,175,109,0.12); color:#2e6b46; border:1px solid rgba(76,175,109,0.3); }
  .form-status.error{ background:rgba(192,57,43,0.1); color:#a33327; border:1px solid rgba(192,57,43,0.28); }

  .lead-card .btn{ width:100%; justify-content:center; margin-top:6px; position:relative; }
  .btn.is-loading .btn-label, .btn.is-loading .btn-arrow{ opacity:0; }
  .btn-spinner{
    display:none; position:absolute; left:50%; top:50%; width:18px; height:18px; margin:-9px 0 0 -9px;
    border-radius:50%; border:2px solid rgba(0,0,0,0.18); border-top-color:currentColor;
  }
  .btn.is-loading .btn-spinner{ display:block; animation:spin .7s linear infinite; }
  @keyframes spin{ to{ transform:rotate(360deg); } }
  .btn[disabled]{ cursor:not-allowed; opacity:0.85; }

  .lead-consent{
    display:block; text-align:center; font-size:12.5px; color:var(--slate-500);
    margin-top:14px;
  }
  .lead-consent a{ color:var(--ink-700); text-decoration:underline; text-underline-offset:2px; }

  /* ---------- TRUST / STATS ---------- */
  .section{ padding:112px 0; border-top:1px solid var(--line); }
  .section-tight{ padding:96px 0; }
  .trust{
    background:var(--cream-50);
  }
  .trust-head{ max-width:840px; }
  .trust-head h2{ font-size:clamp(28px, 3.2vw, 40px); color:var(--navy-950); }
  .trust-head h2 .hl{ color:var(--gold-500); }
  .trust-head p{ margin-top:22px; font-size:16.5px; color:var(--slate-500); max-width:62ch; }
  .stat-grid{
    margin-top:64px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:36px;
    border-top:1px solid var(--line);
    padding-top:48px;
  }
  .stat{ position:relative; padding-left:28px; }
  .stat::before{ content:''; position:absolute; left:0; top:4px; bottom:4px; width:1px; background:var(--line); }
  .stat:first-child{ padding-left:0; }
  .stat:first-child::before{ display:none; }
  .stat-num{
    font-family:'Manrope', sans-serif; font-weight:800; font-size:clamp(34px, 4vw, 52px);
    background:linear-gradient(180deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip:text; background-clip:text; color:transparent;
    line-height:1;
  }
  .stat-label{ margin-top:12px; font-size:14.5px; color:var(--slate-500); }

  /* ---------- PRACTICE AREAS ---------- */
  .practice{ background:var(--white); }
  .practice .section-head{
    display:flex; justify-content:space-between; align-items:flex-end; gap:32px; margin-bottom:56px;
    flex-wrap:wrap;
  }
  .practice h2{ font-size:clamp(28px, 3.6vw, 46px); color:var(--navy-950); max-width:34ch; }
  .practice .section-head p{ margin-top:14px; font-size:16.5px; color:var(--slate-500); }
  .practice-list{ border-top:1px solid var(--line); }
  .practice-item{
    border-bottom:1px solid var(--line);
    padding:34px 0;
    display:grid;
    grid-template-columns:220px 1fr 44px;
    gap:36px;
    align-items:start;
    cursor:pointer;
  }
  .practice-thumb{
    width:220px; height:150px; border-radius:var(--radius-md); overflow:hidden;
    background:var(--navy-900); flex-shrink:0;
  }
  .practice-thumb img{ width:100%; height:100%; object-fit:cover; filter:grayscale(60%) contrast(1.05); transition:transform .6s var(--ease); }
  .practice-item:hover .practice-thumb img{ transform:scale(1.06); }
  .practice-body h3{
    font-size:26px; color:var(--navy-950); font-weight:700; margin-bottom:8px;
  }
  .practice-body .p-sub{
    font-size:16.5px; color:var(--ink-700); font-weight:500;
  }
  .practice-more{
    display:grid; grid-template-rows:0fr; transition:grid-template-rows .5s var(--ease);
  }
  .practice-more-inner{ overflow:hidden; }
  .practice-item.open .practice-more{ grid-template-rows:1fr; }
  .practice-more p{
    margin-top:18px; color:var(--slate-500); font-size:15.5px; max-width:56ch;
  }
  .practice-more .btn{ margin-top:22px; }
  .practice-toggle{
    width:44px; height:44px; border-radius:50%;
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    color:var(--navy-900); flex-shrink:0;
    transition:background .3s ease, border-color .3s ease, transform .3s var(--ease);
  }
  .practice-item.open .practice-toggle{ background:var(--navy-950); border-color:var(--navy-950); color:var(--gold-400); transform:rotate(135deg); }
  .practice-toggle svg{ width:16px; height:16px; }

  /* ---------- STEPS ---------- */
  .steps{ background:var(--cream-50); }
  .steps-head{ max-width:760px; margin-bottom:56px; }
  .steps-head h2{ font-size:clamp(30px, 3.6vw, 46px); color:var(--navy-950); }
  .steps-head p{ margin-top:20px; font-size:16.5px; color:var(--slate-500); }
  .steps-head.wsparcie-steps-head{
    max-width:none; margin-top:0; padding-top:56px; border-top:1px solid var(--line);
  }
  .steps-head.wsparcie-intro-head{ max-width:none; }

  .wsparcie-copy{ max-width:760px; margin-bottom:64px; }
  .wsparcie-copy p{ font-size:16.5px; line-height:1.7; color:var(--slate-500); margin-bottom:18px; }
  .wsparcie-copy.wsparcie-copy-wide{ max-width:none; }
  .wsparcie-regions{
    list-style:none; margin:0 0 18px; padding:0;
    display:flex; flex-wrap:wrap; gap:10px;
  }
  .wsparcie-regions li{
    font-size:15.5px; color:var(--navy-950); font-weight:600;
    background:var(--cream-100); border:1px solid var(--line);
    border-radius:999px; padding:8px 18px;
  }
  .steps-row{
    display:grid; grid-template-columns:1fr 60px 1fr 60px 1fr; align-items:stretch; gap:0;
  }
  .step-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:38px 32px;
    transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  }
  .step-card:hover{ transform:translateY(-6px); box-shadow:0 24px 40px -22px rgba(15,30,51,0.25); }
  .step-card.active{
    background:var(--navy-950); border-color:var(--navy-950); color:var(--cream-50);
    box-shadow:0 30px 55px -22px rgba(15,30,51,0.5);
  }
  .step-icon{
    width:52px; height:52px; border-radius:13px;
    background:var(--navy-950); color:var(--gold-400);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:30px;
  }
  .step-card.active .step-icon{ background:rgba(255,255,255,0.1); }
  .step-icon svg{ width:22px; height:22px; }
  .step-num{
    font-family:'Fraunces', serif; font-style:italic; font-size:13px;
    color:var(--gold-500); margin-bottom:8px; display:block;
  }
  .step-card.active .step-num{ color:var(--gold-300, var(--gold-400)); }
  .step-card h3{ font-size:22px; color:var(--navy-950); }
  .step-card.active h3{ color:var(--cream-50); }
  .step-card p{ margin-top:12px; font-size:15px; color:var(--slate-500); }
  .step-card.active p{ color:rgba(250,245,233,0.72); }
  .step-arrow{ display:flex; align-items:center; justify-content:center; color:var(--slate-300); }
  .step-arrow svg{ width:26px; height:26px; }

  /* ---------- TEAM ---------- */
  .team{ background:var(--white); }
  .team-head{ max-width:640px; margin-bottom:56px; }
  .team-head h2{ font-size:clamp(30px, 3.6vw, 46px); color:var(--navy-950); }
  .team-grid{
    display:grid; grid-template-columns:1fr 1fr 1fr 1fr; gap:20px;
  }
  .team-card{
    border-radius:var(--radius-lg);
    overflow:hidden;
    position:relative;
    min-height:420px;
    transition:transform .45s var(--ease), box-shadow .45s var(--ease);
  }
  .team-card:hover{ transform:translateY(-6px); box-shadow:0 26px 44px -24px rgba(15,30,51,0.3); }
  .team-card.lead{
    background:var(--navy-950);
    color:var(--cream-50);
    padding:32px 28px;
    display:flex; flex-direction:column; justify-content:space-between;
    border:1px solid var(--line-dark);
  }
  .team-card.lead .role{ color:var(--gold-400); font-size:14px; font-weight:600; margin-top:6px; display:block; }
  .team-card.lead h3{ font-size:23px; color:var(--cream-50); }
  .team-card.lead p{ margin-top:18px; font-size:14.5px; color:rgba(250,245,233,0.7); }
  .social-row{ display:flex; gap:10px; margin-top:auto; padding-top:24px; }
  .social-row a{
    width:38px; height:38px; border-radius:9px; background:rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; color:var(--cream-50);
    transition:background .3s ease, transform .3s ease;
  }
  .social-row a:hover{ background:var(--gold-500); color:var(--navy-950); transform:translateY(-2px); }
  .social-row svg{ width:16px; height:16px; }

  .team-card.photo{
    background:var(--navy-800);
  }
  .team-card.photo img{
    width:100%; height:100%; object-fit:cover; position:absolute; inset:0;
    filter:grayscale(85%) contrast(1.05);
    transition:transform .6s var(--ease), filter .6s var(--ease);
  }
  .team-card.photo:hover img{ transform:scale(1.05); filter:grayscale(40%) contrast(1.05); }
  .team-card.photo::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(11,19,32,0.92) 0%, rgba(11,19,32,0.05) 55%);
  }
  .team-card.photo .team-info{
    position:absolute; left:22px; right:22px; bottom:22px; z-index:2;
  }
  .team-card.photo .team-info strong{
    display:block; font-family:'Manrope',sans-serif; font-weight:700; font-size:18px; color:var(--cream-50);
  }
  .team-card.photo .team-info span{
    font-size:13px; color:rgba(250,245,233,0.68);
  }
  .team-card.photo .tag{
    position:absolute; top:20px; left:22px; z-index:2;
    font-family:'Fraunces', serif; font-style:italic; font-size:12px; color:rgba(250,245,233,0.55);
  }

  /* ---------- FAQ ---------- */
  .faq{ background:var(--cream-50); }
  .faq-grid{
    display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px;
  }
  .faq-left h2{ font-size:clamp(28px, 3.4vw, 42px); color:var(--navy-950); }
  .faq-left p{ margin-top:20px; font-size:16px; color:var(--slate-500); max-width:36ch; }
  .faq-phone{
    display:inline-flex; align-items:center; gap:12px; margin-top:30px;
    text-decoration:none; color:var(--navy-950); font-weight:700; font-size:19px;
  }
  .faq-phone .ico{
    width:38px; height:38px; border-radius:10px; background:var(--cream-100);
    display:flex; align-items:center; justify-content:center; color:var(--gold-600); flex-shrink:0;
  }
  .faq-phone span{ border-bottom:1.5px solid var(--gold-500); padding-bottom:2px; }
  .faq-list{ border-top:1px solid var(--line); }
  .faq-item{ border-bottom:1px solid var(--line); padding:26px 0; cursor:pointer; }
  .faq-q{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
  .faq-q h4{ font-size:18px; font-weight:700; color:var(--navy-950); }
  .faq-toggle{
    width:30px; height:30px; border-radius:50%; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative;
  }
  .faq-toggle::before, .faq-toggle::after{
    content:''; position:absolute; background:var(--navy-900); border-radius:2px;
  }
  .faq-toggle::before{ width:11px; height:1.6px; }
  .faq-toggle::after{ width:1.6px; height:11px; transition:transform .3s var(--ease), opacity .3s var(--ease); }
  .faq-item.open .faq-toggle::after{ transform:rotate(90deg); opacity:0; }
  .faq-a{
    display:grid; grid-template-rows:0fr; transition:grid-template-rows .4s var(--ease);
  }
  .faq-item.open .faq-a{ grid-template-rows:1fr; }
  .faq-a-inner{ overflow:hidden; }
  .faq-a p{ padding-top:14px; font-size:15px; color:var(--slate-500); max-width:60ch; }

  /* ---------- CTA BAND ---------- */
  .cta-band{ background:var(--navy-950); position:relative; overflow:hidden; padding:132px 0; }
  .cta-band::before{
    content:''; position:absolute; top:-30%; right:-8%; width:520px; height:520px; border-radius:50%;
    background:radial-gradient(circle, rgba(196,154,66,0.18), transparent 65%);
  }
  .cta-inner{
    position:relative; z-index:2;
    display:grid; grid-template-columns:1.2fr 0.8fr; gap:48px; align-items:center;
  }
  .cta-inner h2{
    font-size:clamp(32px, 4vw, 50px); color:var(--cream-50);
  }
  .cta-inner h2 .hl{ color:var(--gold-400); }
  .cta-inner p{ margin-top:22px; font-size:16px; color:rgba(250,245,233,0.65); max-width:48ch; }
  .cta-box{
    background:var(--navy-800); border:1px solid var(--line-dark); border-radius:var(--radius-lg);
    padding:26px 28px; display:flex; flex-direction:column; gap:18px;
  }
  .call-row{ display:flex; align-items:center; gap:16px; }
  .call-row .ico{
    width:52px; height:52px; border-radius:12px; background:var(--navy-950);
    display:flex; align-items:center; justify-content:center; color:var(--gold-400); flex-shrink:0;
  }
  .call-row .call-label{ font-size:12px; letter-spacing:0.08em; color:var(--slate-300); text-transform:uppercase; }
  .call-row .call-num{ font-family:'Manrope',sans-serif; font-weight:800; font-size:23px; color:var(--cream-50); margin-top:4px; }
  .cta-box .btn{ justify-content:center; }

  /* ---------- FOOTER ---------- */
  .site-footer{ background:var(--navy-950); padding-top:80px; border-top:1px solid var(--line-dark); position:relative; }
  .site-footer > .container{ position:relative; z-index:2; }
  .footer-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
    padding-bottom:56px;
  }
  .footer-brand .brand{ margin-bottom:18px; }
  .footer-brand p{ font-size:14.5px; color:rgba(250,245,233,0.55); max-width:34ch; }
  .footer-col h5{
    font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-400);
    font-weight:700; margin-bottom:20px;
  }
  .footer-col a, .footer-col p{
    display:block; font-size:14.5px; color:rgba(250,245,233,0.68); text-decoration:none;
    margin-bottom:13px; line-height:1.5;
  }
  .footer-col a:hover{ color:var(--cream-50); }
  .footer-bottom{
    border-top:1px solid var(--line-dark); padding:26px 0;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  }
  .footer-bottom p{ font-size:13px; color:rgba(250,245,233,0.45); }
  .footer-credit{
    display:flex; align-items:center; gap:10px;
    text-decoration:none; color:rgba(250,245,233,0.45);
    font-size:13px; opacity:0.85;
    transition:opacity .25s ease;
  }
  .footer-credit:hover{ opacity:1; }
  .footer-credit img{ height:20px; width:auto; display:block; }

  /* ---------- PROSTE STRONY TEKSTOWE (Polityka prywatności, Regulamin) ---------- */
  .legal-page{ padding-top:168px; padding-bottom:96px; }
  .legal-container{ max-width:820px; }
  .legal-page .section-eyebrow{ margin-bottom:18px; }
  .legal-page h1{
    font-family:'Fraunces', serif; font-weight:500;
    font-size:clamp(32px, 4.2vw, 52px); color:var(--navy-950);
    margin-bottom:10px; letter-spacing:-0.01em;
  }
  .legal-updated{ font-size:14.5px; color:var(--slate-500); margin-bottom:44px; }
  .legal-body h2{
    font-family:'Fraunces', serif; font-weight:500;
    font-size:22px; color:var(--navy-950);
    margin:40px 0 14px;
  }
  .legal-body h2:first-child{ margin-top:0; }
  .legal-body p{ font-size:16px; line-height:1.75; color:var(--slate-500); margin-bottom:16px; }
  .legal-body ul{ margin:0 0 16px; padding-left:22px; color:var(--slate-500); font-size:16px; line-height:1.75; }
  .legal-body li{ margin-bottom:6px; }
  .legal-body strong{ color:var(--navy-950); }
  .legal-body a{ color:var(--navy-950); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
  .legal-table{ width:100%; border-collapse:collapse; margin:8px 0 28px; font-size:15px; }
  .legal-table td{ padding:11px 16px; border-bottom:1px solid var(--line); color:var(--slate-500); vertical-align:top; }
  .legal-table td:first-child{ color:var(--navy-950); font-weight:600; width:220px; white-space:nowrap; }
  .legal-back{
    display:inline-flex; align-items:center; gap:8px;
    margin-top:48px; font-size:14.5px; font-weight:600; color:var(--navy-950);
    text-decoration:none;
  }
  .legal-back svg{ transform:rotate(180deg); }

  @media (max-width:760px){
    .legal-page{ padding-top:132px; padding-bottom:64px; }
    .legal-table td{ white-space:normal; }
    .legal-table td:first-child{ width:auto; display:block; padding-bottom:2px; }
    .legal-table tr{ display:block; padding:12px 0; border-bottom:1px solid var(--line); }
    .legal-table td{ border-bottom:none; padding:2px 0; }
  }

  /* ---------- MOBILE STICKY CTA BAR ---------- */
  .mobile-cta-bar{
    display:none;
  }

  /* ---------- RESPONSIVE ---------- */

  /* Tablet landscape */
  @media (max-width:1180px){
    .container{ padding-left:28px; padding-right:28px; }
    .steps-row{ grid-template-columns:1fr 44px 1fr 44px 1fr; }
  }

  @media (max-width:1080px){
    .hero-inner{ grid-template-columns:1fr; max-width:560px; }
    .hero-copy{ max-width:none; }
    .hero-copy h1{ max-width:none; }
    .stat-grid{ grid-template-columns:repeat(2,1fr); row-gap:40px; }
    .stat{ padding-left:0; }
    .stat::before{ display:none; }
    .steps-row{ grid-template-columns:1fr; gap:18px; }
    .step-arrow{ transform:rotate(90deg); padding:2px 0; }
    .team-grid{ grid-template-columns:1fr 1fr; }
    .team-card{ aspect-ratio:3/4; min-height:0; }
    .team-card.lead{ aspect-ratio:auto; min-height:320px; }
    .faq-grid{ grid-template-columns:1fr; gap:44px; }
    .faq-left{ max-width:560px; }
    .cta-inner{ grid-template-columns:1fr; }
    .cta-inner p{ max-width:none; }
  }

  /* Tablet portrait */
  @media (max-width:900px){
    .container{ padding-left:24px; padding-right:24px; }
    .section, .section-tight{ padding:88px 0; }
    .cta-band{ padding:104px 0; }
    h1{ }
    .practice-item{ grid-template-columns:180px 1fr 40px; gap:24px; }
    .practice-thumb{ width:180px; height:130px; }
    .practice-body h3{ font-size:23px; }
    .footer-grid{ grid-template-columns:1.2fr 1fr 1fr; }
    .footer-brand{ grid-column:1 / -1; margin-bottom:8px; }
  }

  /* Tablet + mobile nav (hamburger drawer). Switches to the drawer earlier
     than the rest of the "mobile" tweaks below, because the full inline
     nav (4 links + CTA button) doesn't fit between ~760-900px and was
     wrapping/overlapping the hero heading on tablets. */
  @media (max-width:900px){
    .main-nav{
      display:flex; flex-direction:column; align-items:stretch;
      position:fixed; top:0; right:0; bottom:0; z-index:99;
      width:min(340px, 86vw);
      background:var(--navy-950);
      box-shadow:-24px 0 60px -20px rgba(0,0,0,0.5);
      padding:22px 24px 28px;
      transform:translateX(100%);
      transition:transform .4s var(--ease);
      overflow-y:auto;
    }
    .main-nav.open{ transform:translateX(0); }

    .nav-drawer-head{
      display:flex; align-items:center; justify-content:space-between;
      padding-bottom:22px; margin-bottom:10px; border-bottom:1px solid var(--line-dark);
    }
    .nav-close{
      width:38px; height:38px; border-radius:10px; flex-shrink:0;
      background:rgba(255,255,255,0.06); border:1px solid var(--line-dark); color:var(--cream-50);
      display:flex; align-items:center; justify-content:center; cursor:pointer;
      transition:background .25s ease, transform .25s ease;
    }
    .nav-close:hover{ background:rgba(255,255,255,0.12); transform:rotate(90deg); }

    .nav-links{ flex-direction:column; align-items:stretch; gap:2px; }
    .main-nav a{
      color:rgba(250,245,233,0.88); font-size:16.5px; font-weight:600;
      padding:15px 14px; border-radius:12px; background:transparent;
    }
    .main-nav a:hover{ background:rgba(255,255,255,0.06); }

    .nav-drawer-foot{
      display:flex; flex-direction:column; gap:14px;
      margin-top:auto; padding-top:22px; border-top:1px solid var(--line-dark);
    }
    .nav-drawer-phone{
      display:flex; align-items:center; gap:12px; text-decoration:none;
      color:var(--cream-50); font-family:'Manrope',sans-serif; font-weight:700; font-size:16px;
    }
    .nav-drawer-phone .ico{
      width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,0.08);
      display:flex; align-items:center; justify-content:center; color:var(--gold-400); flex-shrink:0;
    }
    .nav-drawer-foot .btn-gold{ justify-content:center; }

    .nav-toggle{ display:block; }
    .call-icon-btn{ display:flex; }
    .header-actions .btn-gold{ display:none; }
    .header-actions{ margin-left:0; padding-left:0; border-left:none; }
  }

  /* Mobile nav breakpoint */
  @media (max-width:760px){
    .container{ padding-left:20px; padding-right:20px; }

    .hero{ min-height:auto; }
    .hero-bg{ filter:grayscale(45%) saturate(90%) brightness(0.9); }
    .hero-inner{ padding-top:118px; padding-bottom:48px; max-width:none; }
    .hero-copy p{ max-width:none; }
    .hero-cta-row{ width:100%; }
    .hero-cta-row .btn{ width:100%; justify-content:center; }
    .lead-card{ padding:30px 24px 26px; }

    .section, .section-tight{ padding:72px 0; }
    .cta-band{ padding:80px 0; }
    .stat-grid{ gap:28px 24px; margin-top:44px; padding-top:36px; }

    .practice .section-head{ margin-bottom:40px; }
    .practice-item{ grid-template-columns:1fr; position:relative; padding:28px 0; }
    .practice-thumb{ width:100%; height:200px; }
    .practice-toggle{ position:absolute; top:28px; right:0; width:38px; height:38px; }
    .practice-body{ padding-right:46px; }

    .team-grid{ grid-template-columns:1fr; }
    .team-card{ aspect-ratio:auto; min-height:280px; }

    .faq-phone{ font-size:17px; }

    .cta-box{ padding:22px; }
    .call-row .call-num{ font-size:20px; }

    .footer-grid{ grid-template-columns:1fr; gap:36px; }
    .footer-brand{ grid-column:auto; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; }

    body{ padding-bottom:76px; }
    .mobile-cta-bar{
      display:flex; position:fixed; left:0; right:0; bottom:0; z-index:97;
      background:rgba(9,17,30,0.96); backdrop-filter:blur(10px);
      border-top:1px solid var(--line-dark);
      padding:12px 16px calc(12px + env(safe-area-inset-bottom));
      gap:10px;
    }
    .mobile-cta-bar .btn{ flex:1; justify-content:center; padding:13px 16px; font-size:14px; }
  }

  /* Small phones */
  @media (max-width:420px){
    .container{ padding-left:16px; padding-right:16px; }
    .brand-mark{ height:38px; }
    .hero-copy h1{ font-size:34px; }
    .lead-card{ padding:26px 18px 22px; }
    .stat-grid{ grid-template-columns:1fr 1fr; gap:26px 18px; }
    .stat-num{ font-size:32px; }
    .practice-body h3{ font-size:21px; }
    .step-card{ padding:30px 24px; }
  }

/* ============================================================
   WIDGET DOSTĘPNOŚCI
   Pływający przycisk + panel pozwalający dostosować wygląd strony:
   rozmiar tekstu, kontrast, czcionkę, odstępy, animacje i kursor.
   Ustawienia są zapisywane w localStorage (patrz script.js).
   ============================================================ */

.a11y-fab{
  position:fixed; left:22px; bottom:26px; z-index:150;
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(155deg, var(--gold-400), var(--gold-600));
  color:var(--navy-950); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(196,154,66,0.55);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.a11y-fab:hover{ transform:translateY(-3px); box-shadow:0 18px 36px -10px rgba(196,154,66,0.7); }
.a11y-fab svg{ width:26px; height:26px; }
.a11y-fab[aria-expanded="true"]{ box-shadow:0 0 0 4px rgba(196,154,66,0.3), 0 14px 30px -10px rgba(196,154,66,0.55); }

.a11y-panel{
  position:fixed; left:22px; bottom:92px; z-index:150;
  width:min(320px, calc(100vw - 44px));
  background:var(--white); color:var(--ink-900);
  border-radius:18px;
  box-shadow:0 30px 60px -20px rgba(11,25,48,0.4);
  border:1px solid var(--line);
  padding:20px;
  max-height:min(560px, calc(100vh - 140px));
  overflow-y:auto;
}
.a11y-panel[hidden]{ display:none; }

.a11y-panel-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:16px; padding-bottom:14px; border-bottom:1px solid var(--line);
}
.a11y-panel-head h2{ font-size:16px; color:var(--navy-950); }
.a11y-close{
  width:30px; height:30px; border-radius:50%; border:none; flex-shrink:0;
  background:rgba(26,33,48,0.06); color:var(--ink-700); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease;
}
.a11y-close:hover{ background:rgba(26,33,48,0.12); }

.a11y-group{ margin-bottom:16px; }
.a11y-label{
  display:block; font-size:12.5px; font-weight:600; letter-spacing:0.03em;
  text-transform:uppercase; color:var(--ink-700); margin-bottom:10px;
}

.a11y-stepper{ display:flex; align-items:center; gap:10px; }
.a11y-stepper button{
  width:38px; height:38px; border-radius:10px; border:1px solid var(--line);
  background:var(--cream-50); color:var(--navy-950); font-weight:700; font-size:14px; cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.a11y-stepper button:hover:not(:disabled){ background:rgba(196,154,66,0.12); border-color:var(--gold-500); }
.a11y-stepper button:disabled{ opacity:0.4; cursor:not-allowed; }
.a11y-fs-value{ flex:1; text-align:center; font-weight:700; font-size:14px; color:var(--ink-900); }

.a11y-toggles{ display:flex; flex-direction:column; gap:2px; }
.a11y-switch{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:10px 2px; font-size:14px; color:var(--ink-900); cursor:pointer;
  border-bottom:1px solid rgba(26,33,48,0.06);
}
.a11y-switch:last-child{ border-bottom:none; }
.a11y-switch input{
  appearance:none; -webkit-appearance:none;
  width:40px; height:24px; border-radius:999px; background:rgba(26,33,48,0.15);
  position:relative; cursor:pointer; flex-shrink:0; margin:0;
  transition:background .25s ease;
}
.a11y-switch input::before{
  content:''; position:absolute; top:3px; left:3px; width:18px; height:18px; border-radius:50%;
  background:#fff; box-shadow:0 1px 3px rgba(0,0,0,0.3);
  transition:transform .25s ease;
}
.a11y-switch input:checked{ background:var(--gold-500); }
.a11y-switch input:checked::before{ transform:translateX(16px); }
.a11y-switch input:focus-visible{ outline:2px solid var(--gold-500); outline-offset:2px; }

.a11y-reset{
  width:100%; margin-top:6px; padding:11px; border-radius:10px; border:1px solid var(--line);
  background:var(--cream-50); color:var(--ink-700); font-weight:600; font-size:13px; cursor:pointer;
  transition:background .2s ease;
}
.a11y-reset:hover{ background:rgba(26,33,48,0.06); }

@media (max-width:760px){
  .a11y-fab{
    left:16px;
    bottom:calc(76px + env(safe-area-inset-bottom) + 14px);
    width:50px; height:50px;
  }
  .a11y-panel{
    left:16px;
    bottom:calc(76px + env(safe-area-inset-bottom) + 72px);
  }
}

/* ---------- EFEKTY: WYSOKI KONTRAST ---------- */
html.a11y-contrast body{ background:#000 !important; }
html.a11y-contrast body,
html.a11y-contrast p, html.a11y-contrast span, html.a11y-contrast li,
html.a11y-contrast h1, html.a11y-contrast h2, html.a11y-contrast h3, html.a11y-contrast h4,
html.a11y-contrast label{ color:#fff !important; }
html.a11y-contrast .site-header{ background:#000 !important; border-color:#fff !important; }
html.a11y-contrast .main-nav{ background:#000 !important; }
html.a11y-contrast .hero{ background:#000 !important; }
html.a11y-contrast .hero-bg{ filter:grayscale(100%) contrast(1.3) !important; opacity:0.45; }
html.a11y-contrast section, html.a11y-contrast footer,
html.a11y-contrast .lead-card, html.a11y-contrast .cta-band,
html.a11y-contrast .team-card, html.a11y-contrast .step-card,
html.a11y-contrast .dropzone, html.a11y-contrast .cta-box,
html.a11y-contrast .file-chip, html.a11y-contrast .a11y-panel{
  background:#000 !important; border-color:#fff !important; box-shadow:none !important;
}
html.a11y-contrast .stat-num, html.a11y-contrast .hl, html.a11y-contrast .accent{
  background:none !important; -webkit-text-fill-color:#ffe066 !important; color:#ffe066 !important;
}
html.a11y-contrast a{ color:#ffe066 !important; }
html.a11y-contrast .btn{ background:#000 !important; color:#ffe066 !important; border:2px solid #ffe066 !important; box-shadow:none !important; }
html.a11y-contrast .btn-gold, html.a11y-contrast .btn-cream{ color:#000 !important; background:#ffe066 !important; }
html.a11y-contrast input, html.a11y-contrast select, html.a11y-contrast textarea{
  background:#111 !important; color:#fff !important; border-color:#fff !important;
}
html.a11y-contrast .noise::after,
html.a11y-contrast .scroll-blur,
html.a11y-contrast .pulse-dot::after{ display:none !important; }
html.a11y-contrast .a11y-switch input:not(:checked){ background:#333 !important; }

/* ---------- EFEKTY: SKALA SZAROŚCI ---------- */
html.a11y-grayscale{ filter:grayscale(100%); }

/* ---------- EFEKTY: CZYTELNA CZCIONKA ---------- */
html.a11y-readable-font body,
html.a11y-readable-font h1, html.a11y-readable-font h2, html.a11y-readable-font h3, html.a11y-readable-font h4,
html.a11y-readable-font p, html.a11y-readable-font a, html.a11y-readable-font span,
html.a11y-readable-font li, html.a11y-readable-font label,
html.a11y-readable-font button, html.a11y-readable-font input,
html.a11y-readable-font select, html.a11y-readable-font textarea{
  font-family:'Atkinson Hyperlegible', Arial, sans-serif !important;
  letter-spacing:0.01em !important;
}

/* ---------- EFEKTY: PODKREŚLONE LINKI ---------- */
html.a11y-underline-links a:not(.btn):not(.brand):not(.nav-close):not(.call-icon-btn):not(.a11y-fab){
  text-decoration:underline !important; text-underline-offset:3px !important;
}

/* ---------- EFEKTY: WIĘKSZE ODSTĘPY TEKSTU ---------- */
html.a11y-spacing p, html.a11y-spacing li,
html.a11y-spacing .faq-a p, html.a11y-spacing .practice-more p,
html.a11y-spacing .trust-head p, html.a11y-spacing .steps-head p{
  line-height:1.9 !important; letter-spacing:0.01em !important;
}
html.a11y-spacing p{ margin-bottom:0.8em !important; }

/* ---------- EFEKTY: OGRANICZ ANIMACJE ---------- */
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after{
  animation-duration:0.01ms !important; animation-iteration-count:1 !important;
  transition-duration:0.01ms !important; scroll-behavior:auto !important;
}

/* ---------- EFEKTY: DUŻY KURSOR ---------- */
html.a11y-big-cursor, html.a11y-big-cursor *{
  cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M6 3 L6 33 L14 26 L19 36 L24 34 L19 24 L29 24 Z' fill='%230b1930' stroke='white' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E") 4 4, auto !important;
}


/* ============================================================
   HERO - WIDEO W TLE
   ============================================================ */
.hero-video{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  border:0; pointer-events:none;
  filter:grayscale(35%) saturate(90%) brightness(0.82);
}
.hero-scrim{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(90deg, rgba(11,19,32,0.92) 0%, rgba(11,19,32,0.68) 45%, rgba(11,19,32,0.45) 100%),
    linear-gradient(0deg, rgba(11,19,32,0.88) 0%, rgba(11,19,32,0.28) 45%, rgba(11,19,32,0.6) 100%);
}
/* Na wąskich ekranach oraz przy ograniczonych animacjach nie ładujemy
   wideo - zostaje statyczne tło .hero-bg (obraz + gradient). */
@media (max-width:760px){
  .hero-video, .hero.has-video .hero-scrim{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  .hero-video, .hero.has-video .hero-scrim{ display:none; }
}
html.a11y-reduce-motion .hero-video,
html.a11y-reduce-motion .hero.has-video .hero-scrim{ display:none; }

/* ============================================================
   "PROFESJONALNA POMOC PRAWNA W 3 KROKACH" - nowy układ
   ============================================================ */
.steps-flow{
  list-style:none; margin:56px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:26px;
  position:relative;
  counter-reset:stepflow;
}
.steps-flow::before{
  content:''; position:absolute; left:10%; right:10%; top:33px; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold-500) 20%, var(--gold-500) 80%, transparent);
  z-index:0;
}
.step-node{ position:relative; display:flex; flex-direction:column; align-items:center; text-align:center; }
.step-node-index{
  position:relative; z-index:1;
  width:66px; height:66px; margin-bottom:24px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--cream-50);
  border:1px solid var(--gold-500);
  font-family:'Manrope', sans-serif; font-weight:800; font-size:19px;
  background-image:linear-gradient(180deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  box-shadow:0 0 0 6px var(--cream-50);
}
.step-node-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 26px 28px;
  width:100%; flex:1;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.step-node:hover .step-node-card{
  transform:translateY(-5px);
  box-shadow:var(--shadow-soft);
  border-color:rgba(196,154,66,0.4);
}
.step-node-ico{
  display:flex; align-items:center; justify-content:center;
  width:46px; height:46px; margin:0 auto 16px;
  color:var(--gold-600);
}
.step-node-ico svg{ width:100%; height:100%; }
.step-node-card h3{ font-size:19px; color:var(--navy-950); }
.step-node-card p{ margin-top:11px; font-size:14.5px; line-height:1.62; color:var(--slate-500); }

@media (max-width:900px){
  .steps-flow{ grid-template-columns:1fr; gap:16px; max-width:480px; margin-left:auto; margin-right:auto; }
  .steps-flow::before{ display:none; }
  .step-node{ display:grid; grid-template-columns:56px 1fr; gap:20px; text-align:left; align-items:start; }
  .step-node-index{ width:56px; height:56px; margin:0; font-size:16px; box-shadow:none; }
  .step-node-ico{ margin:0 0 12px; }
}

/* ============================================================
   SEKCJA "Z BLOGA" NA STRONIE GŁÓWNEJ
   ============================================================ */
.blog-teaser{
  position:relative;
  background:var(--navy-950);
  border-top:none;
  overflow:hidden;
}
.blog-teaser::before{
  content:'';
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(1000px 360px at 12% -10%, rgba(196,154,66,0.16), transparent 70%),
    linear-gradient(180deg, #0d1c33, var(--navy-950));
}
.blog-teaser > .container{ position:relative; z-index:2; }
.blog-teaser .section-eyebrow{ color:rgba(250,245,233,0.75); }
.blog-teaser .section-eyebrow::before{ background:var(--gold-400); }
.blog-teaser .section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:32px;
  margin-bottom:52px; flex-wrap:wrap;
}
.blog-teaser .section-head h2{ font-size:clamp(28px, 3.4vw, 42px); color:var(--cream-50); }
.blog-teaser-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:28px;
}
.blog-teaser-card{
  display:flex; flex-direction:column;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}
.blog-teaser-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); border-color:rgba(196,154,66,0.4); }
.btc-media{ display:block; aspect-ratio:16/10; background:var(--navy-900); overflow:hidden; }
.btc-media img{ width:100%; height:100%; object-fit:cover; filter:grayscale(30%) contrast(1.03); transition:transform .6s var(--ease), filter .4s ease; }
.blog-teaser-card:hover .btc-media img{ transform:scale(1.05); filter:grayscale(0%); }
.btc-media-empty{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:linear-gradient(150deg, var(--navy-800), var(--navy-950)); }
.btc-media-empty span{ font-family:'Fraunces', serif; font-style:italic; font-size:60px; color:var(--gold-400); opacity:0.85; }
.btc-body{ display:flex; flex-direction:column; flex:1; padding:24px 24px 22px; }
.btc-date{ font-size:12.5px; color:var(--slate-500); letter-spacing:0.02em; }
.btc-body h3{ margin:10px 0 0; font-size:19px; line-height:1.3; font-family:'Manrope',sans-serif; font-weight:800; letter-spacing:-0.01em; }
.btc-body h3 a{ color:var(--navy-950); text-decoration:none; }
.btc-body h3 a:hover{ color:var(--gold-600); }
.btc-body p{ margin:10px 0 18px; font-size:14px; line-height:1.6; color:var(--slate-500); display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.btc-readmore{ margin-top:auto; display:inline-flex; align-items:center; gap:7px; font-family:'Manrope',sans-serif; font-weight:700; font-size:13.5px; color:var(--navy-950); }
.blog-teaser-card:hover .btc-readmore{ color:var(--gold-600); }
.blog-teaser-card:hover .btc-readmore svg{ transform:translateX(3px); }
.btc-readmore svg{ transition:transform .3s var(--ease); }

@media (max-width:980px){
  .blog-teaser-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  .blog-teaser-grid{ grid-template-columns:1fr; gap:20px; }
  .blog-teaser .section-head{ margin-bottom:36px; }
}
