
    :root {
      --color-primary-900: #003A6B;
      --color-primary-800: #0F447A;
      --color-primary-700: #1A4E8A;
      --color-primary-600: #2563A6;
      --color-primary-500: #3B82F6;
      --color-primary-400: #60A5FA;
      --color-accent-500: #FF7A00;
      --color-accent-400: #FF9C40;
      --color-accent-300: #FFB366;
      --color-success: #00A86B;
      --color-warning: #FFDD00;
      --color-danger: #E34234;
      --color-dark-900: #1F1F23;
      --color-dark-700: #2B2F36;
      --color-dark-500: #3E4450;
      --color-gray-100: #F5F6F7;
      --color-gray-200: #E8EAED;
      --color-gray-300: #D1D5D9;
      --color-white: #FFFFFF;

      --gradient-hero: linear-gradient(135deg, #1A4E8A 0%, #003A6B 100%);
      --gradient-hero-dynamic: linear-gradient(90deg, #1A4E8A 0%, #FF7A00 100%);
      --gradient-btn-primary: linear-gradient(90deg, #FF7A00 0%, #FF9C40 100%);
      --gradient-btn-primary-hover: linear-gradient(90deg, #FF9C40 0%, #FF7A00 100%);
      --gradient-btn-secondary: linear-gradient(90deg, #1A4E8A 0%, #2563A6 100%);

      --radius-lg: 32px;
      --radius-md: 20px;

      --anim-duration: 1.2s;
      --anim-easing: cubic-bezier(0.22, 1, 0.36, 1);
    }


    @font-face {
      font-family: "Light";
      src: url("../fonts/Gilroy-Light.woff2") format("woff2");
      font-weight: normal;
      font-style: normal
  }
  
  @font-face {
      font-family: "Regular";
      src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
      font-style: normal;
      font-weight: normal
  }
  
  @font-face {
      font-family: "Medium";
      src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
      font-style: normal;
      font-weight: normal
  }
  
  @font-face {
      font-family: "Heavy";
      src: url("../fonts/Gilroy-Heavy.woff2") format("woff2");
      font-style: normal;
      font-weight: normal
  }
  
  @font-face {
      font-family: "Bold";
      src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
      font-style: normal;
      font-weight: normal
  }
  
  @font-face {
      font-family: "Black";
      src: url("../fonts/Gilroy-Black.woff2") format("woff2");
      font-style: normal;
      font-weight: normal
  }
  

    * {
      box-sizing: border-box;
      font-family: "Regular";
      outline: none;
      font-size: 16px;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      overflow-x: hidden;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.18);
      transition: all 0.35s ease;
      overflow: visible;
    }

    .header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }

    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 90px;
      transition: height 0.35s ease;
    }

    .logo img {
      height: 54px;
      width: auto;
      transition: transform 0.4s ease;
    }

    .logo:hover img {
      transform: scale(1.05);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-menu ul {
      list-style: none;
      display: flex;
      gap: 32px;
      margin: 0;
    }

    .nav-menu a {
      color: var(--color-primary-700);
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--color-accent-500);
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-accent-500);
      border-radius: 30px;
      transition: width 0.35s ease;
    }

    .nav-menu a:hover::after {
      width: 80%;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0,0,0,0.08);
      min-width: 300px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.18);
      border-radius: 14px;
      padding: 12px 0;
      z-index: 999;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
      display: block;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .dropdown-content li a {
      display: block;
      padding: 12px 28px;
      font-size: 15px;
      color: var(--color-primary-700);
      white-space: nowrap;
      transition: all 0.25s ease;
    }

    .dropdown-content li a:hover {
      background: rgba(255,122,0,0.08);
      color: var(--color-accent-500);
      padding-left: 36px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .header-contacts {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      font-size: 14px;
      color: var(--color-primary-700);
      gap: 6px;
    }

    .header-contacts .place {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .header-contacts img,
    .header-contacts svg {
      width: 20px;
      height: 20px;
      opacity: 0.85;
      filter: brightness(0.9);
    }

    .phone {
      color: var(--color-accent-500);
      font-weight: 700;
      font-size: 19px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .phone:hover {
      color: var(--color-accent-400);
      transform: scale(1.04);
    }

    .btn-callback {
      background: var(--gradient-btn-primary);
      color: white;
      padding: 14px 28px;
      border-radius: 12px;
      border: none;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(255,122,0,0.35);
      transition: all 0.35s ease;
      white-space: nowrap;
    }

    .btn-callback:hover {
      background: var(--gradient-btn-primary-hover);
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(255,122,0,0.5);
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 1001;
    }

    .burger span {
      width: 30px;
      height: 3.5px;
      background: var(--color-primary-700);
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    }

    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
    .burger.active span:nth-child(2) { opacity: 0; transform: scale(0.5); }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--color-primary-900);
      color: var(--color-white);
      padding: 110px 5% 60px;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
      z-index: 999;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu ul {
      list-style: none;
    }

    .mobile-menu li {
      margin: 18px 0;
    }

    .mobile-menu a {
      color: var(--color-white);
      font-size: 19px;
      font-weight: 600;
      text-decoration: none;
      display: block;
      padding: 14px 0;
      transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
      color: var(--color-accent-500);
      padding-left: 12px;
    }

    .mobile-menu .dropdown-content {
      position: static;
      background: none;
      box-shadow: none;
      padding: 8px 0 8px 28px;
      display: none;
      border-left: 2px solid rgba(255,122,0,0.3);
    }

    .mobile-menu .dropdown.active .dropdown-content {
      display: block;
    }

    .mobile-menu .dropdown > a::after {
      content: '▼';
      margin-left: 10px;
      font-size: 13px;
      opacity: 0.7;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: none; }
    }

    .animate {
      opacity: 0;
      animation: fadeUp var(--anim-duration) var(--anim-easing) forwards;
    }

    .d1 { animation-delay: 0.2s; }
    .d2 { animation-delay: 0.5s; }
    .d3 { animation-delay: 0.8s; }
    .d4 { animation-delay: 1.1s; }

    .hero {
      position: relative;
      min-height: 100vh;
      background: var(--gradient-hero);
      color: #fff;
      overflow: hidden;
      isolation: isolate;
      padding-top: 140px; /* высота хедера + запас */
      padding-bottom: 80px;
      padding-left: 5%;
      padding-right: 5%;
    }

    #stripes {
      position: absolute;
      inset: 0;
      width: 100vw;
      left: 50%;
      transform: translateX(-50%) skewY(-12deg);
      transform-origin: center top;
      background: linear-gradient(135deg, #1A4E8A 0%, #2563A6 50%, #3B82F6 100%);
      opacity: 0;
      animation: fadeInSimple 1.4s var(--anim-easing) 0.1s forwards;
      pointer-events: none;
      z-index: 1;
    }

    @keyframes fadeInSimple {
      to { opacity: 0.55; }
    }

    #stripes span {
      position: absolute;
      height: 40px;
      opacity: 0;
      filter: brightness(1.15) contrast(1.1);
      animation: fadeInSimple 1s var(--anim-easing) forwards;
    }

    #stripes :nth-child(1) { width: 50%; left: 50%; top: 40px; background: #3B82F6; animation-delay: 0.2s; }
    #stripes :nth-child(2) { width: 14%; right: 0; bottom: 40px; background: #60A5FA; animation-delay: 0.3s; }
    #stripes :nth-child(3) { width: 25%; bottom: 0; right: 0; background: #93C5FD; animation-delay: 0.4s; }

    @media (min-width: 670px) {
      #stripes span { height: 150px; }
      #stripes :nth-child(1) { top: 0; background: #3B82F6; animation-delay: 0.2s; }
      #stripes :nth-child(2) { width: 16.66667%; top: 300px; bottom: auto; background: #60A5FA; animation-delay: 0.3s; }
      #stripes :nth-child(3) { width: 33.33333%; right: auto; background: #93C5FD; animation-delay: 0.4s; }
    }

    @media (min-width: 880px) {
      #stripes span { height: 190px; }
      #stripes :nth-child(1) { width: 33.33333%; left: -16.66666%; background: #3B82F6; animation-delay: 0.2s; }
      #stripes :nth-child(2) { width: 33.33333%; top: 0; left: 16.66666%; right: auto; background: #60A5FA; animation-delay: 0.25s; }
      #stripes :nth-child(3) { width: 33.33333%; left: 49.99999%; bottom: auto; background: #93C5FD; animation-delay: 0.3s; }
      #stripes :nth-child(4) { width: 33.33333%; top: 380px; right: -16.66666%; background: #2563A6; animation-delay: 0.35s; }
      #stripes :nth-child(5) { width: 33.33333%; bottom: 0; background: #3B82F6; animation-delay: 0.4s; }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding: 26px;
      border-radius: 40px;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 26px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(8px);
      box-shadow: 0 30px 80px rgba(0,0,0,.45);
      color: #fff;
    }

    .hero-left { display: flex; flex-direction: column; gap: 22px; }

    .hero-title {
      padding: 30px 34px;
      border-radius: var(--radius-lg);
      background: var(--gradient-hero-dynamic);
      box-shadow: 0 0 40px rgba(255,122,0,.35), inset 0 0 20px rgba(255,255,255,.08);
    }

    .hero-title h1, .hero-title p,
    .hero-benefits span, .hero-cta p,
    .hero-badge strong, .hero-badge span,
    .btn {
      color: #fff;
    }

    .hero-title h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.1;
      text-shadow: 0 4px 12px rgba(0,0,0,.5);
      margin: 0;
    }

    .hero-title p {
      font-size: 22px;
      margin-top: 16px;
      opacity: .95;
      text-shadow: 0 3px 10px rgba(0,0,0,.5);
    }

    .hero-benefits {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 16px;
    }

    .benefit {
      padding: 18px 24px;
      border-radius: var(--radius-md);
      background: rgba(31,31,35,.65);
      display: flex;
      align-items: center;
      font-size: 17px;
      font-weight: 600;
      box-shadow: inset 0 0 20px rgba(255,255,255,.04);
    }

    .benefit::after {
      content: "↗";
      margin-left: auto;
      opacity: .8;
      font-size: 26px;
      font-weight: normal;
    }

    .hero-cta {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: rgba(31,31,35,.65);
      backdrop-filter: blur(10px);
    }

    .hero-cta p {
      font-size: 19px;
      margin-bottom: 24px;
      opacity: .95;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
    }

    .btn {
  position: relative;
  overflow: hidden;
  flex: 1;
  padding: 18px 36px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all .35s ease;
  white-space: nowrap;
  color: #fff;
  z-index: 1; 
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  transition: left 0.6s ease;
}

.btn:hover::before,
.btn-primary::before {
  left: 200%;
  transition: left 1.8s ease-in-out;
}

.btn-secondary::before {
  animation: shine 6s infinite ease-in-out;
  left: -100%;
}

@keyframes shine {
  0%   { left: -100%; }
  30%  { left: 200%; }
  100% { left: 200%; }
}

.btn:hover::before {
  transition-duration: 1.2s;
}

.btn-primary {
  background: var(--gradient-btn-primary);
  box-shadow: 0 10px 30px rgba(255,122,0,.45);
}

.btn-secondary {
  background: var(--gradient-btn-secondary);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  background: var(--gradient-btn-primary-hover);
  box-shadow: 0 15px 40px rgba(255,122,0,.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
}

    .hero-right {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.12) translateY(-4%);
      transition: transform 5s ease;
    }

    .hero-right:hover .hero-image {
      transform: scale(1.04) translateY(0);
    }

    .hero-badge {
      position: absolute;
      right: 24px;
      bottom: 24px;
      width: 260px;
      padding: 22px;
      border-radius: 22px;
      background: var(--gradient-btn-primary);
      text-align: center;
      box-shadow: 0 8px 30px rgba(255,122,0,.4);
    }

    .hero-badge strong { font-size: 16px; display: block; margin-bottom: 6px; }
    .hero-badge span { font-size: 15px; opacity: .9; }

    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-badge { position: static; width: 100%; margin-top: 20px; }
    }

    @media (max-width: 1024px) {
      .nav-menu { display: none; }
      .header-right { gap: 16px; }
      .burger { display: flex; }
      .header-contacts,
      .phone { display: none; }
      .btn-callback {
        padding: 10px 18px;
        font-size: 14px;
      }
      .logo img {
        height: 42px !important;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-top: 120px;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 60px;
        min-height: auto;
      }
      .header-inner {
        height: 70px;
      }
      .logo img {
        height: 36px  !important;
      }
      .btn-callback {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 10px;
      }
      .burger span {
        width: 26px;
        height: 3px;
      }

      .hero-inner {
        padding: 20px;
        border-radius: 24px;
      }
      .hero-title {
        padding: 24px 20px;
      }
      .hero-title h1 {
        font-size: 34px;
      }
      .hero-title p {
        font-size: 18px;
        margin-top: 12px;
      }
      .hero-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .benefit {
        padding: 14px 18px;
        font-size: 15.5px;
      }
      .hero-cta {
        padding: 20px;
      }
      .hero-cta p {
        font-size: 16.5px;
        margin-bottom: 18px;
      }
      .hero-buttons {
        flex-direction: column;
        gap: 14px;
      }
      .btn {
        padding: 16px 28px;
        font-size: 16px;
      }
      .hero-image {
        height: 260px;
        transform: none;
      }
      .hero-badge {
        padding: 16px;
      }
      .hero-badge strong {
        font-size: 17px;
      }
      .hero-badge span {
        font-size: 13.5px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding-top: 110px;
        padding-left: 4%;
        padding-right: 4%;
        padding-bottom: 50px;
      }
      .hero-inner {
        padding: 16px;
        border-radius: 20px;
      }
      .hero-title h1 {
        font-size: 28px;
        line-height: 1.15;
      }
      .hero-title p {
        font-size: 16px;
        margin-top: 10px;
      }
      .btn {
        padding: 14px 24px;
        font-size: 15.5px;
      }
      .hero-image {
        height: 220px;
      }
    }

    @media (min-width: 1025px) {
      .mobile-menu { display: none !important; }
    }
	@media (max-width: 1024px) {
  .mobile-menu .dropdown-content a {
    color: #ffffff !important;          
  }
  
  .mobile-menu .dropdown-content a:hover {
    color: var(--color-accent-400) !important;  
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.08);
  width: 620px;                      
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border-radius: 14px;
  padding: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr;     
  gap: 8px 24px;                      
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content li a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--color-primary-700);
  white-space: nowrap;
  transition: all 0.25s ease;
  border-radius: 8px;
}

.dropdown-content li a:hover {
  background: rgba(255,122,0,0.08);
  color: var(--color-accent-500);
}

@media (max-width: 1024px) {
  .mobile-menu .dropdown-content {
    display: none;                     
    flex-direction: column;            
    gap: 2px;                          
    padding: 10px 12px;
    margin-top: 6px;
    background: rgba(31, 31, 35, 0.94);
    border-radius: 10px;
    width: 100%;                       
    max-height: 50vh;                  
    overflow-y: auto;                  
    overflow-x: hidden;                
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu .dropdown.active .dropdown-content {
    display: flex !important;
  }

  .mobile-menu .dropdown-content li {
    margin: 0;
    width: 100%;
  }

  .mobile-menu .dropdown-content a {
    color: #ffffff !important;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.4;
    border-radius: 8px;
    display: block;
    white-space: normal;
    text-align: left;
  }

  .mobile-menu .dropdown-content a:hover,
  .mobile-menu .dropdown-content a:active {
    background: rgba(255, 122, 0, 0.15);
  }

  .mobile-menu .dropdown-content,
  .mobile-menu .dropdown-content * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .mobile-menu .dropdown-content::-webkit-scrollbar {
    width: 4px;
  }

  .mobile-menu .dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
  }

  .mobile-menu .dropdown-content::-webkit-scrollbar-track {
    background: transparent;
  }
}


.menu-level-3 {

  position: relative;
}
  .menu-level-3 {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1000;
    padding-left: 0px;
  }
  .menu-level-2 li:hover .menu-level-3 {
    display: block;
    top: 0;
    left: 100%;
  }

  .menu-level-3 li a{
color:#104f76 !important
  }
  .div-now-header__menu ul.menu-level-3 li:hover{
      background-color: beige !important;
  }




  .price-section {
    position: relative;
    padding: 120px 6% 140px;
    background: var(--gradient-hero);
    color: white;
    overflow: hidden;
    isolation: isolate;
  }

  /* Полосы как в hero */
  #price-stripes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: skewY(-10deg);
    transform-origin: 0 0;
    background: linear-gradient(135deg, #1A4E8A 0%, #2563A6 50%, #3B82F6 100%);
    opacity: 0;
    animation: fadeInSimple 1.6s var(--anim-easing) forwards;
    z-index: 1;
  }

  #price-stripes span {
    position: absolute;
    height: 180px;
    opacity: 0;
    filter: brightness(1.1) contrast(1.05);
    animation: fadeInSimple 1.2s var(--anim-easing) forwards;
  }

  #price-stripes :nth-child(1) { width: 40%; left: -10%; top: 15%; background: #3B82F6; animation-delay: 0.2s; }
  #price-stripes :nth-child(2) { width: 35%; right: -5%; top: 40%; background: #60A5FA; animation-delay: 0.3s; }
  #price-stripes :nth-child(3) { width: 45%; left: 20%; bottom: -10%; background: #2563A6; animation-delay: 0.4s; }

  @media (max-width: 880px) {
    #price-stripes span { height: 140px; }
  }

  .price-container {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
  }

  .price-section h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 80px;
    background: linear-gradient(90deg, #ffffff 0%, #f0f4ff 30%, #fff7e6 60%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255,255,255,0.6);
  }

  .price-table {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 16px 60px rgba(0,0,0,0.35);
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.22,1,0.36,1);
  }

  .price-table.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .price-row {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: background 0.3s ease;
  }

  .price-row:hover {
    background: rgba(255,122,0,0.08);
  }

  .price-row.header {
    background: rgba(26,78,138,0.6);
    font-weight: 800;
    color: #fff;
  }

  .price-cell {
    flex: 1;
    padding: 24px 32px;
    font-size: 18px;
    line-height: 1.4;
  }

  .price-cell.title {
    flex: 2;
    font-weight: 700;
    color: var(--color-accent-400);
  }

  .price-cell.price {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
  }

  .price-cell.unit {
    color: rgba(255,255,255,0.85);
    text-align: center;
    font-size: 16px;
  }

  @media (max-width: 1024px) {
    .price-row {
      flex-direction: column;
      border-bottom: 2px solid rgba(255,255,255,0.1);
    }

    .price-cell {
      padding: 20px 24px;
      text-align: center !important;
    }

    .price-cell.title {
      font-size: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .price-cell.price {
      font-size: 22px;
      padding: 16px 0;
    }

    .price-cell.unit {
      font-size: 15px;
      padding-top: 0;
    }
  }

  @media (max-width: 640px) {
    .price-section {
      padding: 80px 5% 100px;
    }

    .price-section h2 {
      font-size: 36px;
      margin-bottom: 60px;
    }

    .price-cell {
      padding: 16px 20px;
      font-size: 16px;
    }

    .price-cell.title {
      font-size: 18px;
    }

    .price-cell.price {
      font-size: 20px;
    }
  }
.mobi {
  margin-top: 5%;
  }
  @media (max-width: 480px) {
  .mobi {
  margin-top: 50%;
  }
  }

