



/* -----------------------------
   DISABLE ALL ANIMATIONS (global override)
   This block forces transitions/animations off and ensures any
   reveal helpers do not keep content hidden.
   Remove this block if you want to re-enable animations.
   ----------------------------- */
*, *::before, *::after {
  transition: none !important;
  animation: none !important;
  scroll-behavior: auto !important;
}

/* Make sure elements hidden by .reveal or [data-reveal] are visible */
.reveal,
[data-reveal],
.reveal-in,
.in-view,
.reveal-in-view {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}



/* Header-specific styles only. General styles moved to styles.css */
:root {
  --header-bg: #1E1E1E;
  --header-radius: 12px;
  --header-height: 46px;
      --color-bg: #000;
    --color-surface: #1E1E1E;
    --color-surface-alt: #111;
    --color-text: #fff;
    --color-text-dim: rgba(255, 255, 255, .6);
    --color-border: rgba(255, 255, 255, .12);
    --color-inverse: #000;
}




/* .header_bg{
    display: flex;
    align-items: center;
    background: #1E1E1E;
    height: 46px;
    border-radius: 12px;
        width: 100%;
            padding-left: 34px;
} */

.logo img {
  display: block;
  height: 25px;
  width: auto;
  margin-right: 37px;
}

.nav-block{display:flex;align-items:center;gap:16px}
.header-nav ul{display:flex;gap:28px;list-style:none;margin:0;padding:0;align-items:center}
.header-nav a{font-family:'Rubik',Arial,sans-serif;font-weight:500;font-size:0.98rem;color:#fff;letter-spacing:0.01em;padding:6px 0;transition:color .18s}
.header-nav a:hover,.header-nav a:focus{color:#FF7146}

.nav-cta{width:251px;display:flex;justify-content:center;align-items:center;height:46px;margin-left:10px;background:#fff;color:#000;padding:0;border-radius:12px;font-weight:600;text-decoration:none}
/*
  Reorganized stylesheet (no styles changed) —
  - Variables
  - Base / utilities
  - Layout & components
  - Popup
  - Animations
  - Media queries (moved to the bottom)
*/

/* -----------------------------
   Variables
   ----------------------------- */


/* Header-specific variables */
:root {
  --header-bg: #1E1E1E;
  --header-radius: 12px;
  --header-height: 46px;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-orange: #FF7146;
    --color-dark-gray: #1E1E1E;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Rubik', sans-serif;

    --transition-fast: all 0.2s ease-in-out;
}


/* -----------------------------
   Base / Utilities
   ----------------------------- */
/* General site-wide styles for Liberation Travel */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* a:hover, a:focus {
  color: var(--accent, #ffb300);
}
 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 32px, 1340px);
  margin-inline: auto;
}

/* Utility classes */
.text-center { text-align: center; }
.hide-mobile { display: none !important; }
.show-mobile { display: initial !important; }

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-white);
    background-color: var(--color-black);
    margin: 0;
    padding: 0;
}

/* -----------------------------
   Page structure & Header
   ----------------------------- */
.page-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background-color: var(--color-black);
    min-height: 100vh;
    padding: 0;
}

.header {
    padding: 16px 50px 0;
    position: relative;
    z-index: 100;
}

.header__container { display: flex; align-items: center; justify-content: space-between; }

.header__inner {
    display: flex;
    align-items: center;
    background-color: var(--color-dark-gray);
    border-radius: 12px;
    padding: 0 50px;
    height: 46px;
    width: 1079px;
}


/* .header_bg { display:flex; align-items:center; background:#1E1E1E; height:46px; border-radius:12px; width:100%; padding-left:34px; }
 */
.logo { margin-right: 40px; }
.logo img, .logo__img { display:block; height:25px; width:auto; }

.nav__list { display:flex; align-items:center; gap:40px; list-style:none; padding:0; margin:0; }
.nav__link { font-family: var(--font-body); font-size:14px; font-weight:400; color:var(--color-white); text-decoration:none; transition:var(--transition-fast); }
.nav__link:hover { color: var(--color-orange); }

.nav-block { display:flex; align-items:center; gap:16px }
.header-nav ul { display:flex; gap:28px; list-style:none; margin:0; padding:0; align-items:center }
.header-nav a { font-family:'Rubik',Arial,sans-serif; font-weight:500; font-size:0.98rem; color:#fff; letter-spacing:0.01em; padding:6px 0; transition:color .18s }
.header-nav a:hover, .header-nav a:focus { color:#fff }

.nav-cta { width:251px; display:flex; justify-content:center; align-items:center; height:46px; margin-left:10px; background:#fff; color:#000; padding:0; border-radius:12px; font-weight:600; text-decoration:none }
.nav-cta:hover { opacity:0.95 }
.nav-cta.desktop { display:flex }
.nav-cta.btn_mobil { display:none }

.nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; margin-left:16px }
.hamburger { display:block; width:24px; height:2px; background:#fff; position:relative }
.hamburger::before, .hamburger::after { content:''; display:block; width:24px; height:2px; background:#fff; position:absolute; left:0; transition:transform 0.2s }
.hamburger::before { top:-7px }
.hamburger::after { top:7px }

.button { display:inline-block; font-family:var(--font-body); font-size:14px; font-weight:500; text-decoration:none; border-radius:12px; transition:var(--transition-fast); border:none; cursor:pointer }
.button--white { background-color:var(--color-white); color:var(--color-black); padding:14px 22px; width:251px; text-align:center }
.button--white:hover { opacity:0.9 }
.button--primary { background-color:var(--color-orange); color:var(--color-white); padding:16px 24px }
.button--primary:hover { opacity:0.9 }
.button--black { background-color:var(--color-black); color:var(--color-white); padding:16px 24px }
.button--black:hover { opacity:0.9 }
.burger { display:none }
.text-orange { color:var(--color-orange) }

/* ====================
   Main Content
   ==================== */
.main-content { display:flex; flex-direction:column }

/* ====================
   Hero Section
   ==================== */
.hero-section { padding:45px 71px 39px; display:flex; justify-content:space-between; gap:40px; min-height:529px }
.hero__content { flex:1; max-width:530px; margin-left:13px }
.hero__countries { display:flex; align-items:center; margin-bottom:0 }
.hero__country-flag { width:42px; height:42px; border-radius:50%; object-fit:cover; border:2.31px solid var(--color-black); background-color:var(--color-dark-gray); padding:9px; box-sizing:border-box }
.hero__country-flag:not(:first-child) { margin-left:-8px }
.hero__countries-text { font-size:16px; font-weight:300; line-height:1.3; margin:0 0 0 20px; max-width:335px }
.hero__title { font-family:var(--font-heading); font-size:62px; font-weight:700; line-height:1; margin:19px 0 9px; max-width:530px; display:grid }
.hero__title span { display:ruby-text }
.hero__subtitle { font-size:16px; font-weight:300; line-height:1.3; opacity:0.6; margin:0 0 24px; max-width:340px }
.hero__button { display:inline-block }
.hero__media { position:relative; width:482px; height:482px; overflow:hidden; border-radius:32px; flex-shrink:0; margin:-75px -22px 0 0 }
.hero__image { width:100%; height:100%; border-radius:32px; object-fit:cover }
.play-button { position:absolute; bottom:28px; left:28px; width:56px; height:56px; background-color:var(--color-white); border-radius:50%; border:none; cursor:pointer; display:flex; justify-content:center; align-items:center; transition:var(--transition-fast) }
.play-button:hover { transform:scale(1.1) }
.play-button__icon { width:24px; height:24px }

/* ====================
   Consultation hero (first screen) — static-first responsive
   Matches the provided mock: centered dark card, orange heading, CTA
   ==================== */
.consultation-hero { padding: 0 0; }
.consultation-hero .consultation-hero__card {
  max-width: 1340px;
  margin: 0 auto;
  background: #1E1E1E;
  border-radius: 26px;
  padding: 71px 1px 83px;
  text-align: center;
  color: #fff;
  position: relative;
}
.consultation-hero .consultation-hero__kicker {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.consultation-hero .consultation-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1;
  margin: 8px 0 8px;
  color: #FF7146;
}
.consultation-hero .consultation-hero__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.3;
  max-width: 420px;
  margin: 0 auto 20px;
  opacity: 0.6;
}
.consultation-hero .consultation-hero__actions { margin-top: 12px }
.consultation-hero__cta {
  display: inline-block;
  padding: 12px 24px;
  background: #FF7146;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
}

/* Small / narrow layout (mobile) — create a compact stacked card resembling the alternate mock */
@media (max-width: 480px) {
  .consultation-hero .consultation-hero__card {
        border-radius: 24px;
        padding: 34px 0;
        margin: 0;
        width: 100%;
  }
  .consultation-hero .consultation-hero__kicker { font-size: 24px; }
  .consultation-hero .consultation-hero__title { font-size: 46px; }
  .consultation-hero .consultation-hero__desc { max-width: 280px; font-size: 16px }
}

/* ====================
   Consultation Photo Screen
   Static (flow) but responsive using clamp() and aspect-ratio
   Unique namespace: consultation-photo__*
   -------------------- */
.consultation-photo { padding: 36px 0 80px; }
.consultation-photo__card {
  max-width: 1340px;
  margin: 0 auto;
  border-radius: 24px;
  padding: clamp(12px, 2.6vw, 24px);
  display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  overflow: hidden;
  /* make the visual responsive and 'rubber' using aspect-ratio */
  width: 100%; /* prefer a compact card but allow shrink */
  height: auto;
}
.consultation-photo__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 345 / 267; /* preferred frame ratio from mock */
  object-fit: cover;
  border-radius: 16px;
}

/* Position-ish approximation from mock: the original used absolute positioning; here we keep it flow-based but visually similar */
.consultation-photo__card {
  /* center on narrow viewports, align-left on wide for natural flow */
  margin-left: auto;
  margin-right: auto;
}

/* Desktop: allow the photo card to sit left with more room and scale up */
@media (min-width: 900px) {
  .consultation-photo { padding: 10px 0 104px; }
  .consultation-photo__card {
    width: 100%;
    padding: 0;
    height: 374px;
    border-radius: 24px;
  }
  .consultation-photo__img { border-radius: 20px; }
}



/* Mobile: full width with inner padding to match compact mock */
@media (max-width: 768px) {
  .consultation-photo { padding: 0; }
  .consultation-photo__card { width: 100%; padding: 0;margin-top: 10px; border-radius: 18px;height: 300px; }
  .consultation-photo__img { border-radius: 12px; }
  .price-bar{
        flex-direction: column;
            padding: 25px!important;
            gap: 0!important;
  }

}

/* ====================
   How It Works / You'll Get block
   Static and responsive grid of cards
   ==================== */
.howitworks-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
  padding: 0;
}
.howitworks__col { display:flex; flex-direction:column; gap:8px }
.howitworks__heading { font-family: var(--font-heading); font-size: 52px; margin: 6px 0 10px; color: #fff }
.howitworks__cards { display:grid; grid-template-columns: 1fr 1fr; gap: 10px }

.howitworks__card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-direction: column;
    padding: 23px;
    border-radius: 32px;
    min-height: 162px;
    box-sizing: border-box;
}
.howitworks__card--dark { background: #1E1E1E; color: #fff }
.howitworks__card--accent { background: #FF7146; color: #000 }

.howitworks__icon { width: 40px; height: 40px; background: #000; border-radius: 50%; display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.howitworks__number { font-family: var(--font-heading); font-size: 20px; color: #FF7146 }
.howitworks__icon--check { background: #000; border-radius: 50%; width: 40px; height: 40px; display:flex; align-items:center; justify-content:center }

.howitworks__text { font-family: var(--font-body); font-size: 16px; line-height: 1.3; margin:0; max-width: 272px ;    position: relative;
    left: 10px;}
.howitworks__text--dark { color: #000 }

/* single column cards inside each column are displayed as a 2x2 grid to match mock layout */
@media (max-width: 1024px) {
  .howitworks-section {     
     width: 100%;  
     grid-template-columns: 1fr;
        padding: 106px 0;
        gap: 10px;
    }
  .howitworks__cards { grid-template-columns: 1fr; }
  .consultation-hero .consultation-hero__card{
    width: 100%;
  }
  .howitworks__heading { text-align: center;font-size: 46px; }
}

@media (min-width: 1025px) {
  .howitworks__heading {        margin-left: 56px; text-align: left }
  .howitworks__cards { grid-auto-rows: 1fr }
  .single-post-default{
    width: 70%;
  }
  .single-post-default .post-thumbnail img{
        width: 100%;
    object-fit: contain;
    height: 360px;
  }
}

/* ====================
   Price bar
   Static, responsive bar/card with CTA
   ==================== */
.price-section { padding: 10px 0; }

/* -----------------------------
   Animations — simple reveal-on-scroll
   ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.998);
  transition: opacity 600ms cubic-bezier(.22,.9,.2,1), transform 650ms cubic-bezier(.22,.9,.2,1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Slightly different feel for images */
.reveal--image {
  transform: translateY(8px) scale(.995);
}
.reveal--image.in-view { transform: translateY(0) scale(1); }

/* Stagger rules for next steps cards (supports up to 6) */
.next-steps__cards .next-steps__card.reveal:nth-child(1) { transition-delay: 0.04s }
.next-steps__cards .next-steps__card.reveal:nth-child(2) { transition-delay: 0.12s }
.next-steps__cards .next-steps__card.reveal:nth-child(3) { transition-delay: 0.2s }
.next-steps__cards .next-steps__card.reveal:nth-child(4) { transition-delay: 0.28s }
.next-steps__cards .next-steps__card.reveal:nth-child(5) { transition-delay: 0.36s }
.next-steps__cards .next-steps__card.reveal:nth-child(6) { transition-delay: 0.44s }

/* Small page-load entrance (optional) */
body.is-loaded .reveal { transition-duration: 520ms, 580ms }
.price-bar {
    background: #FFFFFF;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px 25px 55px;
    gap: 20px;
    width: min(100%, 1340px);
    margin: 0 auto;
    box-sizing: border-box;
}
.price-bar__left { display:flex; gap:6px;align-items: center;}
.price-bar__title { font-family: var(--font-heading); font-size: 52px; line-height: 52px; color: #000 }
.price-bar__note { font-family: var(--font-body); font-size: 14px; color: #000; opacity: 0.95;margin-left: 16px;}
.price-bar__cta-wrap { display:flex; align-items:center }
.price-bar__cta {    display: block;
    background: #000;
    color: #fff;
    padding: 15px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    width: 637px;
    text-align: center;}

/* Desktop: center the bar horizontally and keep the CTA on the right */
@media (min-width: 900px) {
  .price-section { padding: 10px 0  }
  .price-bar { height: 100px; }
  .price-bar__title { font-size: 52px }
}

/* Mobile: stack content vertically like the provided mobile frame */
@media (max-width: 899px) {

  .price-bar__title { font-size: 46px; text-align: center }
  .price-bar__note { text-align: center }
  .price-bar__cta { width: 100%; max-width: 320px; text-align: center;margin: 0 auto; }
}

/* ====================
   Consultation form page (final screen)
   Left: white form card, Right: photo
   ==================== */
.consultation-form-page {     padding: 110px 0 49px;}
.consultation-form-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch }
.consultation-form-page__left { display:flex }
.consultation-form-page__card {     background: #FFFFFF;
    border-radius: 24px;
    padding: 41px 35px 61px 53px;
    width: 100%;
    box-sizing: border-box;}
.consultation-form-page__title { font-family: var(--font-heading); font-size: 52px; margin: 0 0 20px; color: #000 }
.consultation-form-page__form { display:flex; flex-direction:column; gap:14px }
.consultation-form-page__row { display:flex; gap:10px }
.consultation-form-page__field { flex:1; display:block }
.consultation-form-page__input, .consultation-form-page__textarea { height: 56px;width:100%; padding:12px 14px; border-radius:10px; border:1px solid rgba(0,0,0,0.12); font-size:14px; font-family:var(--font-body); box-sizing:border-box }
.consultation-form-page__textarea { height:48px; resize: none; }
.consultation-form-page__field--full { width:100% }
.consultation-form-page__actions { margin-top:8px }
.consultation-form-page__submit { background: var(--color-orange); color:#fff; padding:14px 20px; border-radius:12px; border:0; font-weight:600; cursor:pointer; width:100% }

.consultation-form-page__right { display:flex; align-items:stretch }
.consultation-form-page__photo { width:100%; border-radius:24px; overflow:hidden }
.consultation-form-page__photo-img { width:100%; height:100%; object-fit:cover; display:block }

/* Desktop large: keep two columns and make photo match height of form card */
@media (min-width: 1000px) {
  .consultation-form-page__inner { grid-template-columns: 1fr 1fr }
  .consultation-form-page__photo-img { height: 100%; }
}

/* ====================
   Thank You page
   Static, flow-based, responsive
   ==================== */
.thanks-page { background: #000; color: #fff; min-height: 100vh; }
.thanks-page__inner { display:grid;     grid-template-columns: 1fr 49%; gap: 48px; align-items:center; width: min(100% - 40px, 1340px); margin: 0 auto; padding: 40px 0 0 0 }
.thanks-page__left {     max-width: 640px;
    margin-left: 52px;
    margin-top: 39px; }
.thanks-page__logo { display:block; margin-bottom: 21px;}
.thanks-page__kicker { font-family: var(--font-heading); font-size: 20px; color: var(--color-orange); font-weight:700; margin-bottom: 18px }
.thanks-page__title { font-family: var(--font-heading); font-size: 62px; line-height: 62px; margin: 0 0 18px; color: #fff }
.thanks-page__desc { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.85); opacity: 0.9; max-width: 520px; margin-bottom: 28px }



.thanks-page__photo { border-radius: 26px; overflow:hidden; background:#fff }
.thanks-page__photo-img { width:100%; height:100%; object-fit:cover; display:block }

/* NEXT STEPS block (matches provided mock) */
.next-steps {  padding: 14px 0 0; margin-top: 24px }
.next-steps__inner { width: min(100% - 32px, 1340px); margin: 0 auto; }
.next-steps__heading {     font-family: var(--font-heading);
    font-size: 46px;
    color: #fff;
    margin: 0 0 19px 55px;
    letter-spacing: 2px;}
.next-steps__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: stretch }
.next-steps__card { background: #1E1E1E; border-radius: 20px; padding: 22px 26px; display: flex; gap: 16px; align-items: center; min-height: 88px }
.next-steps__num { width: 46px; height: 46px; border-radius: 50%; background: #111; color: #FF7146; display:flex; align-items:center; justify-content:center; font-family: var(--font-heading); font-size: 18px; flex-shrink: 0 }
.next-steps__text { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.4; margin: 0 }
.next-steps__note {     margin-top: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-size: 15px;
    margin-left: 60px;
    letter-spacing: 0.4px;}
.next-steps__note a { color: rgba(255,255,255,0.9); text-decoration: underline }



@media (min-width: 1025px) and (max-width: 1340px) {
  .next-steps__inner { padding-inline: 24px }
}

@media (max-width: 1100px) {
  .thanks-page__inner { grid-template-columns: 1fr;gap: 28px; padding: 0 0 }
  .thanks-page__title { font-size: 46px }
}



/* ====================
   The Freedom Library — First screen (library page)
   Static flow layout with responsive overrides
   ==================== */
.library-page { background: #000; color: #fff; padding: 30px 0 0 }
.library-page__inner { width: min(100% - 32px, 1340px); margin: 0 auto; display: grid; gap: 17px; align-items: start }
.library-page__logo { display: block; margin-bottom: 18px }
.library-page__kicker {margin-top: 30px; font-family: var(--font-heading); font-size: 20px; color: var(--color-orange); font-weight:700; margin-bottom: 11px }
.library-page__title { font-family: var(--font-heading); font-weight:700; font-size: 62px; line-height: 62px; margin: 0 0 24px; color: #fff }
.library-page__desc { font-family: var(--font-body); font-size: 16px; line-height: 1.3; color: rgba(255,255,255,0.6); max-width: 409px; margin-bottom: 36px }

.library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px }
.lib-card { background: #1E1E1E; border-radius: 32px; padding: 20px; box-sizing: border-box; height: 440px; display:flex; flex-direction:column;}
.lib-card__visual { background: #fff; border-radius: 16px; width: 100%; height: 200px; overflow:hidden; margin-bottom: 18px }
.lib-card__visual img { width:100%; height:100%; object-fit:cover; display:block }
.lib-card__title { font-family: var(--font-body); font-weight:700; font-size:20px; color: #fff; margin: 0 12px 10px  12px}
.lib-card__excerpt { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.6); margin: 0 12px 10px  12px }
.lib-card__read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 80px;
  color: #fff;
  margin-top: 31px;
  margin-left: 12px;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
  line-height: 1;
}
.lib-card__read svg { width:16px; height:16px;  flex-shrink: 0 }
.lib-card__read:hover { color: var(--color-orange); border-bottom-color: var(--color-orange); }

.library-cta { background: var(--color-orange); border-radius: 32px; margin-top: 120px; padding: 34px; display:flex; align-items:center; justify-content:space-between; gap:20px }
.library-cta__text { font-family: var(--font-heading); font-size:52px; color:#000; max-width: 760px }
.library-cta__button {     background: #000;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    justify-content: center;
    font-weight: 600;
    height: 50px;
    margin-top: 6px;
    display: inline-flex
;
    align-items: center;
}
.library-page__left{
    margin-left: 60px;
}
.liberty_left{
    width: 57%;
    margin-left: 24px;
}
.library-cta__kicker{
        font-size: 20px;
    margin-top: 11px;
}
.library-cta { position: relative;overflow: hidden;}
.library-cta__visual {     position: absolute;
    right: 315px;
    top: -31px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 18px; }
.library-cta__plane img { width: 250px; height: auto; display:block }
.library-cta__flags { display:flex; flex-direction:column; gap: 12px; position: absolute;right: 80px;}
.library-cta__flag { width: 64px; height: 64px; background:#fff; border:5px solid var(--color-orange); border-radius: 999px; display:flex; align-items:center; justify-content:center; overflow:hidden }
.library-cta__flag img { width: 46px; height: 46px; object-fit:contain }

/* Position individual flags with correct selectors */
.library-cta__flags .library-cta__flag { position: relative; transition: right 180ms ease, transform 180ms ease; }
.library-cta__flags .library-cta__flag:nth-child(1) {     right: -49px;
    top: 50px;    transform: scale(1.2);}
.library-cta__flags .library-cta__flag:nth-child(2) {     top: -11px;right: 70px;width: 100px;height: 100px;}
.library-cta__flags .library-cta__flag:nth-child(3) {     right: 15px;
    bottom: 40px;
    transform: scale(1.3); }
/* Desktop widths where design is large */
@media (min-width: 1200px) {
.library-page__title{
    width: 55%;
}
}
/* Tablet & mobile: stack columns, center text and scale fonts */
@media (max-width: 1024px) {
    .next-steps__cards { grid-template-columns: 1fr; gap: 16px ;margin-top: 18px;}
  .next-steps__heading {        text-align: center;
        font-size: 44px;
        margin: 52px 0 0 0; }
        .next-steps__inner {
    width: min(100% - 32px, 1340px);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
  .next-steps__card { padding: 18px; border-radius: 18px }
  .library-page{
        padding: 7px 0 0;
  }
  .liberty_left{
width: 90%;
margin: 0 auto; 
padding: 0 5px;
  }
  .library-page__inner {         grid-template-columns: 1fr;
        gap: 28px;
        padding: 0;
        margin: 0 auto;
        width: 100%; }
        .library-cta__button{
              margin-top: 27px;
        }
  .library-page__title { font-size: 46px; line-height: 46px; text-align: center }
  .library-page__kicker { text-align: center }
  .library-page__desc { margin: 0 auto 53px; text-align: center }
  .library-grid { grid-template-columns: 1fr; }
  .lib-card { min-height: auto }
  .library-cta { flex-direction: column; text-align: center; padding: 28px 0 0 0 }
  .library-cta__text { font-size: 46px;line-height: 43px; }
  .library-cta__visual { position: static; flex-direction: row; gap: 12px; margin-top: 18px; justify-content:center }
  .library-cta__plane img { width: 160px }
  .library-cta__flags { flex-direction:row }
  .library-cta__flag { width: 48px; height: 48px; border-width: 4px }
  .library-page__left{
    margin: 0;
  }
}

/* Reveal animations: initial hidden state and in-view transitions */
.reveal, [data-reveal] {
  opacity: 0;
  transform: translateY(36px) scale(.995);
  transition: opacity 640ms cubic-bezier(.22,.9,.2,1), transform 640ms cubic-bezier(.22,.9,.2,1);
  will-change: opacity, transform;
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.reveal-left, [data-reveal].reveal-left { transform: translateX(-48px) translateY(18px) scale(.995); }
.reveal.reveal-right, [data-reveal].reveal-right { transform: translateX(48px) translateY(18px) scale(.995); }
.reveal.reveal-up, [data-reveal].reveal-up { transform: translateY(48px) scale(.995); }
.reveal.reveal-in, [data-reveal].reveal-in, .reveal-in { opacity: 1; transform: translateX(0) translateY(0) scale(1); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-reveal] { transition: none !important; transform: none !important; opacity: 1 !important }
}



/* Mobile: stack columns, form first then photo */
@media (max-width: 999px) {

  .consultation-form-page__row { flex-direction: column }
  .consultation-form-page__card { padding: 24px }
  .consultation-form-page { padding: 0;margin: 0;width: 100%; }
}

  /* Floating label styles */
  .consultation-form-page__field { position: relative }
  .consultation-form-page__label {
    position: absolute;
    left: 23px;
    background: #fff;
    top: -11px;
    padding: 4px 8px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    transition: transform 160ms 
ease, font-size 160ms 
ease, top 160ms 
ease, color 160ms 
ease;
    transform-origin: left top;
    z-index: 2;
  }

  /* Lift label and highlight border when field is focused */
  .consultation-form-page__field:focus-within .consultation-form-page__label {
    transform: translateY(-22px) scale(0.95);
    top: 0;
    left: 9px;
    color: var(--color-orange);
    background: none;
    font-size: 10px;
  }

  .consultation-form-page__field:focus-within .consultation-form-page__input,
  .consultation-form-page__field:focus-within .consultation-form-page__textarea {
    outline: none;
    border: 1px solid var(--color-orange);
  }

  .consultation-form-page__input, .consultation-form-page__textarea { position: relative; z-index: 1 }


/* ====================
   Features Section
   ==================== */
.features-section { padding:0 50px 120px; margin-top:0 }
.section-title { font-family:var(--font-heading); font-size:52px; font-weight:700; line-height:1; margin:0 0 24px 36px }
.features__grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(12px, 2vw, 24px); padding:0; align-items:start }
.feature-card { background-color:var(--color-dark-gray); border-radius:32px; padding:19px; padding-bottom:30px; height:165px; display:flex; flex-direction:column; justify-content:space-between }
.feature-card__icon-wrapper { width:40px; height:40px; background-color:var(--color-black); border-radius:50%; display:flex; justify-content:center; align-items:center }
.feature-card__icon { width:24px; height:24px }
.feature-card__text { font-size:16px; font-weight:300; line-height:1.3; margin:0 0 0 9px }

/* ====================
   Testimonial Section
   ==================== */
.testimonial-section { margin:0 50px 116px; padding:60px; height:184px; background-color:var(--color-white); border-radius:32px; display:flex; justify-content:center; align-items:center; position:relative }
.testimonial__text { font-family:var(--font-heading); font-size:52px; font-weight:700; line-height:1; color:var(--color-black); margin:0; text-align:center; max-width:720px }
.testimonial__quote { position:relative; width:50px; height:39px }
.testimonial__quote--left { top:-40px; left:0; transform:rotate(180deg) }
.testimonial__quote--right { bottom:-52px; right:0 }

/* ====================
   Problems Section
   ==================== */
.problems-section { padding:0 30px; display:grid; grid-template-columns:1fr 49%; gap:11px; align-items:start }
.problems__subtitle { font-family:var(--font-heading); font-size:20px; font-weight:700; color:var(--color-orange); margin:0 0 9px; text-transform:uppercase }
.problems__title { font-family:var(--font-heading); font-size:52px; font-weight:700; line-height:1; margin:0; width:530px }
.problems__grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: clamp(10px, 2vw, 20px); margin:20px 0 0 0 }
.problem-card { background-color:var(--color-dark-gray); border-radius:32px; padding:18px; height:162px; display:flex; flex-direction:column }
.problems__subtitle, .problems__title { margin-left:56px }
.problem-card__icon-wrapper { width:40px; height:40px; background-color:var(--color-black); border-radius:50%; display:flex; justify-content:center; align-items:center; margin-bottom:32px }
.problem-card__icon { width:24px; height:24px }
.problem-card__text { font-size:14px; font-weight:300; line-height:1.3; margin:0 }

/* ====================
   Sovereign Card
   ==================== */
.sovereign-card { background-color:var(--color-orange); border-radius:32px; padding:50px; max-width:665px; min-height:516px; color:var(--color-black); flex-shrink:0; margin:212px 0 0 }
.sovereign-card__title { font-family:var(--font-heading); font-size:52px; font-weight:700; line-height:0.99; margin:0 0 10px; max-width:565px }
.sovereign-card__text { font-size:16px; font-weight:300; line-height:1.3; margin:0 0 24px; max-width:565px }
.info-box { display:flex; align-items:flex-start; gap:12px; margin-top:78px }
.info-box__icon { width:36px; height:36px; flex-shrink:0; background:var(--color-black); border-radius:50%; padding:8px }
.info-box__text { font-size:14px; font-weight:300; line-height:1.3; margin:0; opacity:0.6 }

/* ====================
   Popup (flow-based consultation modal)
   ==================== */
.popup { position:fixed; inset:0; z-index:1600; display:flex; align-items:center; justify-content:center; padding:24px; visibility:hidden; opacity:0; transition: visibility 0s 0.25s, opacity 0.25s ease-in-out }
.popup.is-open { visibility:visible; opacity:1; transition: visibility 0s 0s, opacity 0.25s ease-in-out }
.popup__overlay { position:absolute; inset:0; background-color: rgba(0,0,0,0.5) }
.popup__container { position:relative; max-width:1120px; width:100%; max-width:665px; box-sizing:border-box; background:#fff; border-radius:32px; padding:42px 45px; color:var(--color-black); transform: translateY(12px) scale(.98); opacity:0; transition: transform 360ms cubic-bezier(.22,.9,.2,1), opacity 360ms ease }
.popup.is-open .popup__container { transform: translateY(0) scale(1); opacity:1 }

/* Optional fullscreen container variant: make the form fill viewport and center its content */
.popup__container--fullscreen {
  /* Make the container size minimal to its content while staying centered
     and respecting viewport limits. This keeps a fullscreen overlay but a
     compact centered card (no page scrolling behind because body is locked). */
  width: auto;
  height: auto;
  min-width: 320px;
  min-height: 180px;
  max-width: calc(100% - 48px);
  max-height: calc(100vh - 48px);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #fff;
}
.popup.is-closing .popup__container { transform: translateY(-10px) scale(.96); opacity:0 }
.popup--consultation .popup__inner { display:flex; gap:28px; align-items:stretch }
.popup__left { flex:1 1 620px; background:transparent; border-radius:8px; padding:8px 0 0 0; color:var(--color-black) }
.popup__right { width:482px; flex:0 0 482px; background:#fff; border-radius:16px; overflow:hidden; display:flex; align-items:center; justify-content:center; padding:0 }
.popup__visual img { width:100%; height:100%; object-fit:cover; display:block }
.popup__close { position:absolute; top:12px; right:12px; background:none; border:none; cursor:pointer; padding:6px; width:36px; height:36px; display:flex; align-items:center; justify-content:center; opacity:0.85 }
.popup__close img { width:18px; height:18px }

.consultation-form__title { font-family:var(--font-heading); font-size:52px; line-height:1; margin:6px 0 18px; color:var(--color-black) }
.form-grid { display:flex; gap:20px }
.form-col { flex:1; display:flex; flex-direction:column; gap:0 }
.form-group { display:flex; flex-direction:column; gap:6px; position:relative }
.form-group.full-width { margin-top:18px }
.form-label {     z-index: 9999;font-size:14px; color:rgba(0,0,0,0.85); display:inline-block; max-width:100%; align-self:flex-start; transition: transform 0.18s ease, opacity 0.18s ease; position:relative; top:7px; left:19px; height:1px; background:#fff; padding:8px }
.form-input { width:100%; padding:14px 16px; border-radius:12px; border:1px solid rgba(0,0,0,0.08); background:#fff; color:var(--color-black); font-size:14px; resize:none }
.form-group:focus-within .form-label { transform: translateY(-15px) translateX(-10px); opacity:0.95 }
.form-input:focus, .form-input:active, .form-input:focus-visible { border:1px solid #FF7146 !important; outline:1px solid #FF7146 !important }
.form-input::placeholder { color: rgba(255,255,255,0.5) }
.consultation-form__button { margin-top:18px; width:100%; background:var(--color-orange); color:#fff; padding:18px 20px; border-radius:12px; font-size:14px }
.popup__right .play-mock { width:56px; height:56px; border-radius:50%; background:#fff; display:flex; align-items:center; justify-content:center }
.form-input::placeholder { color: var(--color-white); opacity:0.4 }
.consultation-form__button { width:100%; text-align:center; padding:16px 32px; font-size:14px }

/* ====================
   Mobile Menu (non-media rules)
   ==================== */
.mobile-menu { position:fixed; top:0; left:0; width:100%; height:100%; z-index:1001; visibility:hidden }
.mobile-menu.is-open { visibility:visible }
.mobile-menu__overlay { position:absolute; top:0; left:0; width:100%; height:100%; background-color: rgba(0,0,0,0.8); opacity:0; transition: opacity 0.3s ease-in-out }
.mobile-menu.is-open .mobile-menu__overlay { opacity:1 }
.mobile-menu__panel { position:absolute; top:0; right:0; width:100%; max-width:335px; height:100%; background-color:var(--color-dark-gray); padding:20px; transform:translateX(100%); transition: transform 0.3s ease-in-out; display:flex; flex-direction:column }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0) }
.mobile-menu__close { background:none; border:none; padding:0; cursor:pointer; align-self:flex-end; margin-bottom:40px }
.mobile-nav__list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:20px; margin-bottom:40px }
.mobile-nav__link { font-family:var(--font-heading); font-size:32px; color:var(--color-white); text-decoration:none }
.mobile-menu__button { width:100%; text-align:center; margin-top:auto }
.button--secondary { background-color:var(--color-white); color:var(--color-black) }
.mobile-download-section { display:none }

/* ====================
   Site-wide animations
   ==================== */
html { scroll-behavior: smooth }
.hero-section, .features-section, .testimonial-section, .problems-section, .sovereign-card, .feature-card, .problem-card { transform: translateY(12px); opacity: 0; will-change: transform, opacity; transition: transform 420ms cubic-bezier(.22,.9,.2,1), opacity 420ms ease-in-out }
.reveal-left { transform: translateX(-28px); opacity: 0 }
.reveal-right { transform: translateX(28px); opacity: 0 }
.reveal-fade { transform: translateY(12px); opacity: 0 }
.in-view.reveal-left, .in-view.reveal-right, .in-view.reveal-fade { transform: translateX(0) translateY(0) !important; opacity: 1 !important }
.features__grid .feature-card:nth-child(odd) { transform: translateX(-28px); opacity: 0 }
.features__grid .feature-card:nth-child(even) { transform: translateX(28px); opacity: 0 }
.problems__grid .problem-card:nth-child(odd) { transform: translateX(-20px); opacity: 0 }
.problems__grid .problem-card:nth-child(even) { transform: translateX(20px); opacity: 0 }
.features__grid .feature-card.in-view, .problems__grid .problem-card.in-view { transform: translateX(0) translateY(0) !important; opacity: 1 !important }
body.is-loaded .hero-section { transform: translateY(0); opacity: 1 }
body.is-loaded .features-section { transform: translateY(0); opacity: 1; transition-delay: 80ms }
body.is-loaded .testimonial-section { transform: translateY(0); opacity: 1; transition-delay: 160ms }
body.is-loaded .problems-section { transform: translateY(0); opacity: 1; transition-delay: 240ms }
.in-view { transform: translateY(0) !important; opacity: 1 !important }
.popup { transition: opacity 300ms ease, visibility 0s 0.3s }
.popup.is-open { transition: opacity 300ms ease }
.appear-instant { transition: none !important; transform: none !important; opacity: 1 !important }

/* -----------------------------
   Media queries (moved here, original order preserved)
   ----------------------------- */
@media (max-width: 768px){
  .next-steps__note {
    margin-top: 23px;
    font-size: 15px;
    margin-left: 0;
    text-align: center;
}
  .thanks-page{
    padding: 0;
  }
    .thanks-page__inner {   
        display: flex;
        padding: 0;
        flex-direction: column-reverse;
        width: 100%;
      }
        .thanks-page__left{
          margin-top: 0px;
          margin-left: 0;
        }
        .thanks-page__logo {
    display: block;
    margin-bottom: 21px;
    text-align: center;
    margin: 0 auto 24px;
    width: 91px;
}
  .thanks-page__photo { order: 2; width: 100%; height: 265px }
  .thanks-page__left { order: 1 }
  .thanks-page__title {         font-size: 46px;
        text-align: center;
        line-height: 50px; }
  .thanks-page__kicker { text-align: center;margin: 0;}
  .thanks-page__desc { text-align: center; margin-left: auto; margin-right: auto;margin-bottom: 0;}
  .thanks-page__note { text-align: center }
.library-page__logo{
  margin: 0 auto;
  width: 100px;
}
.library-cta__flags .library-cta__flag:nth-child(2) {
    top: 339px;
    right: -90px;
    width: 90px;
    height: 90px;
}
.library-cta__flags .library-cta__flag:nth-child(3) {
    right: -42px;
    bottom: -414px;
    transform: scale(1.4);
}
.library-cta__flags .library-cta__flag:nth-child(1) {
    right: 12px;
    top: 390px;
    transform: scale(1.6);
}
.library-cta{
          gap: 170px;
}
.lib-card{
  padding: 30px;
          height: 399px;
}
.library-cta{
  margin-top: 149px;
}
.lib-card__visual{
      height: 149px;
}
.lib-card__title{
  font-size: 16px;
}

.lib-card__title,.lib-card__excerpt{
  margin: 4px 0;
}
.lib-card__read{
  margin: 34px 0 0 0 ;
}

      .consultation-form-page__inner { grid-template-columns: 1fr; }
      .howitworks__card {
    display: flex;
    gap: 0;
    align-items: flex-start;
    flex-direction: row!important;
        min-height: auto;
    padding: 17px 20px!important;
    border-radius: 32px;
    box-sizing: border-box;
    height: auto;
}
.consultation-form-page__title {
    font-size: 46px;
    text-align: center;
}
.price-bar__left{
    flex-direction: column;
}
.price-bar__note br{
    display: none;
}
.price-bar__note{
    margin: 0;
}
.price-bar__cta-wrap{
    margin-top: 30px;
    width: 100%;
}
.howitworks-section{
    gap: 110px;
}
.howitworks-section{
            padding: 106px 0 0 0;
}

  .desktop-menu,.desktop_head_btn{display: none !important;}
  .nav-cta.btn_mobil{display:block}
  .header_bg{ justify-content: space-between;padding: 10px;}
  .popup{
    padding: 10px;
  }
  .problems-section{
        grid-template-columns: 1fr!important;
  }
  .popup__container{
    padding: 0!important;
  }
  .consultation-form__title{
            font-size: 46px!important;
        margin-top: 41px!important;
        text-align: center!important;
  }
  .popup__close{
        right: 50%!important;
        transform: scale(1.7) translateX(50%)!important;
  }
}

@media (min-width: 768px){
  .nav-cta.desktop{display:flex}
  .nav-cta.btn_mobil{display:none}
}

@media (max-width: 480px) {
    .popup__left { padding: 18px; }
    .form-grid { flex-direction: column; }
    .consultation-form__title { font-size: 36px; }
}

@media (max-width: 768px) {
    .popup {
        align-items: flex-start; /* pin modal to top so users can scroll down */
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .popup__container {
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
        .popup__inner { flex-direction: column-reverse; }
    .popup__right { width: 100%; flex: 0 0 auto; height: 260px; }
    .popup__left { padding: 28px; }
    .consultation-form__title { font-size: 42px; text-align: left; }
    .header-inner{padding:0px}
  /* mobile overlay uses accent background when open */
  /* keep nav container transparent; menu-card carries the color */
  .header-nav{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:transparent;padding:0;z-index:120;overflow:visible}
  .header-nav ul{display:flex;flex-direction:column;gap:18px}
  .header-nav a{color:#fff}
  .header-nav a:hover{opacity:0.95}
  /* Mobile CTA inside the overlay should be visible against accent bg */
  .nav-cta{display:block;margin:24px auto 0;max-width:320px}
  .nav-cta.btn_mobil{background:#fff;color:#FF7146}
  .nav-toggle{display:block}
  .nav-block{position:relative}
  .header-nav[data-open="true"]{display:block}
  .hamburger{background:#fff}
  .hamburger::before{background:#fff}
  .hamburger::after{background:#fff}

  /* transform hamburger to an X when menu is open */
  .nav-toggle[aria-expanded="true"] .hamburger{background:transparent}
  .nav-toggle[aria-expanded="true"] .hamburger::before{transform:rotate(45deg);top:0}
  .nav-toggle[aria-expanded="true"] .hamburger::after{transform:rotate(-45deg);top:0}

  /* overlay positioned from the top; height follows the menu-card (auto) */
  .menu-overlay{position:fixed;inset:0;display:block;pointer-events:auto}
  .menu-overlay[aria-hidden="true"]{display:none}

  /* Menu card centered and internal layout flow-based (static/relative) */
  .menu-card{
            position: absolute;
        width: 100%;
        left: -50%;
        top: 16px;
        transform: translateX(50%);
        background: #FF7146;
        border-radius: 20px;
        box-sizing: border-box;
        padding: 16px;
  }

  .menu-header{display:flex;align-items:center;justify-content:space-between;padding:10px}
  .mobile-logo img{width:89px;height:32px;display:block}
  .close-btn{background:none;border:0;font-size:28px;line-height:1;cursor:pointer;color:#000}

  /* Flow content: menu list then CTA; heights are content-driven */
  .menu-content{padding:8px 10px 24px 10px;display:flex;flex-direction:column;gap:24px}
  .mobile-menu-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:24px;}
  .mobile-menu-list li{ width:100%; text-align:left }
  .mobile-menu-list a{ font-family:'Bebas Neue',sans-serif; font-size:46px; color:#000; text-decoration:none; display:block }
  .menu-card .nav-cta{ align-self: flex-start; background:#000; color:#fff; width:205px; height:50px; border-radius:12px; display:flex; align-items:center; justify-content:center; text-decoration:none; text-align:left; margin:initial }
}

/* Media queries group continued */
@media (max-width: 1100px) {
  .hero__content, .problems__subtitle, .problems__title { margin: 0 }
}

@media (min-width: 1101px) and (max-width: 1200px) {
  .problems-section { grid-template-columns: 40% 59% }
}

@media (min-width: 769px) and (max-width: 992px) {
    .next-steps__inner {
        width: 80%;
        margin: 0 auto;
    }
}
@media (min-width: 769px) and (max-width: 1100px) {

  .thanks-page__photo {
    height: 300px;
}
    .consultation-photo{
        padding: 0;
        margin-top: 10px;
    }
        .library-grid {
        grid-template-columns: 1fr 1fr;
    }
    .library-cta__flags .library-cta__flag:nth-child(1) {
    right: -49px;
    top: 260px;
    transform: scale(1.2);
}

.library-cta__flags .library-cta__flag:nth-child(2) {
    top: 289px;
    right: -20px;
    width: 100px;
    height: 100px;
}
.library-cta__flags .library-cta__flag:nth-child(3) {
    right: 8px;
    bottom: -340px;
    transform: scale(1.3);
}
    .price-bar{
                height: auto;
        flex-direction: column!important;
    }
      .price-bar { flex-direction: row; align-items: center; padding: 20px; gap: 12px }
    .howitworks__cards{grid-template-columns: 1fr 1fr;}
    .testimonial-section{ height: auto }
    .hero-section { flex-direction: column }
    .hero__media{ margin: 0 auto !important }
    .features__grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px }
    .testimonial__quote--left { top: 10px; left: 6px }
    .testimonial__quote--right { bottom: 22px; right: 16px }
    .problems-section { grid-template-columns: 1fr; gap: 20px }
    .sovereign-card, .problems__grid { margin: 0 }
    .consultation-photo__card{
        width: 100%;
        margin: 0;
        height: 300px;
    }
}

@media (min-width: 769px) {
  .hide-mobile { display: initial !important }
  .show-mobile, .menu-card { display: none !important }
}

@media (min-width: 481px) and (max-width: 768px) {
    .page-wrapper { width:100%; margin:0 auto }
    .header { padding: 15px }
    .header__container { background-color:var(--color-dark-gray); border-radius:20px; padding:14px; height:60px }
    .header__inner { width:auto; padding:0; background:none; height:auto }
    .logo__img { height:32px; width:89px }
    .nav, .header__actions { display:none }
    .burger { display:block; width:32px; height:32px; padding:0; background:none; border:none; cursor:pointer; position:relative }
    .burger__line { display:block; width:22px; height:2px; background-color:var(--color-white); margin:6px auto; transition:var(--transition-fast) }
    .hero-section { padding:40px 24px; flex-direction:column; text-align:center; min-height:auto }
    .hero__content { max-width:100% }
    .hero__title { font-size:46px; text-align:center; margin:0 auto 16px }
    .hero__subtitle { text-align:center; margin:0 auto 24px; max-width:100% }
    .hero__button { display:block; margin:0 auto 40px }
    .hero__countries { justify-content:center; margin:0 auto 24px; flex-wrap:wrap }
    .hero__country-flag:not(:first-child) { margin-left:-8px }
    .hero__countries-text { width:100%; text-align:center; margin:10px 0 0; max-width:100% }
    .hero__media { width:327px; height:327px; margin:0 auto 40px; order:1 }
    .hero__image { border-radius:24px }
    .play-button { width:40px; height:40px; bottom:20px; left:20px }
    .play-button__icon { width:16px; height:16px }
    .button--white { display:block; margin:24px auto; width:auto; padding:16px 24px; position:static }
    .features-section { padding:59px 0; margin-top:0 }
    .features__grid { grid-template-columns:1fr; gap:10px }
    .feature-card { padding:18px; height:76px; flex-direction:row; align-items:center }
    .feature-card__icon-wrapper { margin-bottom:0; margin-right:18px; flex-shrink:0 }
    .feature-card__text { font-size:14px }
    .testimonial__text { font-size:36px }
    .testimonial__quote { width:40px; height:30px }
    .testimonial__quote--left { top:-24px; left:0 }
    .testimonial__quote--right { bottom:-24px; right:0 }
    .problems-section { padding:40px 24px; flex-direction:column; gap:40px }
    .problems__left { display:flex; flex-direction:column; align-items:center; width:100% }
    .problems__subtitle { text-align:center; margin-bottom:14px; max-width:260px; line-height:100% }
    .problems__title { text-align:center; margin:0 auto 40px; max-width:100% }
    .problems__grid { grid-template-columns:1fr; gap:10px; margin-top:40px; margin-bottom:0 }
    .problem-card { height:76px; flex-direction:row; align-items:center; padding:20px }
    .problem-card__icon-wrapper { margin-bottom:0; margin-right:18px; flex-shrink:0 }
    .sovereign-card { width:100%; min-height:auto; padding:40px 24px; margin:0 -9px; border-radius:32px }
    .sovereign-card__title { font-size:46px; text-align:center; margin:0 auto 16px; max-width:100% }
    .sovereign-card__text { text-align:center; margin:0 auto 24px; max-width:100% }
    .button--black { display:block; margin:0 auto 40px }
    .info-box { margin-top:0; justify-content:center; text-align:center }
    .info-box__icon { width:30px; height:30px }
    .info-box__text { text-align:center }
    .mobile-download-section { display:block; padding:40px 24px 60px; text-align:center }
    .mobile-download-section__button { display:inline-block; padding:16px 24px; width:auto }
    .hero-section { padding:22px 0 }
    .hero__title { display:block; max-width:300px; margin-bottom:10px }
    .hero__title span { display:inline }
    .hero__countries-text { margin-top:18px }
    .hero__countries { margin-bottom:38px }
    .hero__button { display:inline-block }
    .hero__button {         margin-bottom: 19px;
        margin-top: 15px;
        display: inline-flex
;
        justify-content: center;
        align-items: center;}
    .features-section { align-items:normal; display:flex; flex-direction:column }
    .section-title { margin:0; margin-bottom:22px; align-self:center }
    .feature-card { justify-content:flex-start }
    .feature-card { border-radius:20px; height:auto }
    .feature-card__text { margin:0 }
    .testimonial-section { padding:30px 0; align-items:flex-start; margin:8px 0; height:auto }
    .testimonial__text { max-width:260px }
    .testimonial__quote { width:50px; height:40px }
    .problems-section { padding:110px 0 }
    .problems__title { max-width:100%; width:100% }
    .problems__grid { margin:0; margin-top:13px }
    .problem-card { border-radius:20px }
    .problems-section { gap:10px }
    .sovereign-card { display:flex; flex-direction:column; margin:0; padding-bottom:20px }
    .sovereign-card__text { line-height:136% }
    .sovereign-card .button--black { display:inline-block; display:flex; flex-direction:column; margin-bottom:80px }
    .info-box { flex-direction:column; align-items:center }
    .mobile-download-section { display:none }
    .problems-section { padding-bottom:0 }
}

@media (max-width: 480px) {
    .page-wrapper { margin:0 auto }
    .header { padding:15px }
    .header__container { background-color:var(--color-dark-gray); border-radius:20px; padding:14px; height:60px }
    .header__inner { width:auto; padding:0; background:none; height:auto }
    .logo__img { height:32px; width:89px }
    .nav, .header__actions { display:none }
    .burger { display:block; width:32px; height:32px; padding:0; background:none; border:none; cursor:pointer; position:relative }
    .burger__line { display:block; width:22px; height:2px; background-color:var(--color-white); margin:6px auto; transition:var(--transition-fast) }
    .hero-section { padding:40px 24px; flex-direction:column; text-align:center; min-height:auto }
    .hero__content { max-width:100% }
    .hero__title { font-size:46px; text-align:center; margin:0 auto 16px }
    .hero__subtitle { text-align:center; margin:0 auto 24px; max-width:100% }
    .hero__button { display:block; margin:0 auto 40px }
    .hero__countries { justify-content:center; margin:0 auto 24px; flex-wrap:wrap }
    .hero__country-flag:not(:first-child) { margin-left:-8px }
    .hero__countries-text { width:100%; text-align:center; margin:10px 0 0; max-width:100% }
    .hero__media { width:327px; height:327px; margin:0 auto 40px; order:1 }
    .hero__image { border-radius:24px }
    .play-button { width:40px; height:40px; bottom:20px; left:20px }
    .play-button__icon { width:16px; height:16px }
    .button--white { display:block; margin:24px auto; width:auto; padding:16px 24px; position:static }
    .features-section { padding:59px 0; margin-top:0 }
    .features__grid { grid-template-columns:1fr; gap:10px }
    .feature-card { padding:18px; height:76px; flex-direction:row; align-items:center }
    .feature-card__icon-wrapper { margin-bottom:0; margin-right:18px; flex-shrink:0 }
    .feature-card__text { font-size:14px }
    .testimonial__text { font-size:36px }
    .testimonial__quote { width:40px; height:30px }
    .testimonial__quote--left { top:24px; left:24px }
    .testimonial__quote--right { bottom:24px; right:24px }
    .problems-section { padding:40px 24px; flex-direction:column; gap:40px }
    .problems__left { display:flex; flex-direction:column; align-items:center; width:100% }
    .problems__subtitle { text-align:center; margin-bottom:14px; max-width:260px; line-height:100% }
    .problems__title { text-align:center; margin:0 auto 40px; max-width:100% }
    .problems__grid { grid-template-columns:1fr; gap:10px; margin-top:40px; margin-bottom:0 }
    .problem-card { height:76px; flex-direction:row; align-items:center; padding:20px }
    .problem-card__icon-wrapper { margin-bottom:0; margin-right:18px; flex-shrink:0 }
    .sovereign-card { width:100%; min-height:auto; padding:40px 24px; margin:0 -9px; border-radius:32px }
    .sovereign-card__title { font-size:46px; text-align:center; margin:0 auto 16px; max-width:100% }
    .sovereign-card__text { text-align:center; margin:0 auto 24px; max-width:100% }
    .button--black { display:block; margin:0 auto 40px }
    .info-box { margin-top:0; justify-content:center; text-align:center }
    .info-box__icon { width:30px; height:30px }
    .info-box__text { text-align:center }
    .mobile-download-section { display:block; padding:40px 24px 60px; text-align:center }
    .mobile-download-section__button { display:inline-block; padding:16px 24px; width:auto }
    .hero-section { padding:22px 0 }
    .hero__title { display:block; max-width:300px; margin-bottom:10px }
    .hero__title span { display:inline }
    .hero__countries-text { margin-top:18px }
    .hero__countries { margin-bottom:38px }
    .hero__button { display:inline-block }
    .hero__button {        margin-bottom: 19px;
        margin-top: 15px;
        display: inline-flex
;
        justify-content: center;
        align-items: center;}
    .features-section { align-items:normal; display:flex; flex-direction:column }
    .section-title { font-size:39px; margin:0; margin-bottom:22px; align-self:center }
    .feature-card { justify-content:flex-start }
    .feature-card { border-radius:20px; height:auto }
    .feature-card__text { margin:0 }
    .testimonial-section { padding:30px 0; align-items:flex-start; margin:8px 0; height:auto }
    .testimonial__text { max-width:260px }
    .testimonial__quote { width:50px; height:40px }
    .problems-section { padding:110px 0 }
    .problems__title { max-width:100%; width:100% }
    .problems__grid { margin:0; margin-top:13px }
    .problem-card { border-radius:20px }
    .problems-section { gap:10px }
    .sovereign-card { display:flex; flex-direction:column; margin:0; padding-bottom:20px }
    .sovereign-card__text { line-height:136% }
    .sovereign-card .button--black { display:inline-block; display:flex; flex-direction:column; margin-bottom:80px }
    .info-box { flex-direction:column; align-items:center }
    .mobile-download-section { display:none }
    .problems-section { padding-bottom:0 }
}


.consultation-form-page__left{
  color: #000;
}