@charset "UTF-8";
/* === «Ты в порядке» — каталог психологов === */

  :root {
    --bg: #0E2228;
    --bg-lift: #152D33;
    --bg-soft: #1A353B;
    --ink: #F8F5EF;
    --muted: #9BAEAD;
    --dim: #6B8582;
    --line: rgba(77,124,125,0.12);
    --glow: #5A9E9F;
    --glow-soft: rgba(90,158,159,0.15);
    --glow-dim: #4A8586;
    --rose: #C97B73;
    --warm: #C58B32;
    --photo: #0D1E23;
    --shadow: rgba(0,0,0,0.25);
  }
  .tvp, .tvp *, .tvp *::before, .tvp *::after { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }
  body, .tvp {
    font-family:'Onest',system-ui,sans-serif;
    color:var(--ink);
    background:var(--bg);
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    font-size:16px;
    overflow-x:hidden;
  }
  body::before {
    content:"";
    position:fixed; inset:0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 30%, rgba(90,158,159,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 85% 70%, rgba(201,123,115,0.04) 0%, transparent 50%);
    pointer-events:none; z-index:0;
  }
  body::after {
    content:"";
    position:fixed; inset:0;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events:none; z-index:9999;
  }

  .page { max-width:1200px; margin:0 auto; padding:0 5%; position:relative; z-index:1; }

  /* Header */
  .header {
    display:flex; flex-wrap:wrap; gap:12px;
    justify-content:space-between; align-items:center;
    padding:28px 5%;
    position:relative;
  }
  .header::after {
    content:"";
    position:absolute; bottom:0; left:5%; right:5%;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--line), transparent);
  }
  .header-logo {
    font-family:'Lora',serif;
    font-size:20px;
    letter-spacing:0.01em;
    color:var(--ink);
    text-decoration:none;
  }
  .header-back {
    font-size:13px;
    color:var(--glow);
    text-decoration:none;
    padding-bottom:2px;
    border-bottom:1px solid rgba(90,158,159,0.3);
    transition:border-color 0.3s;
  }
  .header-back:hover { border-color:var(--glow); }

  /* Page header */
  .page-header {
    padding:60px 0 40px;
  }
  .page-title {
    font-family:'Lora',Georgia,serif;
    font-size:clamp(32px, 5vw, 56px);
    font-weight:400;
    line-height:1.1;
    letter-spacing:-0.015em;
    margin-bottom:12px;
  }
  .page-sub {
    font-size:17px;
    color:var(--muted);
    max-width:540px;
    line-height:1.7;
  }

  /* Search & filters */
  .controls {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:40px;
    align-items:center;
  }
  .search-box {
    position:relative;
    flex:1 1 300px;
    min-width:260px;
  }
  .search-box input {
    width:100%;
    min-height:52px;
    padding:0 20px 0 48px;
    background:rgba(255,255,255,0.03);
    border:1px solid var(--line);
    border-radius:14px;
    color:var(--ink);
    font-family:'Onest',sans-serif;
    font-size:15px;
    outline:none;
    transition:all 0.3s;
  }
  .search-box input::placeholder { color:var(--dim); }
  .search-box input:focus {
    border-color:var(--glow);
    background:rgba(90,158,159,0.05);
  }
  .search-box svg {
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    width:18px; height:18px;
    stroke:var(--dim);
    fill:none;
    stroke-width:2;
  }

  .filter-row {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }
  .filter-chip {
    min-height:44px;
    padding:0 18px;
    font-family:'Onest',sans-serif;
    font-size:13px;
    cursor:pointer;
    border:1px solid var(--line);
    background:rgba(255,255,255,0.02);
    color:var(--ink);
    border-radius:12px;
    transition:all 0.3s ease;
    white-space:nowrap;
  }
  .filter-chip:hover, .filter-chip.active {
    background:var(--glow);
    border-color:var(--glow);
    color:var(--bg);
    box-shadow:0 4px 16px rgba(90,158,159,0.25);
  }

  /* Grid */
  .psychs-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap:24px;
    padding-bottom:80px;
  }
  .psych-card {
    background:rgba(255,255,255,0.02);
    border:1px solid var(--line);
    border-radius:24px;
    padding:16px;
    transition:all 0.4s ease;
    cursor:pointer;
  }
  .psych-card:hover {
    transform:translateY(-6px);
    border-color:rgba(90,158,159,0.2);
    box-shadow:0 16px 40px rgba(0,0,0,0.2);
  }
  .psych-card.hidden { display:none; }
  .psych-photo {
    position:relative;
    aspect-ratio:4/5;
    background:var(--photo);
    border-radius:16px;
    overflow:hidden;
    margin-bottom:16px;
  }
  .psych-photo img {
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    filter:grayscale(20%) contrast(1.05);
    transition:filter 0.4s;
  }
  .psych-card:hover .psych-photo img {
    filter:grayscale(0%) contrast(1.1);
  }
  .psych-photo::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(14,34,40,0.5) 0%, transparent 40%);
    pointer-events:none;
  }
  .psych-name {
    font-family:'Lora',serif;
    font-size:19px;
    color:var(--ink);
    margin-bottom:4px;
  }
  .psych-meta {
    font-size:11px;
    letter-spacing:0.06em;
    color:var(--dim);
    margin-bottom:10px;
    text-transform:uppercase;
  }
  .psych-topics {
    font-size:13.5px;
    line-height:1.6;
    color:var(--muted);
    margin-bottom:12px;
  }
  .psych-tags {
    display:flex;
    flex-wrap:wrap;
    gap:6px;
  }
  .psych-tag {
    font-size:11px;
    padding:4px 10px;
    background:rgba(90,158,159,0.08);
    color:var(--glow);
    border-radius:6px;
  }
  .psych-slot {
    margin-top:12px;
    font-size:12px;
    color:var(--glow);
    padding:6px 12px;
    background:rgba(90,158,159,0.08);
    border-radius:8px;
    display:inline-block;
  }

  /* Psychologist profile modal */
  .modal-overlay {display:none;position:fixed;inset:0;z-index:200;background:rgba(7,20,24,.90);backdrop-filter:blur(14px);align-items:center;justify-content:center;padding:20px;}
  .modal-overlay.active {display:flex;}
  .modal-box {width:min(960px,100%);max-height:calc(100dvh - 40px);background:var(--bg-lift);border:1px solid rgba(90,158,159,.18);border-radius:28px;position:relative;overflow:hidden;box-shadow:0 30px 90px rgba(0,0,0,.5);animation:modalIn .38s cubic-bezier(.22,1,.36,1);}
  @keyframes modalIn {from{opacity:0;transform:translateY(24px) scale(.985)}to{opacity:1;transform:none}}
  .modal-close {position:absolute;top:16px;right:16px;width:42px;height:42px;background:rgba(14,34,40,.86);border:1px solid rgba(255,255,255,.10);color:var(--ink);font-size:22px;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center;border-radius:14px;transition:all .25s;backdrop-filter:blur(10px);}
  .modal-close:hover {background:var(--glow);color:var(--bg);border-color:var(--glow);}
  .modal-content {display:grid;grid-template-columns:minmax(280px,35%) 1fr;min-height:560px;max-height:calc(100dvh - 40px);}
  .modal-photo {min-height:560px;background:var(--photo);position:relative;overflow:hidden;}
  .modal-photo::after {content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(14,34,40,.32),transparent 46%);pointer-events:none;}
  .modal-photo img {width:100%;height:100%;object-fit:cover;display:block;position:absolute;inset:0;}
  .modal-info {min-width:0;padding:42px 46px 38px;overflow-y:auto;overscroll-behavior:contain;}
  .modal-kicker {font-size:10px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;color:var(--glow);margin-bottom:10px;}
  .modal-name {font-family:'Lora',serif;font-size:clamp(29px,4vw,38px);line-height:1.08;font-weight:400;margin:0 52px 8px 0;}
  .modal-meta {font-size:14px;line-height:1.55;color:var(--muted);margin-bottom:18px;text-transform:none;letter-spacing:0;}
  .modal-tags {display:flex;flex-wrap:wrap;gap:7px;margin:0 0 28px;}
  .modal-tags .psych-tag {font-size:11.5px;padding:6px 11px;}
  .modal-section {padding-top:22px;margin-top:22px;border-top:1px solid var(--line);}
  .modal-section-title {font-size:10px;font-weight:600;letter-spacing:.12em;color:var(--glow);text-transform:uppercase;margin-bottom:10px;}
  .modal-section-text {font-size:14.5px;line-height:1.7;color:var(--muted);}
  .modal-education li:last-child {border-bottom:0;}
  .modal-education li::before {content:"";position:absolute;left:1px;top:18px;width:6px;height:6px;border-radius:50%;background:var(--glow);opacity:.7;}
  .modal-source-note {margin-top:16px;font-size:11.5px;line-height:1.5;color:var(--dim);}
  .modal-cta {display:flex;align-items:center;justify-content:center;min-height:54px;padding:0 28px;background:var(--glow);color:var(--bg);font-size:15px;font-weight:600;text-decoration:none;border-radius:15px;transition:all .3s;box-shadow:0 4px 20px rgba(90,158,159,.2);border:none;cursor:pointer;flex:1 1 auto;margin-top:0;}
  .modal-cta:hover {transform:translateY(-2px);box-shadow:0 8px 28px rgba(90,158,159,.3);}
  @media(max-width:720px){.modal-overlay{padding:0;align-items:stretch}.modal-box{width:100%;max-height:100dvh;height:100dvh;border-radius:0;border:0}.modal-content{display:block;max-height:100dvh;min-height:0;overflow-y:auto}.modal-photo{height:38vh;min-height:270px;max-height:380px}.modal-photo img{position:relative}.modal-info{overflow:visible;padding:28px 20px 34px}.modal-name{margin-right:36px;font-size:30px}.modal-close{position:fixed;top:12px;right:12px}.modal-actions{position:sticky;bottom:0;margin:24px -20px -34px;padding:18px 20px calc(18px + env(safe-area-inset-bottom))}}

  /* Footer */
  .footer {
    display:flex; flex-wrap:wrap;
    gap:10px 30px;
    justify-content:space-between;
    padding:32px 5% 36px;
    position:relative;
    font-size:10px;
    letter-spacing:0.06em;
    line-height:1.8;
    color:var(--dim);
  }
  .footer::before {
    content:"";
    position:absolute; top:0; left:5%; right:5%;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--line), transparent);
  }

  @media(max-width:640px){
    .psychs-grid { grid-template-columns:1fr; }
    .modal-photo { flex:0 0 200px; min-height:250px; }
    .modal-info { padding:24px; }
    .page-title { font-size:28px; }
  }
  .catalog-note { width:100%; margin-top:-2px; font-size:12px; line-height:1.55; color:var(--dim); }
  .empty-grid { grid-column:1/-1; padding:36px 24px; border:1px solid var(--line); border-radius:20px; color:var(--muted); text-align:center; }



@media (max-width: 760px) {
  html, body { overflow-x:hidden; }
  .page { padding-left:20px; padding-right:20px; }
  .header { padding:18px 20px 16px; min-height:58px; }
  .header::after { left:20px; right:20px; }
  .header-logo { font-size:18px; }
  .header-back { font-size:12px; }
  .page-header { padding:36px 0 24px; }
  .page-title { font-size:34px; margin-bottom:10px; }
  .page-sub { font-size:14.5px; line-height:1.6; }
  .controls { display:block; margin-bottom:24px; }
  .search-box { width:100%; min-width:0; }
  .search-box input { min-height:50px; font-size:14px; padding-right:14px; }
  .filter-row {
    width:calc(100% + 20px);
    margin-top:12px;
    margin-right:-20px;
    padding:0 20px 6px 0;
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .filter-row::-webkit-scrollbar { display:none; }
  .filter-chip { flex:0 0 auto; min-height:40px; padding:0 14px; font-size:12px; }

  .psychs-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; padding-bottom:60px; }
  .psych-card { padding:9px; border-radius:18px; min-width:0; }
  .psych-photo { border-radius:13px; margin-bottom:10px; }
  .psych-name { font-size:16px; line-height:1.15; }
  .psych-meta { font-size:9px; line-height:1.3; margin-bottom:6px; }
  .psych-topics { font-size:11px; line-height:1.35; margin-bottom:7px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
  .psych-tags { gap:4px; }
  .psych-tag { font-size:9.5px; padding:3px 6px; }
  .psych-slot { margin-top:7px; font-size:10px; padding:5px 7px; }

  .footer { padding:26px 20px 34px; display:block; }
  .footer > * + * { margin-top:8px; }

  .modal-overlay { padding:0; align-items:stretch; }
  .modal-box { width:100%; height:100dvh; max-height:100dvh; border-radius:0; border:0; }
  .modal-content { display:block; max-height:100dvh; min-height:0; overflow-y:auto; }
  .modal-photo { height:34vh; min-height:250px; max-height:330px; }
  .modal-info { overflow:visible; padding:24px 20px 34px; }
  .modal-name { margin-right:38px; font-size:29px; }
  .modal-close { position:fixed; top:12px; right:12px; }
  .modal-actions { position:sticky; bottom:0; margin:24px -20px -34px; padding:16px 20px calc(16px + env(safe-area-inset-bottom)); }
}
@media (max-width: 360px) {
  .page { padding-left:16px; padding-right:16px; }
  .header { padding-left:16px; padding-right:16px; }
  .psychs-grid { gap:8px; }
  .psych-card { padding:8px; }
  .psych-name { font-size:15px; }
}


@media (max-width:760px){
  html,body{min-height:100%;overflow-x:hidden;overflow-y:auto!important;-webkit-overflow-scrolling:touch}
  .psychs-grid{display:grid!important;grid-template-columns:1fr!important;gap:14px!important;padding-bottom:56px!important}
  .psych-card{display:block;min-width:0!important;max-width:none!important;width:100%!important;padding:12px!important;border-radius:20px!important}
  .psych-card.hidden{display:none!important}
  .psych-photo{aspect-ratio:4/5!important;min-height:0!important;border-radius:15px!important;margin-bottom:12px!important}
  .psych-name{font-size:18px!important;line-height:1.2!important}
  .psych-meta{font-size:10px!important;line-height:1.4!important}
  .controls{margin-bottom:22px!important}
  .filter-row{margin-bottom:0!important}
  .catalog-note{margin-top:12px!important}
}


  .filter-radio {
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    opacity:0 !important;
    pointer-events:none !important;
  }
  .filter-chip {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    user-select:none;
    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
  }
  .filter-chip.active { background:rgba(255,255,255,0.02); border-color:var(--line); color:var(--ink); box-shadow:none; }
  #filter-all:checked ~ .controls label[for="filter-all"],
  #filter-gestalt:checked ~ .controls label[for="filter-gestalt"],
  #filter-cbt:checked ~ .controls label[for="filter-cbt"],
  #filter-analytic:checked ~ .controls label[for="filter-analytic"],
  #filter-family:checked ~ .controls label[for="filter-family"],
  #filter-perinatal:checked ~ .controls label[for="filter-perinatal"],
  #filter-art:checked ~ .controls label[for="filter-art"],
  #filter-clinical:checked ~ .controls label[for="filter-clinical"],
  #filter-act:checked ~ .controls label[for="filter-act"] {
    background:var(--glow);
    border-color:var(--glow);
    color:var(--bg);
    box-shadow:0 4px 16px rgba(90,158,159,0.25);
  }

  /* These selectors are the actual filter. They work even with JavaScript disabled. */
  #filter-gestalt:checked ~ .psychs-grid .psych-card:not([data-tags~="gestalt"]),
  #filter-cbt:checked ~ .psychs-grid .psych-card:not([data-tags~="cbt"]),
  #filter-analytic:checked ~ .psychs-grid .psych-card:not([data-tags~="analytic"]),
  #filter-family:checked ~ .psychs-grid .psych-card:not([data-tags~="family"]),
  #filter-perinatal:checked ~ .psychs-grid .psych-card:not([data-tags~="perinatal"]),
  #filter-art:checked ~ .psychs-grid .psych-card:not([data-tags~="art"]),
  #filter-clinical:checked ~ .psychs-grid .psych-card:not([data-tags~="clinical"]),
  #filter-act:checked ~ .psychs-grid .psych-card:not([data-tags~="act"]) {
    display:none !important;
  }
  .psych-card.search-hidden { display:none !important; }

  @media(max-width:760px){
    .filter-row {
      position:relative;
      z-index:20;
      touch-action:pan-x;
      overscroll-behavior-x:contain;
    }
    .filter-chip {
      min-height:44px !important;
      padding:0 16px !important;
      cursor:pointer;
    }
  }


  .profile-link{color:inherit;text-decoration:none;-webkit-tap-highlight-color:transparent;touch-action:manipulation}
  .static-profile-overlay{
    display:none;position:fixed;inset:0;z-index:9999;
    align-items:center;justify-content:center;
    padding:20px;background:rgba(7,20,24,.92);
    backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
    overflow-y:auto;overscroll-behavior:contain;
  }
  .static-profile-overlay:target{display:flex}
  .static-profile-backdrop{position:absolute;inset:0;z-index:0;display:block;touch-action:none}
  .static-profile-panel{
    position:relative;z-index:1;width:min(960px,100%);max-height:calc(100dvh - 40px);
    overflow:auto;-webkit-overflow-scrolling:touch;
    background:var(--bg-lift);border:1px solid rgba(90,158,159,.18);
    border-radius:28px;box-shadow:0 30px 90px rgba(0,0,0,.5);
  }
  .static-profile-close{
    position:sticky;top:14px;float:right;z-index:5;margin:14px 14px -56px 0;
    width:44px;height:44px;border-radius:14px;display:flex;align-items:center;justify-content:center;
    border:1px solid rgba(255,255,255,.12);background:rgba(14,34,40,.92);
    color:var(--ink);font-size:25px;line-height:1;text-decoration:none;
    -webkit-tap-highlight-color:transparent;touch-action:manipulation;
  }
  .static-profile-content{display:grid;grid-template-columns:minmax(280px,38%) 1fr;min-height:560px}
  .static-profile-photo{min-height:560px;background:var(--photo);overflow:hidden}
  .static-profile-photo img{width:100%;height:100%;object-fit:cover;display:block}
  .static-profile-info{padding:52px 48px 44px;overflow:auto}
  .static-profile-kicker{font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--dim);margin-bottom:12px}
  .static-profile-name{font-family:'Lora',Georgia,serif;font-size:clamp(32px,4vw,46px);font-weight:400;line-height:1.08;margin:0 54px 8px 0;color:var(--ink)}
  .static-profile-role{font-size:14px;line-height:1.6;color:var(--muted);margin:0 0 16px}
  .static-profile-tags{display:flex;flex-wrap:wrap;gap:7px;margin:0 0 26px}
  .static-profile-tag{font-size:11px;padding:5px 9px;border:1px solid var(--line);border-radius:999px;color:var(--muted)}
  .static-profile-section{padding-top:22px;border-top:1px solid var(--line)}
  .static-profile-section-title{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--dim);margin:0 0 12px}
  .static-profile-education{margin:0;padding-left:19px;color:var(--muted);font-size:14px;line-height:1.65}
  .static-profile-education li+li{margin-top:8px}
  .static-profile-empty{font-size:14px;line-height:1.65;color:var(--muted);margin:0}
  .static-profile-actions{margin-top:26px;padding-top:22px;border-top:1px solid var(--line)}
  .static-profile-cta{display:flex;min-height:54px;align-items:center;justify-content:center;padding:0 22px;border-radius:15px;background:var(--glow);color:var(--bg);font-weight:600;font-size:15px;text-decoration:none;touch-action:manipulation}
  @media(max-width:720px){
    .static-profile-overlay{padding:0;align-items:stretch;background:var(--bg-lift)}
    .static-profile-panel{width:100%;height:100vh;height:100dvh;max-height:none;border:0;border-radius:0;box-shadow:none}
    .static-profile-content{display:block;min-height:0}
    .static-profile-photo{height:38vh;min-height:260px;max-height:360px}
    .static-profile-info{padding:28px 20px calc(34px + env(safe-area-inset-bottom));overflow:visible}
    .static-profile-name{font-size:30px;margin-right:46px}
    .static-profile-close{position:fixed;top:12px;right:12px;float:none;margin:0;background:rgba(14,34,40,.92)}
    .static-profile-actions{position:sticky;bottom:0;margin:24px -20px calc(-34px - env(safe-area-inset-bottom));padding:16px 20px calc(16px + env(safe-area-inset-bottom));background:linear-gradient(to top,var(--bg-lift) 78%,rgba(14,34,40,.92))}
  }

.psych-card.search-hidden{display:none!important}.profile-link{-webkit-tap-highlight-color:transparent;touch-action:manipulation}.static-profile-overlay:target{display:flex!important}body:has(.static-profile-overlay:target){overflow:hidden}@media(max-width:768px){.search-box input{font-size:16px!important}.filter-row{display:flex!important;flex-wrap:nowrap!important;overflow-x:auto!important;gap:8px!important;margin-left:-5%;margin-right:-5%;padding:0 5% 10px!important;scrollbar-width:none;-webkit-overflow-scrolling:touch;overscroll-behavior-x:contain}.filter-row::-webkit-scrollbar{display:none}.filter-chip{flex:0 0 auto!important;min-height:44px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;white-space:nowrap!important;touch-action:manipulation}.psychs-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}.psych-card{min-width:0!important;padding:10px!important;border-radius:18px!important}.psych-name{font-size:15px!important}.psych-meta{font-size:9px!important;line-height:1.35!important}.psych-tags{gap:4px!important}.psych-tag{font-size:9px!important;padding:4px 6px!important}.psych-slot{font-size:10px!important}.static-profile-panel{width:100%!important;height:100dvh!important;max-height:none!important;border:0!important;border-radius:0!important}.static-profile-content{display:block!important;min-height:0!important}.static-profile-photo{height:36vh!important;min-height:240px!important;max-height:340px!important}.static-profile-info{padding:26px 18px calc(32px + env(safe-area-inset-bottom))!important}.static-profile-close{position:fixed!important;top:12px!important;right:12px!important}}@media(max-width:390px){.psych-meta{display:none}}
.footer a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.16)}.footer a:hover{color:var(--ink);border-bottom-color:currentColor}.footer{align-items:flex-start}.footer .footer-main,.footer .footer-requisites,.footer .footer-links{flex:1 1 260px}@media(max-width:760px){.footer .footer-main,.footer .footer-requisites,.footer .footer-links{flex:1 1 100%}}

/* --- добавлено при разборе на блоки для Tilda --- */
.tvp { position:relative; z-index:1; }
