/* ============================================================
   Visamart — адаптив: планшеты и мобильные
   Breakpoints: 1024px (планшет), 768px (мобильный), 480px (малый экран)
   ============================================================ */

/* ===================== TABLET (≤1024px) ===================== */

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container,
  .services__container,
  .process__container,
  .more__container,
  .faq__inner,
  .cta__inner,
  .footer__inner,
  .hero__container,
  .cases__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Header — мобильная шапка с бургером (до 1024px) */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    height: 56px;
    padding: 4px 12px;
    z-index: 100;
  }

  .admin-bar .header {
    top: 32px;
  }

  body {
    padding-top: 56px;
  }

  .admin-bar body {
    padding-top: 88px;
  }

  @media screen and (max-width: 782px) {
    .admin-bar .header {
      top: 46px;
    }

    .admin-bar body {
      padding-top: 102px;
    }
  }

  .bg,
  .hero,
  .hero__container,
  .services,
  .services__container {
    max-width: 100%;
    overflow-x: clip;
  }

  .hero__content {
    margin-top: 48px;
  }

  .header__inner {
    gap: 8px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .header__left {
    flex: 1;
    min-width: 0;
    background: transparent;
    padding: 0;
    gap: 0;
  }

  .header__nav-wrap,
  .header__contacts,
  .header__socials,
  .header__consult,
  .header__user {
    display: none !important;
  }

  .header__right {
    flex-shrink: 0;
    gap: 0;
    margin-left: auto;
  }

  .header__logo svg,
  .logo-link svg {
    width: 82px;
    height: auto;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
  }

  .header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fce8d5;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
  }

  .mobile-drawer.is-open {
    display: block;
  }

  .mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 100vw);
    max-width: 100%;
    height: 100%;
    padding: 72px 20px 32px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #2f2c33;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
  }

  .mobile-drawer__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-drawer__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 14px;
    color: #fff !important;
    font-size: 16px;
    text-decoration: none;
    word-break: break-word;
  }

  .mobile-drawer__link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-drawer__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-drawer__contacts a {
    color: #fff;
    font-size: 15px;
    text-decoration: underline;
    word-break: break-all;
  }

  .mobile-drawer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-drawer__socials img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.35);
  }

  .mobile-drawer__consult {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    text-decoration: none;
  }

  .mobile-drawer__consult img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    flex-shrink: 0;
  }

  .mobile-drawer__consult span {
    display: block;
    font-size: 14px;
    font-weight: 500;
  }

  .mobile-drawer__consult small {
    font-size: 12px;
    opacity: 0.65;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 640px;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__subtitle-line {
    font-size: 20px;
  }

  .hero__countries {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero__countries::-webkit-scrollbar {
    display: none;
  }

  .hero-country {
    flex: 0 0 auto;
    min-width: 72px;
  }

  .hero-stat {
    width: 160px;
  }

  .hero-contact {
    width: 320px;
  }

  /* Services */
  .services {
    padding: 60px 0 80px;
  }

  .services__title {
    font-size: 48px;
  }

  .service-card {
    width: 100%;
    height: auto;
    min-height: 460px;
  }

  .service-card__title {
    font-size: 32px;
  }

  .services__interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process */
  .process {
    padding: 80px 0 60px;
  }

  .process__container {
    flex-direction: column;
    gap: 40px;
  }

  .process__left,
  .process__steps {
    width: 100%;
  }

  .process__title,
  .process__more-title {
    font-size: 44px;
  }

  .process-card {
    min-width: calc(50% - 8px);
  }

  /* Countries */
  .countries {
    padding: 60px 0;
  }

  .countries__title {
    font-size: 40px;
  }

  .country-item {
    grid-template-columns: 220px 1fr 140px;
    padding: 16px 20px;
  }

  .country-item__left img {
    width: 80px;
    height: 48px;
  }

  /* Pricing */
  .pricing__top {
    flex-direction: column;
  }

  .pricing__title {
    width: 100%;
    font-size: 44px;
  }

  .pricing__main-card {
    width: 100%;
    flex-direction: column;
  }

  .pricing__bottom-section {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  /* Social proof */
  .social-proof {
    padding: 70px 0;
  }

  .social-proof__title {
    font-size: 44px;
  }

  .social-proof__stats {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .social-proof__stats-label {
    grid-column: 1 / -1;
    font-size: 32px;
  }

  .social-proof__logos {
    grid-template-columns: 1fr;
    gap: 32px;
    overflow: hidden;
  }

  .social-proof__logos-grid,
  .social-proof__logos-image {
    max-width: 100%;
    height: auto;
  }

  .social-proof__logos-grid img,
  .social-proof__logos-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .case-card,
  .reviews__slider .review-card {
    flex: 0 0 440px;
    min-width: 440px;
  }

  /* CTA */
  .cta {
    padding: 70px 0;
  }

  .cta__top,
  .cta__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .cta__video {
    grid-column: 1 / -1;
    justify-self: start;
  }

  /* FAQ */
  .faq__title {
    font-size: 44px;
  }

  .faq__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq__col-title {
    font-size: 32px;
  }

  /* Footer */
  .footer__top {
    flex-direction: column;
  }

  .footer__middle {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__nav--item {
    width: auto;
    min-width: 140px;
  }

  .footer__links a {
    width: auto;
    min-width: 45%;
  }

  /* Country archive */
  .country-select {
    margin-top: 100px;
    padding: 0 16px;
  }

  .country-select__inner {
    min-height: 0;
  }

  .country-select__title {
    font-size: 48px;
  }

  .country-select__popular {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .country-select__popular-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .country-select__popular-list::-webkit-scrollbar {
    display: none;
  }

  .country-select__tag {
    flex-shrink: 0;
    height: 44px;
    padding: 0 16px;
    font-size: 15px;
  }

  .country-select__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .country-select__regions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid #ebe4df;
  }

  .country-select__regions::-webkit-scrollbar {
    display: none;
  }

  .country-select__region {
    flex-shrink: 0;
    width: auto;
    min-height: 44px;
    padding: 10px 16px;
    white-space: nowrap;
    text-align: center;
  }

  .country-select__region::after {
    display: none;
  }

  .country-select__letters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .country-select__letters::-webkit-scrollbar {
    display: none;
  }

  .country-select__letters .country-select__letter,
  .country-select__letters button {
    flex-shrink: 0;
  }

  .country-select__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Popular directions (/countries/) */
  .popular__head .popular__title {
    font-size: 48px;
  }

  .popular__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Country single */
  .country-hero {
    min-height: 640px;
    height: auto;
  }

  .country-hero__name {
    font-size: 48px;
  }

  .country-hero__title {
    font-size: 36px;
  }

  .country-hero__right {
    right: 24px;
  }

  /* About */
  .about__title {
    font-size: 56px;
  }

  .about-history {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }

  .about-values {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Blog */
  .blog-popular__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }

  .blog-archive__bottom {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  /* Cases / reviews pages */
  .cases__header {
    max-width: 100%;
  }

  .cases__title,
  .reviews-page__title {
    font-size: 40px;
  }

  .popup__content,
  .case-popup__content {
    width: calc(100% - 40px);
    max-width: 680px;
    padding: 28px 24px;
  }

  .services .popup--full .popup__content {
    width: calc(100% - 40px);
    margin: 80px auto;
  }

  .services .popup--full .popup__list {
    flex-direction: column;
    gap: 0;
  }

  .services .popup--full .popup__col {
    width: 100%;
  }

  /* Popups — планшет */
  .popup.active {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .popup__content,
  .popup--full .popup__content,
  .services .popup--full .popup__content {
    position: relative;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px);
    margin: 16px auto !important;
    max-height: none;
    overflow-y: auto;
  }

  .popup--video.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px;
    overflow: hidden;
  }

  .popup--video .popup__content {
    width: calc(100vw - 32px);
    max-width: 900px;
    margin: 0 !important;
    padding: 0;
  }

  .popup--video .popup__close {
    top: 8px;
    right: 8px;
    position: absolute;
  }

  /* Pricing */
  .pricing__bottom .btn-outline.open-form {
    margin-top: 20px;
  }

  .pricing__bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===================== MOBILE (≤768px) ===================== */

@media (max-width: 768px) {
  .container,
  .services__container,
  .process__container,
  .more__container,
  .faq__inner,
  .cta__inner,
  .footer__inner,
  .hero__container,
  .cases__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero */
  .hero {
    min-height: 0;
  }

  .hero__content {
    margin-top: 32px;
    gap: 20px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle-line {
    font-size: 17px;
  }

  .hero__subtitle-line + .hero__subtitle-line {
    margin-top: 20px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-bottom: 24px;
    margin-top: 32px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
    filter: none;
  }

  .hero-stat {
    width: 100%;
  }

  .hero-stat__value {
    font-size: 28px;
  }

  .hero-contact {
    width: 100%;
  }

  /* Services */
  .services {
    padding: 48px 0 64px;
  }

  .services__title {
    font-size: 36px;
    margin-bottom: 28px;
  }

  .service-card {
    padding: 20px;
    min-height: 460px;
  }

  .service-card__title {
    font-size: 21px;
    line-height: 1.1;
  }

  .service-card__facts {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-card__divider {
    display: none;
  }

  .service-card__list {
    grid-template-columns: 1fr;
  }

  .services__interest {
    margin-top: 48px;
    padding: 24px 0;
  }

  .services__interest-title {
    font-size: 32px;
  }

  .services__interest-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Process */
  .process {
    padding: 56px 0 48px;
  }

  .process__title,
  .process__more-title {
    font-size: 32px;
  }

  .process__desc {
    font-size: 17px;
  }

  .process__card {
    width: 100%;
    max-width: 320px;
  }

  .process-step {
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }

  .process-step__num {
    width: 48px;
    min-height: 48px;
    font-size: 20px;
  }

  .process-step__title {
    font-size: 20px;
  }

  .process-step__text {
    font-size: 15px;
    max-width: none;
  }

  .process__more {
    margin-top: 48px;
  }

  .process-card {
    min-width: 100%;
  }

  /* Countries */
  .countries {
    padding: 48px 0;
  }

  .countries__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .countries__title {
    font-size: 32px;
  }

  .countries__top .btn-outline,
  .countries__bottom .btn-outline {
    width: 100%;
    height: 56px;
    padding: 0 24px;
  }

  .country-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .country-item__left {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .country-item__left img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
  }

  .country-item__name {
    font-size: 18px;
  }

  .country-item__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: none;
  }

  .country-item__info div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .country-item__info span {
    font-size: 12px;
    opacity: 0.5;
    flex-shrink: 0;
  }

  .country-item__info strong {
    font-size: 15px;
    line-height: 1.2;
    word-break: normal;
  }

  .country-item__action {
    text-align: left;
    margin-top: 4px;
  }

  .country-item__action .btn-primary:hover {
    width: auto;
    min-width: 142px;
  }

  .countries__bottom {
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .countries__bottom .line {
    width: 100%;
  }

  /* Pricing */
  .pricing {
    padding: 48px 0;
  }

  .pricing__title {
    font-size: 32px;
  }

  .pricing__main-card {
    padding: 20px;
    border-radius: 24px;
  }

  .pricing__price {
    font-size: 32px;
    flex-wrap: wrap;
  }

  .pricing__extra-text h3 {
    font-size: 28px;
  }

  .pricing-card {
    min-height: 0;
  }

  /* Social proof */
  .social-proof {
    padding: 48px 0;
  }

  .social-proof__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .social-proof__stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
    margin-bottom: 48px;
  }

  .stats-col {
    gap: 24px;
  }

  .stat__value {
    font-size: 40px;
  }

  .stat__text {
    font-size: 17px;
  }

  .social-proof__logos-text h3 {
    font-size: 28px;
  }

  .social-proof__about {
    font-size: 24px;
    margin-top: 32px;
  }

  .cases__head,
  .reviews .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cases__head h2,
  .section-head h3 {
    font-size: 28px;
  }

  .case-card,
  .reviews__slider .review-card {
    flex: 0 0 min(320px, calc(100vw - 48px));
    min-width: min(320px, calc(100vw - 48px));
    padding: 24px;
  }

  .case-card h3 {
    font-size: 26px;
  }

  .review-card {
    height: auto;
    min-height: 480px;
    padding: 24px;
  }

  .review-media div {
    height: 200px;
  }

  .reviews .btn-outline,
  .cases__btn {
    width: 100%;
    height: 56px;
    justify-content: center;
  }

  /* CTA */
  .cta {
    padding: 48px 0;
  }

  .cta__top,
  .cta__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta__title {
    font-size: 28px;
  }

  .cta__lead {
    font-size: 18px;
  }

  .cta__big {
    font-size: 18px;
    line-height: 1.35;
  }

  .cta__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .cta__buttons .cta-btn.open-form {
    flex: 0 0 100%;
    width: 100%;
  }

  .cta__buttons .cta-btn:not(.open-form) {
    flex: 1 1 0;
    min-width: 0;
  }

  .cta-btn {
    justify-content: center;
  }

  .cta__form-link {
    justify-content: center;
    text-align: center;
  }

  /* FAQ */
  .faq {
    padding: 48px 0 64px;
  }

  .faq__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .faq__col-title {
    font-size: 24px;
  }

  .faq-item span {
    font-size: 17px;
  }

  /* Footer */
  .footer__inner {
    padding: 48px 16px 32px;
  }

  .footer__info {
    flex-direction: column;
    gap: 24px;
  }

  .footer__map {
    height: 200px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }

  .footer__links {
    flex-direction: column;
    gap: 12px;
  }

  .footer__links a {
    width: 100%;
  }

  /* Country archive */
  .country-select {
    margin: 72px auto 40px;
  }

  .country-select__inner {
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
  }

  .country-select__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .country-select__popular {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .country-select__popular-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .country-select__popular-list::-webkit-scrollbar {
    display: none;
  }

  .country-select__tag {
    flex-shrink: 0;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .country-select__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .country-select__regions {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-right: 0;
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid #ebe4df;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .country-select__regions::-webkit-scrollbar {
    display: none;
  }

  .country-select__region {
    flex-shrink: 0;
    width: auto;
    min-height: 40px;
    padding: 8px 14px;
    white-space: nowrap;
    text-align: center;
  }

  .country-select__region::after {
    display: none;
  }

  .country-select__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-select__letters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
  }

  .country-select__letters::-webkit-scrollbar {
    display: none;
  }

  /* Popular directions */
  section.popular {
    padding: 40px 0 56px;
  }

  .popular__container {
    padding: 0 16px;
  }

  .popular__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }

  .popular__head .popular__title {
    font-size: 32px;
  }

  .popular__cta {
    width: 100%;
    height: auto;
    min-height: 64px;
  }

  .popular__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .popular-card {
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .popular-card__link {
    min-height: 0;
    padding: 20px 16px;
  }

  .popular-card__badges {
    flex-wrap: wrap;
    gap: 6px;
  }

  .popular-card__badges span {
    font-size: 11px;
    padding: 5px 10px;
    line-height: 1.2;
  }

  .popular-card__title {
    font-size: 22px;
  }

  .popular-card__desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .popular-card__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .popular-card__price {
    text-align: left;
  }

  /* Services cards */
  .service-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .service-card__header {
    align-items: flex-start;
    gap: 12px;
  }

  .service-card__title {
    flex: 1;
    min-width: 0;
    padding-right: 8px;
  }

  .service-card__list {
    grid-template-columns: 1fr;
  }

  .service-card__btn {
    margin-top: 8px;
  }

  /* Pricing */
  .pricing__main-card {
    flex-direction: column;
  }

  .pricing__bottom .btn-outline.open-form {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }

  .pricing__price {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .pricing-card .btn-outline.open-form {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  /* Generic WP pages */
  .vm-page-content h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  main.container[style] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Country single */
  .country-hero {
    min-height: 520px;
  }

  .country-hero__container {
    padding: 24px 16px;
  }

  .country-hero__content {
    padding: 32px 0;
  }

  .country-hero__name {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .country-hero__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .country-hero__right {
    position: static;
    margin-top: 24px;
    gap: 16px;
  }

  .country-hero__cta {
    position: static;
    width: 100%;
    margin-top: 24px;
  }

  /* About */
  .about {
    padding: 80px 0 48px;
    min-height: 0;
  }

  .about__title {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .about-history {
    padding: 24px;
    border-radius: 28px;
  }

  .about-history__text h2 {
    font-size: 28px;
  }

  .about-history__text p {
    font-size: 17px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .about-value h3 {
    font-size: 28px;
  }

  .about-value p {
    font-size: 17px;
  }

  .about-persona p {
    font-size: 24px;
  }

  .about-principle h2 {
    font-size: 28px;
  }

  .about-principle__buttons {
    flex-direction: column;
  }

  /* Blog */
  .blog-archive__container {
    padding: 88px 16px 40px;
  }

  .blog-archive__hero h1 {
    font-size: 36px;
  }

  .blog-popular__grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .blog-archive__bottom {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .article-body {
    padding: 88px 0 48px;
  }

  .article-body__title {
    font-size: 32px;
  }

  /* Cases / reviews pages */
  .cases-page.cases {
    padding-top: 88px;
  }

  .cases__grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cases__title,
  .reviews-page__title {
    font-size: 32px;
  }

  .reviews-page {
    padding: 88px 16px 48px;
  }

  .reviews-page .reviews-grid .review-card {
    min-height: 0;
  }

  .reviews-page__bottom {
    font-size: 24px;
  }

  /* Popups */
  .popup.active {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top)) 12px 12px;
    overflow-y: auto;
  }

  .popup__content {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 24px 16px;
    border-radius: 22px;
    margin: 0 auto !important;
    box-sizing: border-box;
  }

  .popup--full .popup__content,
  .services .popup--full .popup__content {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px);
    margin: 0 auto !important;
    padding: 20px 16px 24px;
  }

  .popup__title {
    font-size: 22px;
    line-height: 1.2;
    padding-right: 28px;
  }

  .popup__list {
    flex-direction: column;
    gap: 0;
  }

  .popup__button,
  .popup__btn {
    width: 100%;
    margin-top: 16px;
    text-align: center;
  }

  .popup--video.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: max(12px, env(safe-area-inset-top)) 12px 12px;
    overflow: hidden;
  }

  .popup--video .popup__content {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin: 0 !important;
    padding: 0;
  }

  .popup--video .popup__close {
    top: 8px;
    right: 8px;
    z-index: 2;
  }

  #popup-video {
    width: 100%;
    max-height: 70vh;
  }

  .case-popup__wrapper,
  .review-popup__wrapper {
    padding: 60px 12px 24px;
  }

  .case-popup__nav,
  .review-popup__nav {
    display: none;
  }

  .case-popup__close,
  .review-popup__close {
    top: 12px;
    right: 12px;
  }

  .review-popup__content {
    width: 100%;
    max-width: none;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .review-popup-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .review-popup-block p,
  .review-popup-block li {
    font-size: 13px;
  }

  .form-box {
    width: calc(100vw - 32px);
    max-width: 332px;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .form-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .popup--country-picker .popup__content--country {
    width: calc(100vw - 16px);
    padding: 16px;
  }

  /* Country interest slider */
  .interest-card {
    flex: 0 0 min(300px, calc(100vw - 48px));
    width: min(300px, calc(100vw - 48px));
    height: auto;
    min-height: 240px;
    padding: 24px;
  }

  .interest-card h3 {
    font-size: 22px;
  }
}

/* ===================== SMALL MOBILE (≤480px) ===================== */

@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__countries {
    height: auto;
    min-height: 72px;
    border-radius: 16px;
  }

  .services__title {
    font-size: 32px;
  }

  .country-select__grid {
    grid-template-columns: 1fr;
  }

  .pricing__name {
    font-size: 20px;
  }

  .notfound__code {
    font-size: 56px;
  }

  .notfound__content {
    width: 100%;
    max-width: 368px;
    padding: 0 16px;
  }
}

/* Burger hidden on desktop */
@media (min-width: 1025px) {
  .header__burger,
  .mobile-drawer {
    display: none !important;
  }
}
