:root{
    --bg: #ffffff;
    --text: #0f172a;          /* почти чёрный */
    --muted: #64748b;         /* серый для подзаголовка */
    --brand: #b8996a;         /* песочно‑золотой как в примере */
    --btn-text: #fff;
    --accent:#c1a875;
    --card:#ffffff;
    --card-text:#1f1f1f;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  * { box-sizing: border-box; }
  html, body { height: 100%; }
  body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
  }

  /* ====== ШАПКА ====== */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(8px);
    background: rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(15,23,42,.06);
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .logo {
    font-weight: 800;
    letter-spacing: .2px;
  }
  .menu {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .menu a {
    text-decoration: none;
    color: var(--text);
    opacity: .8;
    font-weight: 600;
  }
  .menu a:hover { opacity: 1; }

  /* Бургер */
  .burger {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border: 1px solid rgba(15,23,42,.12);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
  }
  .burger-lines, .burger-lines::before, .burger-lines::after{
    content:"";
    display:block;
    width:20px; height:2px;
    background: var(--text);
    position: relative;
    transition: .25s ease;
  }
  .burger-lines::before{ position:absolute; top:-6px; }
  .burger-lines::after{ position:absolute; top:6px; }
  .burger.active .burger-lines{ background: transparent; }
  .burger.active .burger-lines::before{ top:0; transform: rotate(45deg); }
  .burger.active .burger-lines::after { top:0; transform: rotate(-45deg); }

  /* Мобильное меню (overlay) */
  .mobile-panel{
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    height: 100vh;
    padding: 20px;
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: .2s ease;
  }
  .mobile-panel.open{
    opacity: 1; pointer-events: auto;
    transform: none;
  }
  .mobile-panel a{
    display:block;
    padding: 14px 6px;
    text-decoration:none;
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid rgba(15,23,42,.06);
  }

  /* ====== HERO ====== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* левый крупнее */
    gap: 0;
  }
  .hero__media{
    position: relative;
    overflow: hidden;
  }
  .hero__media::before{
    /* Замените URL на своё фото при необходимости */
    content:"";
    position:absolute; inset:0;
   
    /* картинка слева, как в примере */
    filter: saturate(105%);
  }
  .hero__content{
    padding: 120px 24px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__inner{
    max-width: 520px;
  }
  .eyebrow{
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .6;
    margin-bottom: 8px;
    font-size: 12px;
  }
  .h1{
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.08;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -.02em;
  }
  .h1 .accent{ color: var(--brand); }
  .sub{
    color: var(--muted);
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.6;
  }
  .cta{
    display:inline-block;
    background: var(--brand);
    color: var(--btn-text);
    text-decoration: none;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 999px;
    letter-spacing: .02em;
    box-shadow: 0 10px 18px rgba(184,153,106,.22);
  }
  .cta:active{ transform: translateY(1px); }


  @media (max-width: 1024px){
    .hero{ grid-template-columns: 1fr; }
    .hero__media{ min-height: 54vh; }

    .hero__content{ padding-top: 20px; }
  }
  @media (max-width: 860px){
    .menu{ display:none; }
    .burger{ display: inline-flex; }
  }
  .practice__icon i {
    font-size: 24px;
    color: #fff;
  }
  .practice {
    --practice-bg: #3a3b41;
    --practice-accent: #b8996a;
    --practice-muted: #b9c0cd;
    background: var(--practice-bg);
    color: #e8eaee;
    padding: 72px 20px;
  }
  
  .practice__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: start;
  }
  
  .practice__title {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
  }
  .practice__title--accent {
    color: var(--practice-accent);
  }
  
  .practice__text {
    color: var(--practice-muted);
    margin: 0 0 14px;
    line-height: 1.7;
    max-width: 560px;
  }
  
  .practice__btn {
    display: inline-block;
    margin-top: 14px;
    text-decoration: none;
    background: var(--practice-accent);
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 18px rgba(184, 153, 106, 0.25);
  }
  
  .practice__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
  }
  
  .practice__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
  }
  
  .practice__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .practice__icon svg {
    width: 26px;
    height: 26px;
    fill: #e8eaee;
    opacity: 0.95;
  }
  
  .practice__name {
    color: #e8eaee;
    text-decoration: none;
    font-weight: 700;
  }
  .practice__name:hover {
    color: var(--practice-accent);
  }
  
  .practice__desc {
    margin: 6px 0 0;
    color: var(--practice-muted);
    line-height: 1.6;
    font-size: 15px;
  }
  
  .practice__more {
    padding-left: 72px;
  }
  .practice__more a {
    color: #e8eaee;
    opacity: 0.9;
    text-decoration: none;
    font-weight: 700;
  }
  .practice__more a:hover {
    color: var(--practice-accent);
  }
  
  @media (max-width: 980px) {
    .practice__container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .practice__more {
      padding-left: 0;
    }
  }
  .experience {
    background-color: #2f2e36;
    color: #fff;
    padding: 90px 20px;
   
  }
  
  .experience__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .experience__header {
    flex: 1 1 100%;
    max-width: 400px;
  }
  
  .experience__title {
    font-size: 32px;
    line-height: 1.4;
    color: #fff;
  }
  
  .experience__title--highlight {
    color: #c1a875;
    font-weight: 700;
  }
  
  .experience__stats {
    flex: 1 1 60%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }
  
  .experience__stat {
    display: flex;
    flex-direction: column;
  }
  
  .experience__number {
    font-size: 48px;
    color: #c1a875;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .experience__label strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
  }
  
  .experience__label p {
    font-size: 14px;
    line-height: 1.4;
    color: #bcbcc4;
  }
  .testimonials{
    padding: 90px 0;
  }
  .testimonials__head{margin-bottom:28px;}
  .testimonials__title{
    font-weight:700; font-size:48px; line-height:1.1; margin:0;
  }
  .testimonials__title b{color:var(--accent); font-weight:800;}

  /* Swiper area */
  .testimonials__slider{position:relative; padding-bottom:72px;}
 

  .testimonials-card{
    background:transparent;
    display:flex; flex-direction:column; gap:18px;
  }
  .testimonials-card__bubble{
    position:relative;
    background:var(--card);
    color:var(--card-text);
    border-radius:2px;
    padding:28px;
    line-height:1.6;
    box-shadow:0 10px 24px rgba(0,0,0,.15);
    min-height:240px;
  }

  .testimonials-card__author{display:flex; align-items:center; gap:14px;}
  .testimonials-card__avatar{
    width:44px; height:44px; border-radius:50%; overflow:hidden; flex:0 0 auto;
    background:#444;
  }
  .testimonials-card__avatar img{width:100%; height:100%; object-fit:cover;}
  .testimonials-card__name{font-weight:700;}
  .testimonials-card__role{color:var(--muted); font-size:13px;}

  /* Навигация/пагинация */
  .testimonials__controls{
    position:absolute; left:50%; bottom:0; transform:translateX(-50%);
    display:flex; align-items:center; gap:10px;
  }
  .testimonials__btn{
    font-size: 30px;
    width:40px; height:40px; border:none; border-radius:6px;
    background:var(--accent); color:#1f1f1f; cursor:pointer;
    display:inline-flex; align-items:center; justify-content:center;
  }
  .swiper-pagination{position:absolute; bottom:12px!important;}
  .swiper-pagination-bullet{
    background:#8c8c96; opacity:.6; width:8px; height:8px;
  }
  .swiper-pagination-bullet-active{background:var(--accent); opacity:1;}

  /* Адаптив */
  @media (max-width:1024px){
    .testimonials__title{font-size:40px;}
  }
  @media (max-width:640px){
    .testimonials__title{font-size:34px;}
  }
  .expertise {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .expertise h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .expertise h2 span {
    color: #c4a063;
    font-weight: bold;
  }
  
  .expertise__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  
  .expertise__card {
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .expertise__card:hover {
    transform: translateY(-5px);
  }
  
  .expertise__icon {
    width: 40px;
    height: 40px;
    background-color: #c4a063;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .expertise__card h3 {
    font-size: 18px;
    margin: 0 0 15px;
  }
  
  .expertise__card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .expertise__card a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
  }
  
  .expertise__card a:hover {
    text-decoration: underline;
  }
  .call-div {
    position: relative;
 /* Замени на путь к изображению */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 400px;
    margin: 40px auto;
    max-width: 1100px;
    overflow: hidden;
  }
  
  .call-div__overlay {
    background-color: rgba(0, 0, 0, 0.5); /* затемнение */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .call-div__content {
    color: #fff;
    padding: 20px;
  }
  
  .call-div__content h2 {
    font-size: 28px;
    max-width: 700px;
    margin-bottom: 20px;
  }
  
  .call-btn {
    background-color: #c4a063;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .call-btn:hover {
    background-color: #b89250;
  }
  .footer {
    background-color: #2f2f36;
    color: #fff;
    padding: 90px 20px 30px;
   
  }
  
  .footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer__column {
    flex: 1 1 200px;
  }
  
  .footer__column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .footer__column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer__column ul li {
    margin-bottom: 10px;
  }
  
  .footer__column ul li a,
  .footer__column p a {
    color: #c4a063;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer__column p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
  }
  
  .footer__social a {
    display: inline-block;
    background-color: #c4a063;
    color: #fff;
    margin-right: 6px;
    padding: 8px;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .footer__bottom {
    text-align: center;
    color: #ccc;
    font-size: 13px;
    margin-top: 40px;
  }
  
  .footer__bottom span {
    color: red;
  }
  
  .footer__bottom a {
    color: #c4a063;
    text-decoration: none;
  }
  .practice__content img,
  .practice__list img{
    width: 100%;
    border-radius: 10px;
  }
  .practice__container + .practice__container{
    margin-top: 60px;
  }
  .experience__header img,
  .experience__stats img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
  }
  .experience__container + .experience__container{
    margin-top: 80px;
  }
  .about-us {
    background-color: #2f2e35;
    color: #fff;
    padding: 90px 0;
    font-family: sans-serif;
  }
  .about-us__wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  .about-us__left, .about-us__right {
    flex: 1;
    min-width: 300px;
  }
  .about-us__title {
    font-size: 36px;
    color: #fff;
  }
  .about-us__title span {
    color: #c5a873;
    font-weight: bold;
  }
  .about-us__text {
    margin-top: 20px;
    color: #ccc;
  }
  .about-us__list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
  }
  .about-us__list li {
    margin-bottom: 10px;
    color: #e0e0e0;
  }
  
  .accordion .accordion-item {
    background-color: #44434d;
    margin-bottom: 10px;
    border-radius: 4px;
  }
  .accordion .accordion-item.active .accordion-header {
    background-color: #c5a873;
    color: #fff;
  }
  .accordion-header {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
  }
  .accordion-body {
    padding: 15px 20px;
    color: #ccc;
  }
  .accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ccc;
  }
  
  .accordion-item.active .accordion-body {
    max-height: 200px; /* або auto з JS */
    padding: 15px 20px;
  }
  .contact-us {
    background-color: #2e2d35;
    padding: 90px 20px;
    color: #fff;
  }
  
  .contact-us__title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .contact-us__title span {
    color: #c3a774;
    font-weight: bold;
  }
  
  .contact-us__content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-us__form {
    flex: 1;
    min-width: 300px;
  }
  
  .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group.full {
    flex-direction: column;
  }
  
  input, textarea {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #999;
    color: #fff;
    font-size: 16px;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-bottom: 1px solid #c3a774;
  }
  
 .contact-us .btn {
    background-color: #c3a774;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-us .btn:hover {
    background-color: #b29860;
  }
  
  .contact-us__info {
    flex: 1;
    min-width: 250px;
    font-size: 16px;
  }
  
  .contact-us__info p {
    margin-bottom: 15px;
  }
  
  .contact-us__social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #c3a774;
    transition: 0.3s;
  }
  
  .contact-us__social a:hover {
    color: #fff;
  }
  .blog {
    padding: 80px 0;
    background-color: #2f2f38;
    color: #fff;
  }
  
  .div-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .div-title span {
    color: #c3a774;
    font-weight: bold;
  }
  
  .blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .blog__item {
    background: #3b3b45;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .blog__item:hover {
    transform: translateY(-5px);
  }
  
  .blog__item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .blog__item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .blog__item p {
    font-size: 15px;
    color: #ccc;
  }
  
  .blog__link {
    display: inline-block;
    margin-top: 10px;
    color: #c3a774;
    font-weight: 600;
    text-decoration: none;
  }
  
  .blog__link:hover {
    text-decoration: underline;
  }
  .post-detail {
    padding: 80px 20px;
    background-color: #2f2f38;
    color: #fff;
    line-height: 1.7;
  }
  
  .post-detail__title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .post-detail__meta {
    color: #aaa;
    margin-bottom: 30px;
  }
  
  .post-detail__image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  
  .post-detail__content p {
    margin-bottom: 20px;
    color: #ddd;
  }
  
  .post-detail__content ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .post-detail__content ul li {
    margin-bottom: 10px;
  }
  
  .post-detail__content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #c3a774;
  }
  
  .post-detail__content blockquote {
    font-style: italic;
    border-left: 4px solid #c3a774;
    padding-left: 15px;
    margin: 20px 0;
    color: #c3a774;
  }
  
  .post-detail__back a {
    display: inline-block;
    margin-top: 40px;
    color: #c3a774;
    text-decoration: none;
    font-weight: 600;
  }
  
  .post-detail__back a:hover {
    text-decoration: underline;
  }
  .faq {
    background-color: #2b2b33;
    padding: 80px 20px;
    color: #fff;
  }
  
  .faq__container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq__title {
    text-align: center;
    color: #c3a774;
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .faq__item {
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
  }
  
  .faq__question {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  }
  
  .faq__answer {
    display: none;
    padding: 10px 0 20px;
    color: #ccc;
  }
  
  .faq__question.active + .faq__answer {
    display: block;
  }
  
  .faq__icon {
    color: #c3a774;
  }
  .testimonial {
    background-color: #1f1f27;
    padding: 80px 20px;
    color: #fff;
  }
  
  .testimonial__title {
    text-align: center;
    color: #c3a774;
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .testimonial__cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .testimonial__card {
    background-color: #2a2a33;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #3c3c48;
  }
  
  .testimonial__text {
    font-style: italic;
    color: #ddd;
    margin-bottom: 15px;
  }
  
  .testimonial__author {
    text-align: right;
    font-weight: bold;
    color: #c3a774;
  }
  .testimonial__container{
    max-width: 1000px;
    margin: 0 auto;
  }
  .terms{
    padding: 90px 0;
  }
  .terms__container{
    padding: 0 15px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #1e1e26;
    color: #ffffff;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    animation: fadeIn 0.5s ease;
    flex-wrap: wrap;
  }
  
  .cookie-banner__text {
    flex: 1 1 300px;
    font-size: 16px;
    margin: 0;
  }
  
  .cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .cookie-banner__btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .cookie-banner__btn--accept {
    background-color: #4caf50;
    color: #fff;
  }
  
  .cookie-banner__btn--accept:hover {
    background-color: #45a049;
  }
  
  .cookie-banner__btn--decline {
    background-color: #f44336;
    color: #fff;
  }
  
  .cookie-banner__btn--decline:hover {
    background-color: #e53935;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media screen and (max-width:768px) {
    .form-group

 {
    display: flex
;
    gap: 20px;
    margin-bottom: 20px;
    flex-direction: column;
}
  }