/* ================================================================
   RANSA — style.css
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --g:       #1F4F3D;
  --g-dark:  #163829;
  --g-mid:   #2a6b50;
  --g-light: #6FBF73;
  --g-pale:  #eaf4ea;
  --gold:    #C9A227;
  --gold-l:  #e8bd40;
  --gold-bg: #fdf8ec;
  --graph:   #1e1e1e;
  --graph2:  #2a2a2a;
  --graph3:  #353535;
  --white:   #ffffff;
  --off:     #f7f9f8;
  --text:    #111;
  --text-m:  #444;
  --text-l:  #6b7280;
  --border:  #e4e8e5;
  --r:       10px;
  --r-l:     18px;
  --r-xl:    26px;
  --sh:      0 4px 24px rgba(0,0,0,.08);
  --sh-l:    0 16px 56px rgba(0,0,0,.13);
  --t:       .25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
/* Flag icons sizing */
.fi { border-radius: 2px; vertical-align: middle; }
.lang-toggle .fi { font-size: 18px; }
.lang-item .fi  { font-size: 16px; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Page entrance ─────────────────────────────────────────── */
body { animation: pageIn .4s ease; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Section headings ──────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -.03em; margin: 10px 0 14px; }
.section-head p { color: var(--text-l); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.section-head h2.light, .section-head p.light { color: rgba(255,255,255,.9); }
.section-head .light { color: rgba(255,255,255,.6); }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g);
  background: var(--g-pale);
  padding: 5px 12px;
  border-radius: 50px;
}
.eyebrow.light { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.12; letter-spacing: -.025em; }
h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -.015em; }
h4 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.light { color: var(--white); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g-light); color: var(--white);
  padding: 14px 26px; border-radius: 50px;
  font-weight: 600; font-size: .93rem; border: none;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover { background: #58a85c; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(111,191,115,.35); }
.btn-primary.full  { width: 100%; justify-content: center; }
.btn-primary.btn-large { padding: 16px 36px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.3);
  padding: 14px 24px; border-radius: 50px;
  font-weight: 500; font-size: .93rem;
  transition: background var(--t), transform var(--t);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn-consult {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--g-light); color: var(--white);
  border: none; padding: 10px 20px; border-radius: 50px;
  font-weight: 600; font-size: .85rem;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-consult:hover { background: #58a85c; transform: translateY(-1px); }
.navbar.scrolled .btn-consult { background: var(--g); }

.btn-details {
  background: none; border: none; color: var(--g);
  font-size: .82rem; font-weight: 600; padding: 6px 0;
  cursor: pointer; transition: color var(--t);
  display: block; text-align: center; width: 100%;
}
.pkg-card--featured .btn-details { color: var(--white); opacity: .85; }
.btn-details:hover { color: var(--g-dark); text-decoration: underline; }

.btn-ghost-sm { background: transparent; border: 1.5px solid var(--border); color: var(--text-m); padding: 8px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600; transition: all var(--t); }
.btn-ghost-sm:hover { border-color: var(--g); color: var(--g); }
.btn-primary-sm { background: var(--g); color: var(--white); border: none; padding: 8px 18px; border-radius: 50px; font-size: .82rem; font-weight: 600; transition: background var(--t); }
.btn-primary-sm:hover { background: var(--g-dark); }

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease calc(var(--d, 0s)), transform .55s ease calc(var(--d, 0s));
}
.fade-up.in { opacity: 1; transform: none; }

/* ================================================================
   ANNOUNCE BAR
   ================================================================ */
.announce-bar {
  background: var(--g);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}
.announce-inner {
  display: flex; align-items: center; gap: 12px;
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  flex-wrap: wrap;
}
.announce-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--g-light);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.announce-bar p { flex: 1; min-width: 160px; }
.announce-cta { background: none; border: none; padding: 0; font-family: inherit; font-size: inherit; cursor: pointer; color: var(--gold-l); font-weight: 600; white-space: nowrap; transition: opacity var(--t); }
.announce-cta:hover { opacity: .8; }
.announce-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1.1rem; line-height: 1; padding: 0 4px;
  transition: color var(--t); margin-left: auto;
}
.announce-close:hover { color: var(--white); }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(111,191,115,.5); }
  50% { box-shadow: 0 0 0 5px rgba(111,191,115,0); }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 11px 0;
  box-shadow: 0 1px 0 var(--border), var(--sh);
}

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 28px;
}

/* Logo */
.nav-logo { flex-shrink: 0; color: var(--white); transition: color var(--t); }
.navbar.scrolled .nav-logo { color: var(--g); }
.logo-svg { height: 34px; width: auto; display: block; }

/* Nav links */
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a {
  padding: 8px 13px; border-radius: 8px;
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: background var(--t), color var(--t);
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.navbar.scrolled .nav-links a { color: var(--text-m); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { background: var(--g-pale); color: var(--g); }

/* Nav end */
.nav-end { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-m-cta, .nav-m-langs { display: none; }

/* Lang switcher */
.lang-wrap { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 7px 11px; border-radius: 8px;
  font-size: .82rem; font-weight: 500; cursor: pointer;
  transition: all var(--t);
}
.navbar.scrolled .lang-toggle { background: var(--off); border-color: var(--border); color: var(--text-m); }
.lang-toggle:hover { opacity: .8; }
.lang-toggle svg { transition: transform var(--t); }
.lang-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-l); box-shadow: var(--sh-l);
  min-width: 152px; overflow: hidden;
  opacity: 0; transform: translateY(-6px) scale(.97);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.lang-menu.open { opacity: 1; transform: none; pointer-events: all; }

.lang-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 16px;
  background: none; border: none;
  font-size: .85rem; font-weight: 500; color: var(--text-m);
  cursor: pointer; transition: background var(--t);
}
.lang-item:hover { background: var(--off); }
.lang-item.active { color: var(--g); font-weight: 700; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--g-dark) 0%, var(--g) 45%, var(--g-mid) 100%);
  padding: 140px 0 110px;
  margin-top: -70px;            /* pull hero up behind transparent navbar */
  overflow: hidden;
  min-height: 94vh;
  display: flex; align-items: center;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .5;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.hero-glow--1 { width: 600px; height: 600px; background: rgba(201,162,39,.12); top: -200px; right: -100px; }
.hero-glow--2 { width: 400px; height: 400px; background: rgba(111,191,115,.1); bottom: -100px; left: 60px; }

.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
  width: 100%;
}

/* Left */
.hero-left { min-width: 0; }

.hero-langs {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; margin-bottom: 22px; flex-wrap: wrap;
}
.hero-flag {
  padding: 0; border: 0; background: transparent;
  cursor: pointer; line-height: 0;
  border-radius: 4px;
  opacity: .85;
  transition: opacity .2s ease;
}
.hero-flag .fi { font-size: 22px; border-radius: 3px; display: block; }
.hero-flag:hover { opacity: 1; }
.hero-flag.active { opacity: 1; }
.hero-flag:focus-visible { outline: 1px solid rgba(255,255,255,.35); outline-offset: 2px; }
.hero-langs-label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5); margin-left: 6px; letter-spacing: .05em; }

.hero-tagline {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 14px;
  padding-left: 36px;
  position: relative;
}
.hero-tagline::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--gold-l);
  transform: translateY(-50%);
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  overflow-wrap: break-word;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-l) 0%, #f5d060 40%, var(--gold-l) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

.hero-desc { font-size: 1.06rem; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 40px; max-width: 460px; overflow-wrap: break-word; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.8);
}
.trust-pill i { color: var(--g-light); font-size: .78rem; }

/* Right card */
.hero-right { display: flex; flex-direction: column; gap: 18px; }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 38px 34px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  animation: cardGlow 5s ease-in-out infinite;
}
@keyframes cardGlow {
  0%,100% { border-color: rgba(255,255,255,.14); box-shadow: 0 32px 80px rgba(0,0,0,.25); }
  50%      { border-color: rgba(201,162,39,.28); box-shadow: 0 32px 80px rgba(0,0,0,.25), 0 0 40px rgba(201,162,39,.08); }
}

.hcard-head {
  text-align: center;
  margin-bottom: 28px;
}

.hcard-badge {
  display: inline-block;
  color: var(--gold-l);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.hcard-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.4rem; font-weight: 800;
  color: var(--white); line-height: 1;
  letter-spacing: -.01em;
  display: flex; align-items: baseline; justify-content: center;
}
.hcard-num-val { display: inline-block; font-variant-numeric: tabular-nums; }
.hcard-num-plus {
  display: inline-block;
  color: var(--gold-l);
  margin-left: 2px;
  opacity: 0;
  transform: translateY(-18px) scale(.6);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34,1.56,.64,1);
}
.hcard-num-plus.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hcard-label { font-size: .88rem; color: rgba(255,255,255,.5); margin-top: 6px; }
.hcard-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,39,.35), rgba(255,255,255,.08), transparent); margin-bottom: 24px; }

.hcard-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.hcs-item {
  text-align: center;
  padding: 4px 6px;
  position: relative;
}
.hcs-item + .hcs-item::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.hcs-val { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.85rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.hcs-val small { font-size: 1.15rem; color: var(--gold-l); margin-left: 1px; }
.hcs-key { display: block; font-size: .7rem; color: rgba(255,255,255,.5); line-height: 1.45; margin-top: 6px; letter-spacing: .02em; }

.hcard-online {
  display: flex; align-items: center; gap: 10px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: rgba(255,255,255,.65);
}
.online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--g-light); flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* Hero snippet — rotating testimonials (slide-left) */
.hero-snip {
  position: relative;
  background: var(--white);
  border-radius: var(--r-l);
  padding: 14px 18px;
  box-shadow: var(--sh-l);
  min-height: 76px;
  overflow: hidden;
}
.snip-slide {
  position: absolute;
  inset: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .7s cubic-bezier(.6,.05,.25,1), opacity .4s ease;
  pointer-events: none;
  will-change: transform, opacity;
}
.snip-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition: transform .7s cubic-bezier(.6,.05,.25,1), opacity .5s ease .1s;
}
.snip-slide.exiting {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform .7s cubic-bezier(.6,.05,.25,1), opacity .5s ease;
}
.snip-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--g-pale); color: var(--g);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.snip-avatar--ua { background: #fff3d6; color: #b8851a; }
.snip-avatar--in { background: #fff1e3; color: #c25a1a; }
.snip-avatar--pl { background: #e7f1ea; color: var(--g); }
.snip-avatar--kz { background: #eaf3ff; color: #1a5fb4; }
.snip-text { flex: 1; min-width: 0; }
.snip-text strong { display: block; font-size: .85rem; color: var(--text); }
.snip-text span { font-size: .78rem; color: var(--text-l); display: block; margin-top: 2px; }
.snip-stars { color: var(--gold); font-size: .78rem; white-space: nowrap; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
  transition: border-color var(--t);
}
.hero-scroll-hint:hover { border-color: rgba(255,255,255,.5); }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ── Section wave between hero and about ───────────────────── */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 64px;
  background: var(--off);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--off); padding: 96px 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-left .eyebrow { margin-bottom: 14px; }
.about-left h2 { margin-bottom: 20px; }
.about-left p { color: var(--text-m); line-height: 1.75; margin-bottom: 12px; font-size: .97rem; }

.about-right { display: flex; flex-direction: column; gap: 14px; }

.about-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--r-l); padding: 20px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.about-card:hover { transform: translateX(4px); box-shadow: var(--sh); border-left-color: var(--g-light); }

.ac-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ac-icon--green { background: var(--g-pale); color: var(--g); }
.ac-icon--gold  { background: var(--gold-bg); color: var(--gold); }

.about-card strong { display: block; font-size: .92rem; color: var(--text); margin-bottom: 3px; }
.about-card span { font-size: .82rem; color: var(--text-l); line-height: 1.5; }

/* ================================================================
   SERVICES (dark)
   ================================================================ */
.dark-bg { background: var(--g-dark); color: var(--white); }

.services { padding: 96px 0; }

.srv-tabs {
  display: flex; gap: 6px; justify-content: center;
  background: rgba(255,255,255,.06); border-radius: 50px;
  padding: 5px; width: fit-content; margin: 0 auto 44px;
}
.srv-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 50px; border: none;
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.72); background: transparent;
  cursor: pointer; transition: all var(--t);
}
.srv-tab:hover { color: rgba(255,255,255,.95); }
.srv-tab.active { background: var(--g-light); color: var(--white); box-shadow: 0 4px 14px rgba(111,191,115,.3); }

.srv-panel { display: none; }
.srv-panel.active { display: block; }

.srv-intro { text-align: center; color: rgba(255,255,255,.72); font-size: .97rem; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }

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

.srv-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-l); padding: 26px;
  transition: background var(--t), border-color var(--t), transform var(--t);
  cursor: pointer;
  outline: none;
  display: flex; flex-direction: column;
}
.srv-card:hover,
.srv-card:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: rgba(111,191,115,.45);
  transform: translateY(-4px);
}
.srv-card:focus-visible { box-shadow: 0 0 0 2px var(--gold-l); }
.srv-more {
  display: inline-block; margin-top: auto; padding-top: 14px;
  align-self: flex-start;
  font-size: .8rem; font-weight: 600;
  color: var(--gold-l); letter-spacing: .02em;
  opacity: .8; transition: opacity var(--t), transform var(--t);
}
.srv-card:hover .srv-more,
.srv-card:focus-visible .srv-more { opacity: 1; transform: translateX(2px); }

.srv-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(232,189,64,.14); color: var(--gold-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
}
.srv-card h4 { color: var(--white); margin-bottom: 8px; font-size: .95rem; }
.srv-card p { font-size: .84rem; color: rgba(255,255,255,.68); line-height: 1.6; }

/* ================================================================
   PACKAGES
   ================================================================ */
.packages { background: #fafbfa; padding: 96px 0; position: relative; overflow: hidden; }
.pkg-bg-deco { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.pkg-bg-deco--tr { width: 500px; height: 500px; top: -200px; right: -200px; background: radial-gradient(circle, rgba(111,191,115,.06), transparent 70%); }
.pkg-bg-deco--bl { width: 400px; height: 400px; bottom: -150px; left: -150px; background: radial-gradient(circle, rgba(31,79,61,.04), transparent 70%); }
.packages .container { position: relative; z-index: 1; }

.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; max-width: 1100px; margin: 0 auto; }

.pkg-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
@media (hover: hover) {
  .pkg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
}

/* FEATURED — gold gradient border via padding wrapper (used by SILVER) */
.pkg-card--featured {
  background: linear-gradient(135deg, var(--gold), #e8c84a, var(--gold));
  border: none; padding: 3px;
  border-radius: 21px;
  box-shadow: 0 10px 30px rgba(201,162,39,.18);
}
.pkg-card--featured .pkg-card-inner {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  height: 100%;
}

/* GOLD — subtle gold accents, clean look */
.pkg-card--gold {
  border: 1px solid rgba(201,162,39,.35);
  box-shadow: 0 4px 16px rgba(201,162,39,.06);
}
.pkg-card--gold::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 3px 3px;
}
.pkg-card--gold .pkg-name { color: var(--g); }
.pkg-card--gold .pkg-list li i { color: var(--gold); }
.pkg-card--gold .pkg-list li.pkg-inc {
  background: rgba(201,162,39,.1);
  color: #7a5e12;
}
.pkg-card--gold .pkg-list li.pkg-inc i { color: var(--gold); }

/* PLATINUM — dark green with gold glow */
.pkg-card--platinum {
  background: linear-gradient(165deg, var(--g) 0%, #2a6b50 100%);
  border: none;
  color: var(--white);
}
.pkg-card--platinum::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 260px; height: 260px;
  background: radial-gradient(circle at top right, rgba(201,162,39,.15), transparent 65%);
  pointer-events: none;
  border-top-right-radius: 20px;
}
.pkg-card--platinum > * { position: relative; z-index: 1; }

.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--g);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 20px;
  box-shadow: 0 6px 16px rgba(201,162,39,.35);
  white-space: nowrap; z-index: 2;
}
.pkg-badge--gold { background: var(--gold); color: var(--g); }

.pkg-head { text-align: left; margin-bottom: 18px; }
.pkg-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem; font-weight: 800; letter-spacing: .02em;
  color: var(--g); margin: 0 0 4px;
}
.pkg-card--platinum .pkg-name { color: var(--white); }
.pkg-tagline { font-size: .82rem; color: var(--text-l); margin: 0; }
.pkg-card--platinum .pkg-tagline { color: rgba(255,255,255,.65); }

.pkg-price-row { margin-bottom: 18px; }
.pkg-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--g); line-height: 1;
}
.pkg-price small { font-size: 1rem; font-weight: 600; color: var(--text-l); margin-left: 2px; }
.pkg-price--custom { font-size: 1.35rem; color: var(--gold); }
.pkg-card--platinum .pkg-price { color: var(--white); }

.pkg-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--text-m); line-height: 1.5; }
.pkg-list li i { color: var(--g-light); flex-shrink: 0; margin-top: 3px; font-size: .78rem; }
.pkg-card--platinum .pkg-list li { color: rgba(255,255,255,.88); }
.pkg-card--platinum .pkg-list li i { color: var(--gold); }

.pkg-list li.pkg-inc {
  background: rgba(111,191,115,.1);
  padding: 9px 12px; border-radius: 10px;
  font-weight: 700; color: var(--g);
  margin-bottom: 2px;
}
.pkg-list li.pkg-inc i { color: var(--g); }
.pkg-card--platinum .pkg-list li.pkg-inc {
  background: rgba(201,162,39,.18);
  color: var(--gold);
}
.pkg-card--platinum .pkg-list li.pkg-inc i { color: var(--gold); }

.pkg-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

.btn-pkg {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 20px;
  border-radius: 50px; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  border: 2px solid transparent;
}
.btn-pkg--ghost {
  background: transparent;
  border-color: var(--g); color: var(--g);
}
.btn-pkg--fill {
  background: var(--g); color: var(--white);
  box-shadow: 0 4px 16px rgba(31,79,61,.2);
}
.btn-pkg--gold {
  background: var(--gold); color: var(--g);
  box-shadow: 0 4px 16px rgba(201,162,39,.25);
}
.btn-pkg--ghost-gold {
  background: transparent;
  border-color: var(--gold); color: #8a6e17;
}
@media (hover: hover) {
  .btn-pkg--ghost:hover { background: var(--g); color: var(--white); }
  .btn-pkg--fill:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(31,79,61,.3); }
  .btn-pkg--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,162,39,.35); }
  .btn-pkg--ghost-gold:hover { background: var(--gold); color: var(--g); }
}
.pkg-note {
  margin: 48px auto 0; max-width: 640px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.pkg-note-text {
  font-size: .95rem; color: var(--text-m);
  font-style: italic; line-height: 1.55; margin: 0;
}
.pkg-note-text strong { color: var(--g); font-style: normal; font-weight: 700; }
.pkg-note-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border: none; border-radius: 50px;
  background: var(--g); color: var(--white);
  font-size: .9rem; font-weight: 700; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 4px 14px rgba(31,79,61,.18);
}
.pkg-note-cta i { font-size: .95rem; }
@media (hover: hover) {
  .pkg-note-cta:hover { transform: translateY(-2px); background: var(--g-light); box-shadow: 0 8px 20px rgba(31,79,61,.25); }
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
/* ── Howto vertical timeline ────────────────────────────────── */
.howto { padding: 96px 0; }

/* Timeline wrapper */
.htl {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
/* Gradient spine */
.htl::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--g-light) 0%, var(--gold) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Row */
.htl-item {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  align-items: center;
  gap: 0 0;
  margin-bottom: 16px;
}
.htl-item:last-child { margin-bottom: 0; }

/* Dot on spine */
.htl-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: #1a3d2e;
  border: 2px solid rgba(111,191,115,.45);
  display: flex; align-items: center; justify-content: center;
  justify-self: center;
  position: relative; z-index: 2;
}
.htl-dot span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; color: var(--gold-l);
}

/* Final step gold dot */
.htl-item--final .htl-dot {
  background: #1e1b08;
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,162,39,.28);
}

/* Card */
.htl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 20px;
}
.htl-item--final .htl-card {
  background: rgba(201,162,39,.06);
  border-color: rgba(201,162,39,.28);
}
@media (hover: hover) {
  .htl-card:hover {
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.16);
  }
  .htl-item--final .htl-card:hover {
    background: rgba(201,162,39,.1);
    border-color: rgba(201,162,39,.4);
  }
}

.htl-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(232,189,64,.1);
  border: 1px solid rgba(232,189,64,.2);
  color: var(--gold-l);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  margin-bottom: 14px;
}
.htl-card h4 {
  font-size: .97rem; font-weight: 700;
  color: var(--white); margin: 0 0 8px;
  line-height: 1.3;
}
.htl-card p {
  font-size: .84rem; color: rgba(255,255,255,.62);
  line-height: 1.58; margin: 0;
}

.htl-empty { min-height: 1px; }

/* Bottom CTA */
.htl-cta {
  text-align: center;
  margin-top: 56px;
}

/* Scroll progress bar (top of page) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--g-light), var(--gold));
  z-index: 1000; pointer-events: none;
  box-shadow: 0 0 8px rgba(111,191,115,.5);
  transition: width .08s linear;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { background: var(--off); padding: 96px 0; }

.tst-carousel { overflow: hidden; position: relative; margin: 0 -12px; }
.tst-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.tst-card {
  flex-shrink: 0;
  margin: 0 12px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 32px;
  transition: box-shadow var(--t);
  display: flex; flex-direction: column;
}
.tst-card:hover { box-shadow: var(--sh-l); }
.tst-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.tst-card blockquote { font-size: .95rem; color: var(--text-m); line-height: 1.75; font-style: italic; margin-bottom: 20px; border: none; padding: 0; flex: 1; }
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--g-pale); color: var(--g);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.tst-author strong { display: block; font-size: .9rem; color: var(--text); }
.tst-author span { font-size: .78rem; color: var(--text-l); display: block; margin-top: 2px; }

.tst-avatar--ua { background: #dbeeff; color: #1565c0; }
.tst-avatar--in { background: #fff3e0; color: #e65100; }
.tst-avatar--pl { background: #fce4ec; color: #c62828; }
.tst-avatar--kz { background: #e8f5e9; color: #2e7d32; }

.tst-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.tst-prev, .tst-next {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-m);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t);
}
.tst-prev:hover, .tst-next:hover { border-color: var(--g); color: var(--g); background: var(--g-pale); }
.tst-dots { display: flex; gap: 7px; }
.tst-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all var(--t);
}
.tst-dot.active { background: var(--g); transform: scale(1.3); }


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--g), var(--g-mid));
  padding: 60px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-text h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--white); font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.7); font-size: .95rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--g); font-weight: 700; white-space: nowrap; }
.cta-banner .btn-primary:hover { background: var(--g-pale); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact { background: var(--off); padding: 96px 0; }

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }

/* Form box */
.contact-form-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px; box-shadow: var(--sh);
  border: 1px solid var(--border);
}
.contact-form-box h3 { margin-bottom: 6px; }
.contact-form-box > p { color: var(--text-l); font-size: .9rem; margin-bottom: 28px; }

/* Messenger contact buttons */
.cmsg-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  margin-bottom: 10px;
  align-items: stretch;
}
.cmsg-qr {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  border: 2px dashed var(--border); border-radius: 14px;
  padding: 16px 10px; color: var(--text-l); text-align: center;
  background: var(--off);
}
.cmsg-qr i { font-size: 3.2rem; color: var(--g); opacity: .55; }
.cmsg-qr span { font-size: .72rem; font-weight: 600; line-height: 1.4; text-transform: uppercase; letter-spacing: .05em; }
.cmsg-list { display: flex; flex-direction: column; gap: 10px; }
.cmsg-list--modal { margin-top: 4px; }
.cmsg-item { border-radius: 14px; overflow: hidden; }
.cmsg-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 18px; width: 100%;
  border: none; cursor: pointer;
  text-decoration: none; color: #fff;
  transition: filter .2s;
}
.cmsg-btn:hover { filter: brightness(1.08); }
.cmsg-ico { font-size: 1.55rem; width: 28px; flex-shrink: 0; text-align: center; }
.cmsg-name { flex: 1; font-weight: 700; font-size: .95rem; text-align: left; }
.cmsg-arrow { font-size: .78rem; opacity: .7; transition: transform .25s; }
.cmsg-toggle.open .cmsg-arrow { transform: rotate(180deg); }
.cmsg-wa    { background: #25d366; }
.cmsg-tg    { background: #0088cc; }
.cmsg-vb    { background: #7360f2; }
.cmsg-phone { background: var(--g); border: 1px solid rgba(201,162,39,.4); }
.cmsg-email  { background: #555; }
.cmsg-email-row { display: flex; align-items: stretch; gap: 10px; }
.cmsg-email-row .cmsg-btn { flex: 1; min-width: 0; width: auto; border-radius: 14px; }
.cmsg-email-addr {
  flex: 1; display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 600; color: var(--text-m);
  background: var(--off); border: 1px solid var(--border);
  border-radius: 14px; padding: 0 14px;
  user-select: text; cursor: text;
}
/* Dropdown */
.cmsg-drop {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  display: flex; flex-direction: column;
}
.cmsg-drop.open { max-height: 200px; }
.cmsg-drop a {
  display: flex; align-items: center; padding: 11px 18px 11px 62px;
  font-size: .9rem; font-weight: 600; color: var(--text-m);
  text-decoration: none; background: var(--off);
  border-top: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.cmsg-drop a:hover { background: var(--g-pale); color: var(--g); }

/* Form groups */
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: .83rem; font-weight: 600; color: var(--text-m); }
.fg input, .fg select, .fg textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: inherit; font-size: .9rem; color: var(--text);
  background: var(--white); transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--g-light);
  box-shadow: 0 0 0 3px rgba(111,191,115,.15);
}
.fg input.err, .fg select.err { border-color: #ef4444; }
.fg textarea { resize: vertical; min-height: 88px; }
.ferr { font-size: .76rem; color: #ef4444; display: none; }
.fg.has-error .ferr { display: block; }

#mainForm, #quickForm { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Channel radios */
.channel-btns { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 0; }
.ch-radio input { display: none; }
.ch-radio span {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px; border: 1.5px solid var(--border);
  border-radius: 50px; font-size: .8rem; font-weight: 600;
  color: var(--text-l); cursor: pointer; transition: all var(--t);
}
.ch-radio input:checked + span { border-color: var(--g-light); background: var(--g-pale); color: var(--g); }

/* File */
.file-fg .file-drop {
  display: flex; align-items: center; gap: 9px;
  border: 1.5px dashed var(--border); border-radius: var(--r);
  padding: 11px 14px; cursor: pointer; transition: border-color var(--t);
  font-size: .85rem; color: var(--text-l);
}
.file-drop:hover { border-color: var(--g-light); color: var(--g); }
.file-drop i { color: var(--g); }
.file-drop input { display: none; }
.file-name { font-size: .78rem; color: var(--g); font-weight: 500; }

/* RODO */
.rodo-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.rodo-label input { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--g); cursor: pointer; }
.rodo-label span { font-size: .8rem; color: var(--text-l); line-height: 1.55; }

/* Form sent */
.form-sent {
  text-align: center; padding: 32px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-sent i { font-size: 3rem; color: var(--g-light); }
.form-sent h4 { font-size: 1.1rem; color: var(--text); }
.form-sent p { font-size: .88rem; color: var(--text-l); }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-channels {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--border); padding: 24px;
}
.contact-channels h4 { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-l); margin-bottom: 16px; }

/* Channel grid */
.ch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ch-btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 8px 12px; border-radius: var(--r);
  background: var(--off); border: 1px solid var(--border);
  cursor: pointer; transition: all var(--t); text-decoration: none;
  font-size: .72rem; font-weight: 600; color: var(--text-m);
  font-family: inherit;
}
.ch-btn:hover { background: var(--white); border-color: var(--g-light); transform: translateY(-2px); box-shadow: var(--sh); color: var(--text); }
.ch-btn-ico {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.ch-phone { background: rgba(31,79,61,.1);  color: var(--g); }
.ch-wa    { background: rgba(37,211,102,.13); color: #25d366; }
.ch-vb    { background: rgba(115,96,242,.12); color: #7360f2; }
.ch-tg    { background: rgba(0,136,204,.12);  color: #0088cc; }
.ch-em    { background: var(--gold-bg);        color: var(--gold); }
.ch-fb    { background: rgba(24,119,242,.12);  color: #1877f2; }

/* Channel modal */
.modal-box--sm { max-width: 360px; text-align: center; }
.mchan-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 24px; }
.mchan-ico {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.mchan-title { font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; }
.mchan-sub { color: var(--text-m); font-size: 1.05rem; font-weight: 600; margin-bottom: 20px; }
.mchan-num-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--r);
  color: var(--text); text-decoration: none; margin-bottom: 9px;
  font-size: .95rem; font-weight: 600; transition: all var(--t);
}
.mchan-num-row:hover { border-color: var(--g-light); color: var(--g); background: var(--g-pale); }
.mchan-num-row i { color: var(--g-light); font-size: .85rem; }
.mchan-cta { display: block; width: 100%; text-align: center; margin-top: 4px; text-decoration: none; }

.contact-address {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--border); padding: 32px;
  height: 100%; box-sizing: border-box;
}
.contact-address h4 { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-l); margin-bottom: 12px; }
.contact-address p { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: var(--text-m); margin-bottom: 14px; }
.contact-address p i { color: var(--g); flex-shrink: 0; margin-top: 2px; }

.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }


/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--g-dark); color: rgba(255,255,255,.6); padding: 64px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 48px; }

.footer-logo { height: 34px; width: auto; display: block; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.62); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.72);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: all var(--t);
}
.footer-socials a:hover { background: var(--g-light); color: var(--white); transform: translateY(-2px); }

.footer-col h5 { font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.7); transition: color var(--t); }
.footer-col ul a:hover { color: var(--white); }
.footer-col ul li { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: rgba(255,255,255,.7); }
.footer-col ul li i { color: var(--g-light); width: 14px; flex-shrink: 0; font-size: .8rem; }
.footer-col ul li a { transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 8px; }
.footer-legal-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: var(--gold-l); }

/* ================================================================
   FLOATING DOCK
   ================================================================ */
.float-dock {
  position: fixed; bottom: 86px; right: 22px;
  display: flex; flex-direction: column; gap: 9px;
  z-index: 900;
}
.fdock-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .3s ease, box-shadow .3s ease, opacity .4s ease;
  opacity: 0; transform: translateX(64px);
}
.fdock-btn.show { opacity: 1; transform: translateX(0); }
.fdock-btn:nth-child(1) { transition-delay: .00s; }
.fdock-btn:nth-child(2) { transition-delay: .06s; }
.fdock-btn:nth-child(3) { transition-delay: .12s; }
.fdock-btn:hover { transform: scale(1.12) translateX(0); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.fdock-wa { background: #25d366; }
.fdock-tg { background: #0088cc; }
.fdock-vb { background: #7360f2; }

/* Back to top */
.back-top {
  position: fixed; bottom: 22px; right: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--g); color: var(--white); border: 2px solid rgba(201,162,39,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; box-shadow: var(--sh);
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background var(--t);
  cursor: pointer; z-index: 900;
}
.back-top.show { opacity: 1; transform: none; }
.back-top:hover { background: var(--g-dark); }
.back-top.active { background: var(--g-dark); transform: rotate(15deg); }

/* ================================================================
   MODALS
   ================================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,20,15,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 2000;
  opacity: 0;
  transition: opacity .3s ease, background .3s ease, backdrop-filter .3s ease;
}
.modal-overlay:not([hidden]) {
  opacity: 1;
  background: rgba(10,20,15,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  padding: 36px; position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}
.modal-overlay:not([hidden]) .modal-box { transform: none; }
.modal-box--wide { max-width: 700px; }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--off);
  color: var(--text-l); font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--t), color var(--t);
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal-head { text-align: center; margin-bottom: 28px; }
.modal-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--g-pale); color: var(--g);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.modal-head h3 { margin-bottom: 7px; }
.modal-head p { font-size: .9rem; color: var(--text-l); }

.modal-note { text-align: center; font-size: .78rem; color: var(--text-l); margin-top: 8px; }

.modal-sent {
  text-align: center; padding: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.modal-sent i { font-size: 2.8rem; color: var(--g-light); }
.modal-sent h4 { font-size: 1.1rem; }

/* Service detail modal */
.srvd-header { padding: 14px 0 22px; border-bottom: 1px solid var(--border); margin-bottom: 22px; display: flex; align-items: flex-start; gap: 16px; }
.srvd-ico {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
  background: rgba(232,189,64,.14); color: var(--gold-l);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.srvd-head-text { flex: 1; min-width: 0; }
.srvd-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--text); line-height: 1.25; }
.srvd-sub { font-size: .92rem; color: var(--text-l); margin-top: 6px; line-height: 1.5; }
.srvd-desc { font-size: .93rem; color: var(--text-m); line-height: 1.65; margin-bottom: 22px; }
.srvd-block-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--g);
  margin: 18px 0 10px;
}
.srvd-list { display: flex; flex-direction: column; gap: 9px; }
.srvd-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-m); line-height: 1.5; }
.srvd-list li i { color: var(--g-light); flex-shrink: 0; margin-top: 4px; font-size: .78rem; }
.srvd-who { background: var(--g-pale); border-radius: var(--r); padding: 14px 16px; font-size: .88rem; color: var(--g); margin-top: 10px; line-height: 1.55; }

/* ================================================================
   COOKIE BAR
   ================================================================ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--graph2);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 1500; padding: 16px 0;
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-bar p { font-size: .83rem; color: rgba(255,255,255,.6); flex: 1; min-width: 220px; }
.cookie-bar a { color: var(--g-light); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .pkg-grid  { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .pkg-bg-deco { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 40px; }
}

@media (max-width: 860px) {
  .hero-layout { grid-template-columns: 1fr; gap: 44px; }
  .hero-h1 { font-size: clamp(1.6rem, 8vw, 2.8rem); }
  .hero-desc { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: var(--g-dark);
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 0; z-index: 999;
    padding: 88px 0 32px;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,.07); list-style: none; }
  .nav-links.open a {
    display: block; font-size: 1.15rem; font-weight: 600;
    color: rgba(255,255,255,.9); padding: 18px 28px;
    width: 100%; text-align: left;
    letter-spacing: .01em;
  }
  .nav-links.open a:hover, .nav-links.open a.active { color: var(--g-light); background: rgba(255,255,255,.04); }
  .hamburger { display: flex; z-index: 1000; }
  .btn-consult { display: none; }
  /* Mobile-only menu extras */
  .nav-m-cta { display: block; padding: 24px 28px 8px; border-bottom: none !important; }
  .nav-m-cta .btn-primary { width: 100%; justify-content: center; }
  .nav-m-langs { display: flex !important; flex-wrap: wrap; gap: 8px; padding: 16px 28px; border-bottom: none !important; }
  .nav-m-lang {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.75); border-radius: 8px;
    padding: 7px 12px; font-size: .82rem; font-weight: 600; cursor: pointer;
    transition: background .2s, color .2s;
  }
  .nav-m-lang:hover, .nav-m-lang.active { background: rgba(111,191,115,.2); color: var(--g-light); border-color: rgba(111,191,115,.3); }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 600px) {
  .cmsg-email-row { flex-direction: column; }
  .cmsg-email-row .cmsg-btn { width: 100%; }
  .cmsg-email-addr { justify-content: flex-start; padding: 10px 14px; border-radius: 10px; }
  .section-head { margin-bottom: 36px; }
  .about { padding: 64px 0; }
  .services, .packages, .howto, .testimonials, .contact { padding: 64px 0; }
  .hero { padding: 140px 0 64px; min-height: auto; margin-top: -70px; }
  .announce-bar { font-size: .76rem; padding: 8px 0; }
  .announce-inner { flex-wrap: nowrap; gap: 8px; }
  .announce-bar p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
  .announce-cta { font-size: .76rem; white-space: nowrap; }
  .hero::after { height: 40px; }
  .srv-grid { grid-template-columns: 1fr; }
  .packages { padding: 40px 0; }
  .packages .container { padding: 0 16px; }
  .pkg-grid { grid-template-columns: 1fr; gap: 18px; }
  .pkg-card { padding: 24px 20px; }
  .pkg-card--featured .pkg-card-inner { padding: 24px 20px; }
  .pkg-card--solo    { order: 3; }
  .pkg-card--silver  { order: 1; }
  .pkg-card--gold    { order: 2; }
  .pkg-card--platinum{ order: 4; }
  .pkg-price { font-size: 1.9rem; }
  .pkg-list li { font-size: .85rem; gap: 10px; }
  .btn-pkg { padding: 14px; font-size: .92rem; }
  .pkg-note { margin-top: 28px; padding: 16px 20px; font-size: .88rem; }

  /* howto mobile: spine on left, cards right */
  .htl::before { left: 20px; transform: none; }
  .htl-item {
    grid-template-columns: 40px 1fr;
    align-items: start;
  }
  .htl-card { grid-column: 2; grid-row: 1; margin: 0 0 0 14px; background: transparent; border: none; padding: 0 0 4px; }
  .htl-dot  { grid-column: 1; grid-row: 1; justify-self: center; margin-top: 0; }
  .htl-empty { display: none; }
  .htl-icon { display: none; }
  .htl-item--final .htl-card { background: transparent; border: none; }
  .htl-cta { margin-top: 36px; }

  .tst-track { align-items: flex-start; }
  .tst-card { min-width: calc(100% - 24px); padding: 24px 20px; }
  .tst-card blockquote { flex: none; font-size: .9rem; margin-bottom: 16px; }
  .tst-stars { margin-bottom: 10px; }
  .hero-snip { min-height: 108px; }
  .hero-scroll-hint { display: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hcard-num { font-size: 2.4rem; }
  .trust-pill { font-size: .74rem; }
}
