/* Skip link for keyboard accessibility */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--orange); color: white; font-weight: 700;
  padding: 8px 16px; border-radius: 0 0 6px 6px; z-index: 9999;
  text-decoration: none; font-size: 0.85rem; transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: #1c1c1c; color: rgba(255,255,255,0.88);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 2px solid var(--orange);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p {
  flex: 1; font-size: 0.82rem; line-height: 1.55; margin: 0; min-width: 220px;
}
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--orange); color: white; border: none; border-radius: 5px;
  padding: 9px 20px; font-size: 0.82rem; font-weight: 700; cursor: pointer;
  font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 0.3px;
  transition: background 0.18s;
}
.cookie-btn-accept:hover { background: var(--orange-dark); }
.cookie-btn-decline {
  background: transparent; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 5px;
  padding: 9px 16px; font-size: 0.82rem; font-weight: 500; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: all 0.18s;
}
.cookie-btn-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* =====================================================
   RESET & VARIABLES
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #FD7400;
  --orange-dark:   #c55b00;
  --orange-hover:  #e56800;
  --orange-light:  #FC9C12;
  --orange-bg:     rgba(253,116,0,0.08);
  --orange-border: rgba(253,116,0,0.22);
  --green:         rgb(80, 169, 1);
  --green-dark:    rgb(60, 130, 1);
  --green-bg:      rgba(80,169,1,0.1);
  --gray-bg:       #F5F5F7;
  --gray-border:   #E1E1E1;
  --white:         #ffffff;
  --text:          #1a1a1a;
  --text-mid:      #555555;
  --text-muted:    #999999;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.11);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3,
.sec-title,
.logo,
.footer-logo-txt,
.hero h1,
.hero h2,
.cta-section h2 {
  font-family: 'Outfit', 'Poppins', sans-serif !important;
}

img { max-width: 100%; display: block; }

/* =====================================================
   HEADER
   ===================================================== */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; gap: 8px;
}

.logo {
  font-size: 1.55rem; font-weight: 800;
  color: var(--orange); text-decoration: none;
  letter-spacing: -0.5px; flex-shrink: 0; margin-right: 8px;
}
.logo span { color: var(--green); }

.nav-links {
  display: flex; gap: 2px; align-items: center; margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 7px 13px; border-radius: 6px;
  transition: all 0.18s; position: relative;
}
.nav-links a:hover { color: var(--orange); background: var(--orange-bg); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 13px; right: 13px;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform 0.2s ease; border-radius: 2px;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.btn-order-nav {
  background: var(--orange); color: white;
  padding: 9px 20px; border-radius: 5px;
  font-weight: 700; text-transform: uppercase;
  font-size: 0.82rem; letter-spacing: 0.3px;
  margin-left: 6px; transition: background 0.18s;
}
.nav-links a.btn-order-nav:hover  { background: var(--green); color: white; }
.nav-links a.btn-order-nav:active { background: var(--green-dark); color: white; }
.btn-order-nav::after             { display: none !important; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; margin-left: auto;
  background: none; border: none;
}
.burger span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.2s; display: block;
}

.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  height: calc(100dvh - 68px);
  height: calc(100vh - 68px);
  overflow-y: auto;
  background: var(--white); z-index: 199;
  padding: 24px; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem; font-weight: 600; color: var(--text);
  text-decoration: none; padding: 14px 16px;
  border-bottom: 1px solid var(--gray-border);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn-order-mob {
  margin-top: 16px; background: var(--orange); color: white;
  text-align: center; border-radius: 5px; padding: 14px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: none !important;
}
.mobile-menu .btn-order-mob:hover { background: var(--orange-dark); }

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.lang-switcher { position: relative; flex-shrink: 0; margin-left: 4px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--gray-bg); border: 1px solid var(--gray-border);
  border-radius: 6px; padding: 6px 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: all 0.18s; white-space: nowrap;
}
.lang-btn:hover { border-color: var(--orange); color: var(--orange); }
.lang-btn img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }
.lang-btn svg { width: 10px; height: 10px; transition: transform 0.2s; flex-shrink: 0; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-btn .lang-code { font-weight: 700; }

.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 200px; overflow: hidden; z-index: 500;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; font-size: 0.81rem; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  transition: all 0.15s; border-bottom: 1px solid var(--gray-border);
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover  { background: var(--gray-bg); color: var(--orange); }
.lang-dropdown a.active { color: var(--orange); font-weight: 700; background: rgba(253,116,0,0.05); }
.lang-dropdown a img    { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }

.mobile-lang-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 16px; border-top: 1px solid var(--gray-border);
}
.mobile-lang-row a {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 10px; border: 1px solid var(--gray-border);
  border-radius: 6px; font-size: 0.75rem; font-weight: 600;
  color: var(--text-mid); text-decoration: none; transition: all 0.15s;
}
.mobile-lang-row a img                    { width: 16px; height: 11px; border-radius: 1px; }
.mobile-lang-row a:hover,
.mobile-lang-row a.active { border-color: var(--orange); color: var(--orange); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-green {
  display: inline-block; background: var(--green); color: white;
  border: none; border-radius: 5px; padding: 12px 28px;
  font-size: 0.92rem; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  text-transform: uppercase; transition: background 0.18s;
  letter-spacing: 0.3px; line-height: 1.4;
}
.btn-green:hover { background: var(--orange); color: white; }

.btn-orange {
  display: inline-block; background: var(--orange); color: white;
  border: none; border-radius: 5px; padding: 12px 28px;
  font-size: 0.92rem; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  text-transform: uppercase; transition: background 0.18s;
  letter-spacing: 0.3px; line-height: 1.4;
}
.btn-orange:hover { background: var(--orange-dark); color: white; }

.btn-outline {
  display: inline-block; background: transparent; color: var(--orange);
  border: 2px solid var(--orange); border-radius: 5px; padding: 10px 24px;
  font-size: 0.88rem; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  text-transform: uppercase; transition: all 0.18s; letter-spacing: 0.3px;
}
.btn-outline:hover { background: var(--orange); color: white; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(253,116,0,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(153,204,51,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(253,156,18,0.05) 0%, transparent 70%),
    #F7F5F2;
  padding: 56px 24px 72px;
  position: relative; overflow: hidden; min-height: 680px;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(160deg,
    rgba(253,116,0,0.04) 0%, rgba(253,116,0,0.07) 40%, rgba(253,156,18,0.04) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(253,116,0,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 30%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2; min-height: 520px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,116,0,0.1); border: 1px solid var(--orange-border);
  color: var(--orange); font-size: 0.75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
  animation: fadeSlideUp 0.55s cubic-bezier(.22,.68,0,1.2) 0.1s both;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0;
  animation: scalePop 0.6s cubic-bezier(.22,.68,0,1.4) 0.8s both;
}

.hero h1,
.hero h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.5rem); font-weight: 900;
  color: var(--text); line-height: 1.08; letter-spacing: -1px; margin-bottom: 18px;
  animation: fadeSlideUp 0.6s cubic-bezier(.22,.68,0,1.1) 0.25s both;
}
.hero h1 em, .hero h2 em { font-style: normal; color: var(--orange); }

.hero-sub {
  font-size: 1.05rem; color: var(--text-mid); margin-bottom: 30px;
  max-width: 480px; line-height: 1.65; font-weight: 400;
  animation: fadeSlideUp 0.55s ease 0.4s both;
}
.hero-cta-row { animation: fadeSlideUp 0.55s ease 0.52s both; }
.hero-hint    {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 26px; line-height: 1.5;
  animation: fadeIn 0.5s ease 0.65s both;
}
.trust-row    {
  display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none;
  animation: fadeSlideUp 0.5s ease 0.72s both;
}
.trust-row li {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-mid);
}
.chk {
  width: 20px; height: 20px; background: var(--green-bg);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 13px; color: var(--green-dark);
  font-weight: 800; flex-shrink: 0;
}

.hero-email-wrap { box-shadow: 0 4px 28px rgba(253,116,0,0.25); }
.hero-email-wrap:focus-within {
  box-shadow: 0 0 0 4px rgba(153,204,51,0.3), 0 8px 32px rgba(0,0,0,0.15);
}
.hero-email-wrap input {
  flex: 1; border: none !important; outline: none !important;
  box-shadow: none !important; background: transparent;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  color: var(--text); padding: 4px 0; min-width: 0;
}
.hero-email-wrap button:hover  { opacity: 0.75; }
.hero-email-wrap button:active { transform: scale(1.08); }

.hero-visual {
  position: relative; display: block;
  animation: slideInRight 0.7s cubic-bezier(.22,.68,0,1.05) 0.35s both;
}

.float-pill {
  position: absolute; background: var(--white);
  border: 1px solid var(--gray-border); border-radius: 10px;
  box-shadow: var(--shadow-md); padding: 9px 14px;
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  display: flex; align-items: center; gap: 6px; z-index: 2;
}
.fp-tr { top: -14px; right: -14px; color: var(--green-dark); animation: float 3.2s ease-in-out 1s infinite; }
.fp-bl { bottom: 20px; left: -18px; color: var(--orange);    animation: float 3.8s ease-in-out 1.4s infinite; }

.hero-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--gray-border); box-shadow: var(--shadow-lg);
  padding: 28px; position: relative;
}
.card-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid var(--gray-border); margin-bottom: 18px;
}
.card-icon-box {
  width: 44px; height: 44px; background: var(--orange);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.card-meta h4 { font-size: 1.05rem; font-weight: 700; margin: 0 0 2px; }
.card-meta p  { font-size: 1rem; color: var(--text-muted); margin: 0; }
.status-pill {
  margin-left: auto; background: var(--green-bg); color: var(--green-dark);
  font-size: 0.75rem; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.step-dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}
.step-dot.done   { background: rgba(80,169,1,0.12); color: rgb(60,130,1); border: 1.5px solid rgba(80,169,1,0.35); }
.step-dot.active { background: rgba(253,116,0,0.10); color: var(--orange); border: 1.5px solid rgba(253,116,0,0.35); }
.step-dot.soon   { background: #f0f0f0; color: var(--text-muted); border: 1.5px solid #e0e0e0; }
.step-info strong { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.step-info small  { color: var(--text-muted); font-size: 0.78rem; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--gray-bg); border-radius: 8px; padding: 12px 16px;
}
.price-row .lbl { font-size: 0.875rem; color: var(--text-muted); }
.price-row .val { font-weight: 800; color: var(--orange); font-size: 1.15rem; }

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide  { display: none; animation: slideEnter 0.65s cubic-bezier(.22,.68,0,1.05) both; }
.hero-slide.active { display: block; }
.hero-slide.exit {
  display: block; animation: slideExit 0.4s ease forwards;
  position: absolute; top: 0; left: 0; right: 0;
}
.hero-slide.reverse { animation-name: slideEnterReverse; }

.slide2-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.slide2-item {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 8px; padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--text); transition: all 0.18s;
}
.slide2-item:hover { border-color: var(--green); background: var(--green-bg); }
.slide2-item img   { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }

.slide3-stat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: var(--gray-bg); border-radius: 8px;
}
.slide3-stat-val   { font-weight: 800; font-size: 1rem; font-family: 'Outfit',sans-serif; flex-shrink: 0; }
.slide3-stat-lbl   { font-size: 0.77rem; color: var(--text-muted); flex: 1; }
.slide3-stat-badge { font-size: 0.66rem; font-weight: 700; padding: 3px 8px; border-radius: 100px; white-space: nowrap; }

.partner-chip {
  background: var(--gray-bg); border: 1px solid var(--gray-border);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.72rem; font-weight: 700; color: var(--text-mid);
}

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 20px 0 8px; position: relative; z-index: 10;
}
.slider-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: var(--text-mid);
  transition: all 0.18s; line-height: 1;
}
.slider-arrow:hover { background: var(--orange); color: white; border-color: var(--orange); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 100px;
  background: var(--gray-border); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.slider-dot.active { background: var(--orange); width: 28px; }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 28px 16px; text-align: center;
}
.stat-item { border-right: 1px solid var(--gray-border); position: relative; }
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 3px; border-radius: 2px;
  background: var(--orange); opacity: 0; transition: opacity 0.2s;
}
.stat-num {
  font-size: 2.2rem; font-weight: 900; color: var(--orange);
  line-height: 1; margin-bottom: 5px;
  font-family: 'Outfit', 'Poppins', sans-serif;
}
.stat-num.counting {
  background: linear-gradient(90deg, var(--orange) 25%, var(--orange-light) 50%, var(--orange) 75%);
  background-size: 600px 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 1.2s linear infinite;
}

.partner-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 40px; border-right: 1px solid var(--gray-border);
  opacity: 0.55; transition: opacity 0.2s; flex-shrink: 0;
}
.partner-logo-item:last-child { border-right: none; }
.partner-logo-item img {
  height: 36px; width: auto; object-fit: contain; display: block;
  filter: grayscale(20%); transition: filter 0.2s;
}
.partner-logo-item:hover { opacity: 1; }
.partner-logo-item:hover img { filter: grayscale(0%); }

/* =====================================================
   SECTIONS — BASE
   ===================================================== */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

.sec-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 700;
  color: #000000; margin-bottom: 12px; letter-spacing: -0.5px;
  line-height: 1.15; white-space: normal; overflow: visible;
}
.sec-sub { font-size: 1rem; color: var(--text-mid); max-width: 560px; line-height: 1.65; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps-section { background: var(--white); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 44px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); overflow: hidden;
}

.step-card {
  background: var(--white); padding: 36px 28px;
  border-right: 1px solid var(--gray-border);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s;
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-card:hover {
  background: rgba(253,116,0,0.03);
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(253,116,0,0.12);
}
.step-num { display: none; }
.step-ico {
  width: 48px; height: 48px; background: var(--orange-bg);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; margin-bottom: 14px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.step-arrow {
  position: absolute; top: 50%; right: -16px; transform: translateY(-50%);
  width: 30px; height: 30px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 0.75rem; font-weight: 700; z-index: 2;
}
.step-card:last-child .step-arrow { display: none; }

.step-img-wrap {
  width: 110px; height: 110px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.step-img {
  width: 110px; height: 110px; object-fit: contain; display: block;
  transition: transform 0.3s ease;
}
.step-card:hover .step-img { transform: scale(1.08) translateY(-3px); }

/* HIW old tabs */
.hiw-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 32px; margin-bottom: 48px;
}
.hiw-tab {
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: 2px solid #ddd;
  background: #fff; color: #777; transition: all .18s; white-space: nowrap;
}
.hiw-tab.active             { background: #333; border-color: #333; color: #fff; }
.hiw-tab:hover:not(.active) { border-color: #999; color: #333; }

/* =====================================================
   HOW IT WORKS TABS (phtab)
   ===================================================== */
.phtab-block  { background: var(--white); padding: 80px 24px; }
.phtab-inner  { max-width: 1200px; margin: 0 auto; }

.phtab-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block;
}
.phtab-headline {
  font-family: 'Outfit', 'Poppins', sans-serif !important;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 800;
  color: var(--text); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 12px;
}
.phtab-headline em { color: var(--orange); font-style: normal; }
.phtab-sub {
  font-size: 1rem; color: var(--text-mid); line-height: 1.65;
  max-width: 560px; margin-bottom: 40px;
}

.phtab-wrap { position: relative; }
.phtab-list { display: grid; grid-template-columns: 1fr 1fr; max-width: 680px; }
.phtab-btn {
  position: relative; border: 1px solid var(--gray-border); border-bottom: none;
  background: var(--gray-bg); font-family: 'Poppins', sans-serif;
  cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding: 16px 12px 18px; border-radius: 12px 12px 0 0;
  text-align: center; z-index: 1; transition: background 0.18s;
  box-shadow: none;
}
.phtab-btn:first-child { margin-right: 6px; }
.phtab-btn:last-child  { margin-left: 6px; }
.phtab-btn:hover       { background: #ece0cf; }
.phtab-btn:hover .phtab-title { color: var(--text-mid); }

.phtab-ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: none; transition: background 0.18s, border-color 0.18s;
}
.phtab-ico svg {
  width: 24px; height: 24px; fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  stroke: var(--text-muted); transition: stroke 0.18s;
}

.phtab-title {
  display: block; font-size: 16px !important; font-weight: 700;
  color: var(--text-muted); line-height: 1.2; transition: color 0.18s;
}
.phtab-sub-label {
  display: block; font-size: 12px !important; font-weight: 600;
  color: var(--text-muted); margin-top: 2px; transition: color 0.18s;
}

.phtab-btn.active {
  background: var(--white); z-index: 3; box-shadow: none;
}
.phtab-btn.active::before { display: none; }
.phtab-btn.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 4px; background: var(--white); z-index: 4;
}
.phtab-btn.active .phtab-title     { color: var(--text); }
.phtab-btn.active .phtab-sub-label { color: var(--green); }
.phtab-btn.active .phtab-ico       { background: var(--orange-bg); border-color: var(--orange-border); }
.phtab-btn.active .phtab-ico svg   { stroke: var(--orange); }

.phtab-panel {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 48px 40px 44px; box-shadow: none; position: relative; z-index: 2;
}

.phtab-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.phtab-step  { position: relative; padding: 0 24px; border-radius: var(--radius); transition: background 0.2s ease; }
.phtab-step:first-child { padding-left: 0; }
.phtab-step:last-child  { padding-right: 0; }
.phtab-step:hover { background: var(--orange-bg); }
.phtab-step:not(:first-child)::before { display: none; }
.phtab-step:not(:last-child)::after { display: none; }

.phtab-icon-ring { display: none; }
.phtab-step-num  { display: none; }

.phtab-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.25; }
.phtab-step p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.phtab-actions {
  margin-top: 48px; display: flex; align-items: center;
  gap: 22px; flex-wrap: wrap; justify-content: center;
}
.phtab-ghost       { font-size: 0.88rem; font-weight: 700; color: var(--orange); text-decoration: none; }
.phtab-ghost:hover { opacity: 0.75; }

/* =====================================================
   CALCULATOR
   ===================================================== */
.calc-section { background: var(--gray-bg); }

.calc-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start; margin-top: 44px;
}

.calc-box {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border); padding: 32px; box-shadow: var(--shadow-md);
}
.calc-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 24px; }

.calc-field { margin-bottom: 16px; }
.calc-field label {
  display: block; font-size: 0.76rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.2px;
}
.calc-field select,
.calc-field input {
  width: 100%; border: 1px solid var(--gray-border); border-radius: 4px;
  padding: 10px 14px; font-size: 0.88rem; font-family: 'Poppins', sans-serif;
  color: var(--orange); background: var(--white);
  outline: none; transition: border-color 0.18s; appearance: none;
}
.calc-field select:focus,
.calc-field input:focus       { border-color: var(--orange); }
.calc-field input::placeholder { color: #CCCCCC; }

.calc-dims { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.calc-action-row { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.calc-result-block {
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  border-radius: 8px; padding: 10px 18px; display: none;
}
.calc-result-block.visible { display: flex; align-items: center; gap: 10px; }
.calc-result-price { font-size: 1.6rem; font-weight: 800; color: var(--orange); line-height: 1; }
.calc-result-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }

.calc-right h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-ico {
  width: 44px; height: 44px; min-width: 44px; background: var(--orange-bg);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
}
.info-item h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.info-item p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* =====================================================
   COUNTRIES
   ===================================================== */
.countries-section { background: var(--white); position: relative; overflow: hidden; }

.europe-map-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; max-width: 900px; height: auto;
  opacity: 0.07; pointer-events: none; z-index: 0;
  filter: blur(0.2px);
  object-fit: contain; object-position: center;
}
.countries-section .container { position: relative; z-index: 1; }

.countries-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 12px; margin-top: 44px;
}

.country-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all 0.18s;
  text-decoration: none; color: var(--text);
  min-width: 0; width: 100%; box-sizing: border-box;
}
.country-card:hover {
  border-color: var(--orange); background: var(--orange-bg);
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(253,116,0,0.12);
}
.country-flag  { font-size: 1.4rem; flex-shrink: 0; }
.country-name  { font-size: 0.8rem; font-weight: 600; line-height: 1.2; }
.country-price { font-size: 0.69rem; color: var(--text-muted); }

.see-all-wrap { text-align: center; margin-top: 28px; }
.see-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-bg); color: var(--orange);
  border: 1px solid var(--orange-border);
  font-weight: 700; font-size: 0.87rem; padding: 11px 24px;
  border-radius: 5px; text-decoration: none; transition: all 0.18s;
}
.see-all-link:hover { background: var(--orange); color: white; }

/* =====================================================
   WHY US
   ===================================================== */
.why-section { background: var(--gray-bg); }

.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 44px;
}

.why-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.22s ease, border-color 0.22s, box-shadow 0.22s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--orange); transition: height 0.25s;
}
.why-card:hover { border-color: rgba(253,116,0,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card:hover::before { height: 100%; }

.why-ico {
  width: 52px; height: 52px; background: var(--orange-bg);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 36px; margin-bottom: 16px;
}
.why-card h3 { font-size: 0.93rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-section { background: var(--white); overflow: hidden; }

.reviews-rating-row {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.reviews-rating-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--gray-bg); border: 1px solid var(--gray-border);
  border-radius: 100px; padding: 7px 16px;
}
.badge-rating-num { font-size: 1rem; font-weight: 800; color: var(--text); }
.badge-rating-lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.reviews-sources  { display: flex; gap: 8px; }
.reviews-source-chip {
  display: flex; align-items: center; gap: 5px;
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 0.75rem; font-weight: 600; color: var(--text-mid);
}

.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 44px; overflow: hidden;
}

.review-card {
  background: var(--gray-bg); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid transparent;
  transition: all 0.2s; min-width: 0; word-break: break-word; overflow: hidden;
}
.review-card:hover { border-color: var(--orange-border); box-shadow: 0 6px 20px rgba(253,116,0,0.09); }

.review-stars  { color: var(--orange-light); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-text   { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.review-avatar--flag { font-size: 1.4rem !important; background: var(--gray-bg) !important; color: inherit !important; }
.review-name    { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.review-country { font-size: 0.73rem; color: var(--text-muted); }
.review-verified {
  margin-left: auto; background: var(--green-bg); color: var(--green-dark);
  font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 100px; white-space: nowrap;
}

.review-cta-wrap    { max-width: 560px; margin: 0 auto; text-align: center; }
.review-cta-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.review-cta-wrap p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.review-cta-link {
  background: var(--white); color: var(--orange); border: 1px solid var(--orange-border);
  font-size: 0.82rem; font-weight: 700; padding: 8px 18px; border-radius: 5px;
  text-decoration: none; transition: all 0.18s; display: inline-block;
}
.review-cta-link:hover { background: var(--orange); color: white; }

/* =====================================================
   BLOG
   ===================================================== */
.blog-section { background: var(--gray-bg); }

.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 44px;
}

.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border); overflow: hidden;
  transition: all 0.2s; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--orange-border); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(253,116,0,0.1);
}
.blog-img {
  height: 180px; background: linear-gradient(135deg, var(--orange-bg), var(--green-bg));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  border-bottom: 1px solid var(--gray-border); position: relative; overflow: hidden;
}
.blog-date-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: white;
  font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}
.blog-body    { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag     { font-size: 0.68rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-title   { font-size: 0.92rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 0.79rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: 0.8rem; font-weight: 700;
  color: var(--orange); text-decoration: underline;
}
.blog-read-more:hover { opacity: 0.75; }

.blog-img-real { background: var(--gray-bg); padding: 0; overflow: hidden; }
.blog-img-real img {
  width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.4s ease;
}
.blog-card:hover .blog-img-real img { transform: scale(1.04); }
.blog-img-real .blog-date-tag { position: absolute; top: 12px; left: 12px; }

/* =====================================================
   GLOBAL CUSTOMERS (HP)
   ===================================================== */
.hp-global  { padding: 80px 24px; background: var(--white); }
.hp-layout  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hp-heading {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 800;
  line-height: 1.2; color: var(--text); letter-spacing: -0.3px; margin: 0 0 28px;
}
.hp-heading-accent { display: block; color: var(--orange); margin-top: 6px; }
.hp-stats   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
.hp-stat    { border-left: 3px solid var(--orange); padding-left: 14px; }
.hp-stat-num {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 5px;
}
.hp-num      { display: inline; }
.hp-stat-lbl { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.hp-media-col { display: flex; justify-content: center; align-items: center; }
.hp-cloud {
  position: relative; width: 360px; height: 360px; flex-shrink: 0;
}
.hp-cloud-glow {
  position: absolute; inset: 15%;
  background: radial-gradient(circle, rgba(253,116,0,0.13), transparent 65%);
  filter: blur(20px); z-index: 1; pointer-events: none;
}
.hp-av {
  position: absolute; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--white); box-shadow: 0 8px 28px rgba(0,0,0,0.11);
  background: var(--gray-bg); z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-av:hover { box-shadow: 0 14px 36px rgba(253,116,0,0.22); z-index: 3; }
.hp-av img   { width: 100%; height: 100%; object-fit: cover; display: block; }

.hp-av--main { width:200px; height:200px; top:50%; left:52%; transform:translate(-50%,-50%); animation:hpFloat 4.5s ease-in-out infinite; }
.hp-av--tl   { width:95px;  height:95px;  top:6%;  left:6%;  animation:hpFloat 3.8s ease-in-out 0.5s infinite; }
.hp-av--tr   { width:90px;  height:90px;  top:3%;  right:8%; animation:hpFloat 4.2s ease-in-out 1.0s infinite; }
.hp-av--ml   { width:120px; height:120px; top:40%; left:0;   animation:hpFloat 3.5s ease-in-out 0.8s infinite; }
.hp-av--mr   { width:100px; height:100px; top:39%; right:0;  animation:hpFloat 4.8s ease-in-out 1.4s infinite; }
.hp-av--br   { width:108px; height:108px; bottom:3%; right:10%; animation:hpFloat 4.0s ease-in-out 0.3s infinite; }
.hp-av--main:hover { transform:translate(-50%,-50%) scale(1.05); }

/* =====================================================
   B2B FULFILLMENT
   ===================================================== */
.b2b-section { background: var(--gray-bg); padding: 80px 24px; }
.b2b-inner {
  max-width: 1200px; margin: 0 auto; width: 100%; box-sizing: border-box;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.b2b-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,116,0,0.1); border: 1px solid var(--orange-border);
  color: var(--orange); font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.b2b-heading {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 800;
  line-height: 1.15; color: var(--text); letter-spacing: -0.3px; margin: 0 0 16px;
}
.b2b-heading em { font-style: normal; color: var(--orange); }
.b2b-desc {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 28px; max-width: 460px;
}
.b2b-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.b2b-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem; color: var(--text-mid); line-height: 1.5;
}
.b2b-features li::before {
  content: '✓'; width: 22px; height: 22px; min-width: 22px;
  background: rgba(253,116,0,0.1); color: var(--orange);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.68rem; font-weight: 800; margin-top: 1px;
}
.b2b-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.b2b-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--gray-border); padding: 32px; box-shadow: var(--shadow-lg);
}
.b2b-card-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.b2b-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.b2b-stat {
  background: var(--gray-bg); border-radius: 12px; padding: 16px;
  text-align: center; border: 1px solid var(--gray-border);
}
.b2b-stat-num {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1.75rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px;
}
.b2b-stat-lbl { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

.b2b-info-row {
  background: var(--gray-bg); border-radius: 10px; border: 1px solid var(--gray-border);
  padding: 13px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-mid); margin-bottom: 10px;
}
.b2b-info-row:last-of-type { margin-bottom: 20px; }
.b2b-info-row span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.b2b-info-row strong { color: var(--text); }

/* =====================================================
   VAT SECTION
   ===================================================== */
.vat-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.vat-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(80,169,1,0.15); border: 1px solid rgba(80,169,1,0.3);
  color: rgb(120,210,60); font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.vat-badge-dot { width: 7px; height: 7px; background: rgb(80,169,1); border-radius: 50%; }
.vat-heading {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: white; line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.5px;
}
.vat-heading em { font-style: normal; color: rgb(100,210,50); }
.vat-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; max-width: 500px; }
.vat-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.vat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.vat-list li::before {
  content: '✓'; width: 20px; height: 20px; min-width: 20px;
  background: rgba(80,169,1,0.2); color: rgb(100,210,50);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.65rem; font-weight: 800; margin-top: 1px;
}
.vat-btn {
  display: inline-block; background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 5px; padding: 12px 28px;
  font-size: 0.88rem; font-weight: 700; font-family: 'Poppins', sans-serif;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.3px; transition: all 0.18s;
}
.vat-btn:hover { background: rgba(255,255,255,0.15); }

.vat-circle-bg {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: rgba(26,86,219,0.15); border: 1px solid rgba(255,255,255,0.06);
}
.vat-pct-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 32px 48px; text-align: center;
  position: relative; z-index: 2;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.vat-pct-num {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 5rem; font-weight: 900; color: rgb(100,210,50);
  line-height: 1; display: flex; align-items: flex-start; justify-content: center; gap: 4px;
}
.vat-pct-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 8px; line-height: 1.4; }
.vat-float {
  position: absolute; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
  padding: 8px 14px; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.85); white-space: nowrap;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.vat-float--1 { top: 20px; right: 0; animation: float 4s ease-in-out infinite; }
.vat-float--2 { bottom: 30px; left: 0; animation: float 5s ease-in-out 0.8s infinite; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--orange); padding: 80px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.cta-inner  { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-section p  { font-size: 1.02rem; color: rgba(255,255,255,0.88); margin-bottom: 36px; }

.cta-email-wrap {
  max-width: 560px; margin: 0 auto 16px;
  display: flex; align-items: center;
  background: white; border-radius: 6px;
  padding: 6px 6px 6px 18px; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); transition: box-shadow 0.25s ease;
}
.cta-email-wrap:focus-within {
  box-shadow: 0 0 0 4px rgba(90,143,0,0.25), 0 8px 32px rgba(0,0,0,0.15);
}
.cta-email-wrap input {
  flex: 1; border: none !important; outline: none !important;
  background: transparent; font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; color: var(--text); padding: 6px 0; min-width: 0;
}
.cta-email-wrap input::placeholder { color: #CCCCCC; }
.cta-hint { font-size: 0.73rem; color: rgba(255,255,255,0.65); }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: #1c1c1c; color: white; padding: 56px 24px 28px; }

.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-txt      { font-size: 1.5rem; font-weight: 800; color: var(--orange); margin-bottom: 12px; }
.footer-logo-txt span { color: var(--green); }
.footer-desc          { font-size: 0.82rem; opacity: 0.45; line-height: 1.7; margin-bottom: 20px; }
.footer-social        { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.07);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: all 0.18s;
}
.footer-social a svg   { width: 16px; height: 16px; display: block; }
.footer-social a:hover { background: var(--orange); color: white; }
.footer-social a:hover svg { fill: white; }

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; opacity: 0.4; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.83rem; color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 9px; transition: color 0.18s;
}
.footer-col a:hover { color: var(--orange); }

.footer-policy {
  max-width: 1200px; margin: 0 auto; padding: 28px 0 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.pay-badge {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 4px 10px;
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.5);
}
.footer-copy { font-size: 0.73rem; opacity: 0.3; }

/* =====================================================
   HERO MOBILE CARD
   ===================================================== */
.hero-mobile-card {
  display: none; background: var(--white); border-radius: 16px;
  border: 1px solid var(--gray-border); box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 18px; margin-top: 24px;
}
.hero-mobile-card .card-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gray-border); margin-bottom: 14px;
}
.hero-mobile-card .card-icon-box {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.hero-mobile-card .card-meta h4 { font-size: 0.82rem; font-weight: 700; margin: 0; }
.hero-mobile-card .card-meta p  { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.hero-mobile-card .status-pill  {
  margin-left: auto; background: rgba(80,169,1,0.12); color: rgb(60,130,1);
  font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 100px;
}
.hero-mobile-steps { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.hero-mobile-step  { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; }
.hero-mobile-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700;
}
.hero-mobile-dot.done   { background: rgba(80,169,1,0.12); color: rgb(60,130,1); border: 1.5px solid rgba(80,169,1,0.3); }
.hero-mobile-dot.active { background: rgba(253,116,0,0.1); color: var(--orange); border: 1.5px solid rgba(253,116,0,0.3); }
.hero-mobile-dot.soon   { background: #f0f0f0; color: var(--text-muted); border: 1.5px solid #e0e0e0; }
.hero-mobile-step-info strong { font-weight: 600; color: var(--text); display: block; }
.hero-mobile-step-info small  { color: var(--text-muted); font-size: 0.68rem; }
.hero-mobile-price-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--gray-bg); border-radius: 8px; padding: 10px 14px;
}

/* =====================================================
   REAL IMAGES
   ===================================================== */
.slide2-main-img {
  position: relative; background: var(--gray-bg); border-radius: 12px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.slide2-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.slide2-main-img:hover img { transform: scale(1.04); }
.slide2-img-badge {
  position: absolute; top: 10px; left: 10px; background: var(--orange);
  color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}

.partner-bar-img {
  height: 36px; width: auto; max-width: 100px; object-fit: contain; display: block;
  filter: grayscale(1); opacity: 0.45; transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.partner-bar-img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.08); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22,.68,0,1.05);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.22,.68,0,1.05);
}
.reveal-stagger.visible > *:nth-child(1)    { opacity:1; transform:none; transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2)    { opacity:1; transform:none; transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3)    { opacity:1; transform:none; transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4)    { opacity:1; transform:none; transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5)    { opacity:1; transform:none; transition-delay: 0.42s; }
.reveal-stagger.visible > *:nth-child(6)    { opacity:1; transform:none; transition-delay: 0.49s; }
.reveal-stagger.visible > *:nth-child(7)    { opacity:1; transform:none; transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(8)    { opacity:1; transform:none; transition-delay: 0.62s; }
.reveal-stagger.visible > *:nth-child(9)    { opacity:1; transform:none; transition-delay: 0.68s; }
.reveal-stagger.visible > *:nth-child(10)   { opacity:1; transform:none; transition-delay: 0.74s; }
.reveal-stagger.visible > *:nth-child(n+11) { opacity:1; transform:none; transition-delay: 0.78s; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(153,204,51,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(153,204,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(153,204,51,0); }
}
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
@keyframes scalePop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes slideEnter {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideExit {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-48px); }
}
@keyframes slideEnterReverse {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hpFloat {
  0%,100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

/* =====================================================
   RESPONSIVE — единый блок без дублей
   ===================================================== */

/* ── Tablet landscape: 961px – 1279px ── */
@media (min-width: 961px) and (max-width: 1279px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-visual       { display: none; }
  .steps-grid        { grid-template-columns: repeat(2,1fr); }
  .step-arrow        { display: none; }
  .calc-layout       { grid-template-columns: 1fr; }
  .countries-grid    { grid-template-columns: repeat(3,1fr); }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .reviews-grid      { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr 1fr; }
  .hp-layout         { grid-template-columns: 1fr; }
  .hp-stats          { grid-template-columns: 1fr 1fr; }
  .b2b-inner         { grid-template-columns: 1fr; }
  .vat-inner         { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
}

/* ── Tablet portrait: max 960px ── */
@media (max-width: 960px) {
  .nav-links         { display: none; }
  .burger            { display: flex; }

  .hero              { min-height: auto; padding: 40px 20px 48px; }
  .hero-inner        { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual       { display: none; }
  .hero-slider,
  .hero-slide,
  .hero-inner        { min-height: auto; height: auto; }

  .steps-grid        { grid-template-columns: repeat(2,1fr); }
  .step-arrow        { display: none; }

  .calc-layout       { grid-template-columns: 1fr; }

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

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

  .reviews-grid      { grid-template-columns: 1fr; }
  .reviews-rating-row { flex-direction: column; gap: 12px; }

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

  .stats-bar-inner   { grid-template-columns: repeat(2,1fr); }
  .stat-item         { border-bottom: 1px solid rgba(255,255,255,0.2); }

  .hp-layout         { grid-template-columns: 1fr; gap: 40px; }
  .hp-cloud          { width: 280px; height: 280px; }
  .hp-av--main       { width: 160px; height: 160px; }
  .hp-av--tl,
  .hp-av--tr         { width: 72px;  height: 72px; }
  .hp-av--ml         { width: 95px;  height: 95px; }
  .hp-av--br         { width: 85px;  height: 85px; }

  .b2b-inner         { grid-template-columns: 1fr; gap: 40px; }
  .vat-inner         { grid-template-columns: 1fr; }

  .footer-top        { grid-template-columns: 1fr 1fr; }

  .phtab-steps       { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .phtab-step        { padding: 0; }

  .slide3-stat       { padding: 7px 10px; font-size: 0.82rem; }
  .slide2-main-img   { height: 160px; }
  .slide2-item       { padding: 7px 10px; font-size: 0.82rem; }

  .hero-card         { padding: 20px; }
  .float-pill        { font-size: 0.75rem; padding: 6px 12px; }
}

/* ── Mobile: max 640px ── */
@media (max-width: 640px) {
  section            { padding: 48px 16px; }
  .steps-section, .calc-section, .countries-section,
  .why-section, .reviews-section, .blog-section,
  .hp-global, .b2b-section, .phtab-block { padding: 48px 16px; }

  .hero              { padding: 32px 16px 40px; min-height: auto; }
  .hero-inner        { min-height: 580px; }
  .hero h1, .hero h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-sub          { font-size: 0.95rem; }
  .float-pill        { display: none; }
  .hero-card         { padding: 16px; }

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

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

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

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

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

  .hp-stats          { grid-template-columns: 1fr 1fr; }
  .hp-cloud          { width: 240px; height: 240px; }
  .hp-av--main       { width: 138px; height: 138px; }
  .hp-av--tr         { width: 90px; height: 90px; top: 0%; right: 4%; }
  .hp-av--ml         { width: 110px; height: 110px; top: 45%; left: -8%; }

  .footer-top        { grid-template-columns: 1fr; gap: 24px; }
  .footer-policy     { flex-direction: column; align-items: flex-start; }

  .cta-email-wrap    { flex-direction: column; padding: 14px; }
  .cta-email-wrap input { width: 100%; }

  .phtab-list        { max-width: 100%; }
  .phtab-btn         { padding: 14px 16px; gap: 10px; }
  .phtab-title       { font-size: 0.85rem; }
  .phtab-panel       { padding: 28px 20px; border-radius: 0 var(--radius) var(--radius) var(--radius); }
  .phtab-steps       { grid-template-columns: 1fr; gap: 28px; }
  .phtab-actions     { margin-top: 32px; }
}

/* ── Small mobile: max 480px ── */
@media (max-width: 480px) {
  .hero h1, .hero h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

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

  .hp-stats          { grid-template-columns: 1fr; gap: 16px; }
  .hp-cloud          { width: 200px; height: 200px; }
  .hp-av--main       { width: 120px; height: 120px; }
  .hp-av--tl, .hp-av--tr,
  .hp-av--ml, .hp-av--mr,
  .hp-av--br         { width: 60px; height: 60px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .float-pill, .hero-badge, .hero h1, .hero-sub, .hero-visual,
  .hp-av { animation: none !important; }
}

/* =====================================================
   PHTAB FONT-SIZE FIX (so-page-builder масштабирует дочерние элементы)
   ===================================================== */
.phtab-block,
.phtab-inner,
.phtab-btn,
.phtab-panel,
.phtab-step { font-size: 16px; }

span.phtab-eyebrow   { font-size: 12px !important; }
h2.phtab-headline    { font-size: clamp(36px, 3.2vw, 40px) !important; }
p.phtab-sub          { font-size: 16px !important; }
.phtab-title         { font-size: 16px !important; }
.phtab-sub-label     { font-size: 12px !important; }
.phtab-step h3       { font-size: 16.8px !important; }
.phtab-step p        { font-size: 15px !important; }
.phtab-ghost         { font-size: 14px !important; }

/* =====================================================
   HERO CARDS — единый размер
   ===================================================== */
.hero-card,
.hero-card.slide2-card {
  padding: 28px !important;
  min-height: 378px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

@media (max-width: 960px) {
  .hero-card,
  .hero-card.slide2-card {
    min-height: auto;
    padding: 20px !important;
  }
}

/* =====================================================
   BOOTSTRAP GRID OVERRIDE (so-page-builder)
   ===================================================== */
body.common-home .row {
  margin-left: 0;
  margin-right: 0;
}
body.common-home .container {
  width: 100%;
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

@media (max-width: 960px) {
  body.common-home [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  body.common-home .container,
  body.common-home .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 100%;
  }
}
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--orange); color: white; font-weight: 700;
  padding: 8px 16px; border-radius: 0 0 6px 6px; z-index: 9999;
  text-decoration: none; font-size: 0.85rem; transition: top 0.15s;
}
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--orange); color: white; font-weight: 700;
  padding: 8px 16px; border-radius: 0 0 6px 6px; z-index: 9999;
  text-decoration: none; font-size: 0.85rem; transition: top 0.15s;
}
.skip-link:focus { top: 0; }

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

:root {
  --orange:        #FD7400;
  --orange-dark:   #c55b00;
  --orange-hover:  #e56800;
  --orange-light:  #FC9C12;
  --orange-bg:     rgba(253,116,0,0.08);
  --orange-border: rgba(253,116,0,0.22);
  --green:         rgb(80, 169, 1);
  --green-dark:    rgb(60, 130, 1);
  --green-bg:      rgba(80,169,1,0.1);
  --gray-bg:       #F5F5F7;
  --gray-border:   #E1E1E1;
  --white:         #ffffff;
  --text:          #1a1a1a;
  --text-mid:      #555555;
  --text-muted:    #999999;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.11);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3,
.hero h1,
.hero h2 {
  font-family: 'Outfit', 'Poppins', sans-serif !important;
}

img { max-width: 100%; display: block; }

/* BUTTONS */
.btn-green {
  display: inline-block; background: var(--green); color: white;
  border: none; border-radius: 5px; padding: 12px 28px;
  font-size: 0.92rem; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  text-transform: uppercase; transition: background 0.18s;
  letter-spacing: 0.3px; line-height: 1.4;
}
.btn-green:hover { background: var(--orange); color: white; }

.btn-outline {
  display: inline-block; background: transparent; color: var(--orange);
  border: 2px solid var(--orange); border-radius: 5px; padding: 10px 24px;
  font-size: 0.88rem; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  text-transform: uppercase; transition: all 0.18s; letter-spacing: 0.3px;
}
.btn-outline:hover { background: var(--orange); color: white; }

/* HERO */
.hero {
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(253,116,0,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(153,204,51,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(253,156,18,0.05) 0%, transparent 70%),
    #F7F5F2;
  padding: 56px 24px 72px;
  position: relative; overflow: hidden; min-height: 680px;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(160deg,
    rgba(253,116,0,0.04) 0%, rgba(253,116,0,0.07) 40%, rgba(253,156,18,0.04) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(253,116,0,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 30%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2; min-height: 520px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,116,0,0.1); border: 1px solid var(--orange-border);
  color: var(--orange); font-size: 0.75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
  animation: fadeSlideUp 0.55s cubic-bezier(.22,.68,0,1.2) 0.1s both;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0;
  animation: scalePop 0.6s cubic-bezier(.22,.68,0,1.4) 0.8s both;
}

.hero h1,
.hero h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.5rem); font-weight: 900;
  color: var(--text); line-height: 1.08; letter-spacing: -1px; margin-bottom: 18px;
  animation: fadeSlideUp 0.6s cubic-bezier(.22,.68,0,1.1) 0.25s both;
}
.hero h1 em, .hero h2 em { font-style: normal; color: var(--orange); }

.hero-sub {
  font-size: 1.05rem; color: var(--text-mid); margin-bottom: 30px;
  max-width: 480px; line-height: 1.65; font-weight: 400;
  animation: fadeSlideUp 0.55s ease 0.4s both;
}

.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none;
  animation: fadeSlideUp 0.5s ease 0.72s both;
}
.trust-row li {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-mid);
}
.chk {
  width: 20px; height: 20px; background: var(--green-bg);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 13px; color: var(--green-dark);
  font-weight: 800; flex-shrink: 0;
}

.hero-visual {
  position: relative; display: block;
  animation: slideInRight 0.7s cubic-bezier(.22,.68,0,1.05) 0.35s both;
}

.float-pill {
  position: absolute; background: var(--white);
  border: 1px solid var(--gray-border); border-radius: 10px;
  box-shadow: var(--shadow-md); padding: 9px 14px;
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  display: flex; align-items: center; gap: 6px; z-index: 10;
}
.fp-tr { top: -14px; right: -14px; color: var(--green-dark); animation: float 3.2s ease-in-out 1s infinite; }
.fp-bl { bottom: 20px; left: -18px; color: var(--orange); animation: float 3.8s ease-in-out 1.4s infinite; }

/* HERO SLIDER */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide  { display: none; }
.hero-slide.active { display: block; }

/* HERO MOBILE CARD */
.hero-mobile-card {
  display: none; background: var(--white); border-radius: 16px;
  border: 1px solid var(--gray-border); box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 18px; margin-top: 24px;
}
.hero-mobile-card .card-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gray-border); margin-bottom: 14px;
}
.hero-mobile-card .card-icon-box {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.hero-mobile-card .card-meta h4 { font-size: 0.82rem; font-weight: 700; margin: 0; }
.hero-mobile-card .card-meta p  { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.hero-mobile-card .status-pill  {
  margin-left: auto; background: rgba(80,169,1,0.12); color: rgb(60,130,1);
  font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 100px;
}
.hero-mobile-steps { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.hero-mobile-step  { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; }
.hero-mobile-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700;
}
.hero-mobile-dot.done   { background: rgba(80,169,1,0.12); color: rgb(60,130,1); border: 1.5px solid rgba(80,169,1,0.3); }
.hero-mobile-dot.active { background: rgba(253,116,0,0.1); color: var(--orange); border: 1.5px solid rgba(253,116,0,0.3); }
.hero-mobile-dot.soon   { background: #f0f0f0; color: var(--text-muted); border: 1.5px solid #e0e0e0; }
.hero-mobile-step-info strong { font-weight: 600; color: var(--text); display: block; }
.hero-mobile-step-info small  { color: var(--text-muted); font-size: 0.68rem; }

/* =====================================================
   HERO CUBE — увеличенный
   ===================================================== */
.hero-cube-wrap {
  width: 100%;
  min-height: 440px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}

.hero-cube-wrap .scene {
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
  perspective-origin: center 40%;
  padding: 3rem 0 2rem;
  background: transparent;
}

.hero-cube-wrap .cube-wrap {
  transform-style: preserve-3d;
  animation: rotateCube 14s infinite linear;
  width: 260px;
  height: 260px;
  position: relative;
}

@keyframes rotateCube {
  0%   { transform: rotateX(-20deg) rotateY(0deg); }
  100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.hero-cube-wrap .side {
  position: absolute;
  width: 260px;
  height: 260px;
  box-sizing: border-box;
  border: 2px solid rgba(255,255,255,0.35);
  opacity: 0.88;
  overflow: hidden;
}

.hero-cube-wrap .front  { background: rgba(240,78,0,0.80);   transform: translateZ(130px); }
.hero-cube-wrap .back   { background: rgba(192,58,0,0.80);   transform: translateZ(-130px) rotateY(180deg); }
.hero-cube-wrap .left   { background: rgba(224,69,0,0.80);   transform: translateX(-130px) rotateY(-90deg); }
.hero-cube-wrap .right  { background: rgba(224,69,0,0.80);   transform: translateX(130px) rotateY(90deg); }
.hero-cube-wrap .top    { background: rgba(255,136,77,0.80); transform: translateY(-130px) rotateX(90deg); }
.hero-cube-wrap .bottom { background: rgba(192,58,0,0.80);   transform: translateY(130px) rotateX(-90deg); }

.hero-cube-wrap .slogan {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.hero-cube-wrap .slogan .main {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}
.hero-cube-wrap .slogan .sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  line-height: 1.45;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
}
.hero-cube-wrap .top-seam {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  height: 14px;
  background: rgba(255,255,255,0.22);
  border-top: 2px dashed rgba(255,255,255,0.6);
  border-bottom: 2px dashed rgba(255,255,255,0.6);
}
.hero-cube-wrap .logo-back {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  font-size: 62px;
  font-weight: 700;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -1px;
}
.hero-cube-wrap .logo-back sup {
  font-size: 22px;
  font-weight: 400;
  vertical-align: super;
  color: #fff !important;
}

/* ANIMATIONS */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(153,204,51,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(153,204,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(153,204,51,0); }
}
@keyframes scalePop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes slideEnter {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE — TABLET LANDSCAPE */
@media (min-width: 961px) and (max-width: 1279px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* RESPONSIVE — TABLET PORTRAIT max 960px */
@media (max-width: 960px) {
  .hero        { min-height: auto; padding: 40px 20px 48px; }
  .hero-inner  { grid-template-columns: 1fr; min-height: auto; }
  .hero-slider,
  .hero-slide,
  .hero-inner  { min-height: auto; height: auto; }
  .float-pill  { font-size: 0.75rem; padding: 6px 12px; }
}

/* RESPONSIVE — MOBILE max 640px */
@media (max-width: 640px) {
  .hero              { padding: 32px 16px 40px; min-height: auto; }
  .hero-inner        { min-height: auto; }
  .hero h1, .hero h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-sub          { font-size: 0.95rem; }
  .float-pill        { display: none; }
}

/* RESPONSIVE — SMALL MOBILE max 480px */
@media (max-width: 480px) {
  .hero h1, .hero h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-cube-wrap .cube-wrap {
    animation: none !important;
    transform: rotateX(-20deg) rotateY(15deg);
  }
}

/* BOOTSTRAP GRID OVERRIDE */
body.common-home .row { margin-left: 0; margin-right: 0; }
body.common-home .container {
  width: 100%; max-width: 1200px;
  padding-left: 16px; padding-right: 16px; box-sizing: border-box;
}
@media (max-width: 960px) {
  body.common-home [class*="col-"] {
    width: 100%; max-width: 100%;
    padding-left: 0; padding-right: 0; box-sizing: border-box;
  }
  body.common-home .container,
  body.common-home .container-fluid {
    padding-left: 16px; padding-right: 16px;
    width: 100%; max-width: 100%;
  }
}
/* ==========================================================
   PHTAB-BLOCK — CSS
   Типографика — через .sec-eyebrow / .sec-title / .sec-sub
   Здесь только стили табов, панели и шагов.
   ========================================================== */

.phtab-block {
  background: var(--white);
  padding: 80px 24px;
}

/* ── Табы ── */
.phtab-wrap { position: relative; margin-top: 40px; }

.phtab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 680px;
}

/* DESKTOP: иконка слева, текст справа, кнопка низкая */
.phtab-btn {
  position: relative;
  border: 1px solid var(--gray-border);
  border-bottom: none;
  background: var(--gray-bg);
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  flex-direction: row;        /* горизонтально: иконка → текст */
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 20px;         /* вдвое ниже: было 16px/18px → 12px */
  border-radius: 12px 12px 0 0;
  text-align: left;
  z-index: 1;
  transition: background 0.18s;
}
.phtab-btn:first-child { margin-right: 6px; }
.phtab-btn:last-child  { margin-left: 6px; }
.phtab-btn:hover       { background: #ece0cf; }

.phtab-ico {
  font-size: 20px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
}

.phtab-text-wrap {
  display: flex;
  flex-direction: column;
}

.phtab-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.2;
  transition: color 0.18s;
}
.phtab-sub-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
  transition: color 0.18s;
}

/* Активный таб */
.phtab-btn.active {
  background: var(--white);
  z-index: 3;
}
.phtab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: var(--white);
  z-index: 4;
}
.phtab-btn.active .phtab-title     { color: var(--text); }
.phtab-btn.active .phtab-sub-label { color: var(--green); }
.phtab-btn.active .phtab-ico       { background: var(--orange-bg); border-color: var(--orange-border); }

/* ── Панель шагов ── */
.phtab-panel {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 48px 40px 44px;
  position: relative;
  z-index: 2;
}

.phtab-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.phtab-step {
  position: relative;
  padding: 0 24px;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}
.phtab-step:hover { background: var(--orange-bg); }
.phtab-step:first-child { padding-left: 0; }
.phtab-step:last-child  { padding-right: 0; }

.step-img-wrap {
  width: 110px;
  height: 110px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.phtab-step:hover .step-img { transform: scale(1.08) translateY(-3px); }
.step-digit {
  font-size: 6.4rem;
  font-weight: 800;
  color: rgba(253,116,0,0.18);
  line-height: 1;
  margin-bottom: 14px;
}
.phtab-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.phtab-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 55px;
  right: -14px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  z-index: 2;
  display: none;
}

/* ── CTA ── */
.phtab-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.phtab-ghost       { font-size: 0.88rem; font-weight: 700; color: var(--orange); text-decoration: none; }
.phtab-ghost:hover { opacity: 0.75; }


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .phtab-steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .phtab-step  { padding: 0; }
  .step-arrow  { display: none; }
}

@media (max-width: 640px) {
  .phtab-block   { padding: 48px 16px; }
  .phtab-list    { max-width: 100%; }

  /* На мобиле возвращаем вертикальный вид: иконка сверху, текст снизу */
  .phtab-btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 12px;
    gap: 6px;
  }
  .phtab-title   { font-size: 0.82rem; }
  .phtab-panel   { padding: 28px 20px; border-radius: 0 var(--radius) var(--radius) var(--radius); }
  .phtab-steps   { grid-template-columns: 1fr; gap: 28px; }
  .phtab-actions { margin-top: 32px; }
}
@media (max-width: 640px) {
  .hero-cube-wrap .cube-wrap { width: 210px; height: 210px; }
  .hero-cube-wrap .side      { width: 210px; height: 210px; }
  .hero-cube-wrap .front  { transform: translateZ(105px); }
  .hero-cube-wrap .back   { transform: translateZ(-105px) rotateY(180deg); }
  .hero-cube-wrap .left   { transform: translateX(-105px) rotateY(-90deg); }
  .hero-cube-wrap .right  { transform: translateX(105px) rotateY(90deg); }
  .hero-cube-wrap .top    { transform: translateY(-105px) rotateX(90deg); }
  .hero-cube-wrap .bottom { transform: translateY(105px) rotateX(-90deg); }
}
.hp-cta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 32px;
}
.hp-signup-btn {
  display: inline-block; background: #FD7400; color: #FFFFFF;
  border: none; border-radius: 5px; padding: 12px 28px;
  font-size: 14px; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.3px;
  transition: background 0.18s; line-height: 1.4;
}
.hp-signup-btn:hover { background: var(--orange-dark); }

.hp-gift-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg); border: 1px solid rgba(80,169,1,0.25);
  color: var(--green-dark); font-size: 14px; font-weight: 600;
  padding: 12px 22px; border-radius: 100px;
}
.hp-gift-pill svg { flex-shrink: 0; width: 18px; height: 18px; }
.hp-signup-btn,
.hp-signup-btn:hover,
.hp-signup-btn:active,
.hp-signup-btn:visited,
.hp-signup-btn:focus {
  color: #FFFFFF !important;
}

@media (max-width: 640px) {
  .hp-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-signup-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .hp-gift-pill {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}
/* =====================================================
   FAQ — унифицировано с остальными секциями
   ===================================================== */
.faq-section { background: var(--white); padding: 80px 24px; }

.faq-list { margin-top: 44px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq-item:hover,
.faq-item[open] {
  border-color: var(--orange-border);
  box-shadow: 0 6px 18px rgba(253,116,0,0.08);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  list-style: none;
  position: relative;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 400;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "–"; }

.faq-answer { padding: 0 22px 20px; }
.faq-answer p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin: 0;
}
.faq-answer a { color: var(--orange); text-decoration: underline; font-weight: 600; }
.faq-answer a:hover { opacity: 0.75; }

@media (max-width: 640px) {
  .faq-section { padding: 48px 16px; }
  .faq-item summary { font-size: 15px !important; padding: 16px 46px 16px 18px; }
  .faq-answer { padding: 0 18px 18px; }
  .faq-answer p { font-size: 14px !important; }
}
/* =====================================================
   SEO CONTENT BLOCK
   ===================================================== */
.seo-content { background: var(--gray-bg); padding: 80px 24px; }

.seo-content .seo-text {
  max-width: 100% !important;
  width: 100%;
  margin: 32px 0 0 !important;
}

.seo-content .seo-text p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  color: var(--text-mid) !important;
  line-height: 1.75 !important;
  margin: 0 0 18px !important;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.seo-content .seo-text p:last-child { margin-bottom: 0 !important; }

.seo-content .seo-text strong { color: var(--text); font-weight: 600; }
.seo-content .seo-text a { color: var(--orange); text-decoration: underline; font-weight: 600; }
.seo-content .seo-text a:hover { opacity: 0.75; }

@media (max-width: 640px) {
  .seo-content { padding: 48px 16px; }
  .seo-content .seo-text p { font-size: 14px !important; text-align: left; }
}

/* Снять унаследованную от темы тень текста в табах How it works */
.phtab-btn,
.phtab-title,
.phtab-sub-label { text-shadow: none; }
