:root {
  --bg: #0D0D0D;
  --bg-2: #1A1A1A;
  --bg-3: #242424;
  --line: #2E2E2E;
  --text: #FFFFFF;
  --muted: #BFBFBF;
  --accent: #FF4D1A;
  --accent-hover: #FF6A3D;
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1200px;
  --nav-h: 76px;
  --font-head: "Oswald", "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; color: var(--muted); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.accent { color: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { transform: scale(1.04); background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 10px 30px -10px rgba(255,77,26,.7); }
.btn-outline { background: transparent; border-color: #fff; }
.btn-outline:hover { background: #fff; border-color: #fff; color: var(--bg); box-shadow: none; }
.btn-block { width: 100%; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--accent); vertical-align: middle; margin-right: 12px; }
.section-title { font-size: clamp(34px, 5vw, 54px); }
.section-head p { font-size: 18px; }

/* ---------- Fade-up animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .plan-card, .plan-media img { transition: none !important; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(13,13,13,.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background-color .3s ease;
}
.nav.scrolled { background: rgba(13,13,13,.94); }
.nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 25px; letter-spacing: .06em; text-transform: uppercase; }
.logo-name span { color: var(--accent); }
.logo-sub { font-size: 11px; letter-spacing: .32em; color: var(--muted); margin-top: 5px; font-weight: 600; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 15px; color: var(--muted);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: width .25s ease; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-right: -10px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle span + span { margin-top: 7px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(13,13,13,.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 24px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { display: block; padding: 15px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--accent); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(13,13,13,.9) 0%, rgba(13,13,13,.7) 50%, rgba(13,13,13,.5) 100%),
    linear-gradient(0deg, rgba(13,13,13,1) 0%, rgba(13,13,13,0) 30%);
}
.hero-content { max-width: 780px; }
.hero h1 { font-size: clamp(42px, 7.2vw, 88px); line-height: 1.02; margin-bottom: 26px; }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: #E0E0E0; max-width: 620px; margin-bottom: 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(26,26,26,.75);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  backdrop-filter: blur(6px);
}
.badge svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  background: var(--accent); border-radius: 2px; animation: cue 1.8s infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@media (max-height: 700px), (max-width: 600px) { .scroll-cue { display: none; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 70px; align-items: center; }
.about-photo { position: relative; }
.about-photo::before {
  content: ""; position: absolute; inset: -16px 16px 16px -16px;
  border: 2px solid var(--accent); border-radius: var(--radius-lg); z-index: 0;
}
.about-photo img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
}
.placeholder-tag {
  position: absolute; z-index: 2; left: 16px; bottom: 16px;
  background: rgba(13,13,13,.85); color: #fff;
  border: 1px dashed var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 7px 12px; border-radius: 6px;
}
.exp-chip {
  position: absolute; z-index: 2; right: -18px; top: 30px;
  background: var(--accent); color: #fff;
  padding: 16px 20px; border-radius: var(--radius);
  text-align: center; box-shadow: 0 20px 40px -15px rgba(0,0,0,.8);
}
.exp-chip strong { display: block; font-family: var(--font-head); font-size: 42px; line-height: 1; }
.exp-chip span { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-text .section-title { text-align: left; }
.about-text p { font-size: 17px; }
.about-text p strong { color: #fff; }
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.highlight {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 20px; transition: border-color .25s, transform .25s;
}
.highlight:hover { border-color: var(--accent); transform: translateY(-4px); }
.icon-box {
  width: 50px; height: 50px; border-radius: 10px;
  background: rgba(255,77,26,.12); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 16px;
}
.icon-box svg { width: 26px; height: 26px; }
.highlight h3 { font-size: 19px; margin-bottom: 6px; }
.highlight p { font-size: 15px; margin: 0; line-height: 1.55; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo { max-width: 480px; margin: 0 auto; width: calc(100% - 20px); }
  .exp-chip { right: -10px; }
}
@media (max-width: 640px) { .highlights { grid-template-columns: 1fr; } }

/* ---------- Plans ---------- */
.plans-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.plan-card {
  flex: 0 1 calc((100% - 56px) / 3);
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.plan-card:hover { transform: translateY(-6px); border-color: rgba(255,77,26,.6); box-shadow: 0 24px 50px -24px rgba(255,77,26,.45); }
.plan-card.featured { border-color: var(--accent); }
.ribbon {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px;
}
.plan-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.plan-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.plan-card:hover .plan-media img { transform: scale(1.06); }
.plan-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,13,13,.75), rgba(13,13,13,0) 55%); pointer-events: none; }
.plan-media.split { display: grid; grid-template-columns: 1fr 1fr; }
.plan-media.split img:first-child { border-right: 2px solid var(--accent); }
/* phone mockup overlay for Online Coaching */
.phone {
  position: absolute; z-index: 2; right: 18px; bottom: -34px;
  width: 104px; height: 190px; border-radius: 16px;
  background: #111; border: 3px solid #3a3a3a;
  box-shadow: 0 18px 40px rgba(0,0,0,.7);
  padding: 16px 9px 9px; transform: rotate(-6deg);
}
.phone::before { content: ""; position: absolute; top: 6px; left: 50%; width: 30px; height: 4px; margin-left: -15px; border-radius: 3px; background: #333; }
.phone-screen { font-size: 8px; line-height: 1.3; color: #ddd; }
.phone-screen b { display: block; font-family: var(--font-head); font-size: 10px; letter-spacing: .05em; color: var(--accent); margin-bottom: 6px; }
.phone-row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid #2a2a2a; }
.phone-row i { font-style: normal; color: var(--accent); font-weight: 700; }
.plan-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.plan-body h3 { font-size: 24px; margin-bottom: 10px; }
.plan-desc { font-size: 15.5px; }
.checklist { list-style: none; padding: 0; margin: 6px 0 26px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-size: 15.5px; color: #E6E6E6; line-height: 1.5; }
.checklist svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.price {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.price-value { font-family: var(--font-head); font-size: 22px; color: #fff; }
.price-value.tbd { font-size: 15px; letter-spacing: .04em; color: var(--accent); border: 1px dashed var(--accent); padding: 3px 8px; border-radius: 5px; }
.price-unit { font-family: var(--font-head); font-size: 22px; }
.price-period { font-size: 14px; color: var(--muted); }

@media (max-width: 1080px) { .plan-card { flex-basis: calc((100% - 28px) / 2); } }
@media (max-width: 700px) { .plan-card { flex-basis: 100%; } }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 44px; left: 12.5%; right: 12.5%;
  border-top: 2px dashed rgba(255,77,26,.35); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 88px; height: 88px; margin: 0 auto 24px;
  border-radius: 50%; border: 2px solid var(--accent);
  background: var(--bg-2); color: var(--accent);
  display: grid; place-items: center; position: relative;
}
.step-icon svg { width: 38px; height: 38px; }
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  display: grid; place-items: center;
}
.step h3 { font-size: 21px; }
.step p { font-size: 15.5px; max-width: 260px; margin: 0 auto; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .steps::before { display: none; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Results ---------- */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.result-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-frame {
  aspect-ratio: 3 / 4; border-radius: var(--radius);
  border: 2px dashed #444; background: repeating-linear-gradient(45deg, #151515 0 12px, #1b1b1b 12px 24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 10px; position: relative;
}
.ba-frame svg { width: 30px; height: 30px; color: #555; }
.ba-frame small { font-size: 11px; font-weight: 700; letter-spacing: .04em; color: #8a8a8a; line-height: 1.35; }
.ba-label {
  position: absolute; top: 8px; left: 8px;
  font-family: var(--font-head); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--bg); color: #fff; padding: 3px 8px; border-radius: 4px;
}
.ba-frame.after .ba-label { background: var(--accent); }
.result-meta { padding: 16px 4px 2px; }
.result-meta h3 { font-size: 18px; margin-bottom: 4px; }
.result-meta p { font-size: 14.5px; margin: 0; }
.results-note { text-align: center; margin-top: 40px; font-size: 15px; }
@media (max-width: 980px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .results-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg); margin-bottom: 14px; overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: rgba(255,77,26,.6); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 24px; font-weight: 600; font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,77,26,.12); color: var(--accent);
  font-size: 22px; font-weight: 500; transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; }
.faq-item .faq-a p { margin: 0; }

/* ---------- Contact ---------- */
.contact { overflow: hidden; isolation: isolate; }
.contact-bg { position: absolute; inset: -30px; z-index: -2; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(8px) grayscale(.4); }
.contact::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(13,13,13,.86); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 50px; align-items: start; }
.contact-info .section-title { text-align: left; }
.contact-info > p { font-size: 17px; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius-lg);
  background: rgba(26,26,26,.85); border: 1px solid var(--line);
  text-decoration: none; transition: border-color .25s, transform .25s;
}
.contact-card:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-card .icon-box { margin: 0; flex-shrink: 0; }
.contact-card small { display: block; font-size: 13px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.contact-card strong { font-size: 17px; word-break: break-all; }
.form-card {
  background: rgba(26,26,26,.92); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-card h3 { font-size: 26px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: #E6E6E6; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  font: inherit; font-size: 16px; color: #fff;
  background: var(--bg); border: 1px solid #333; border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4D1A' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,77,26,.2); }
.field.highlight-pulse select { animation: pulse 1.2s ease 2; }
@keyframes pulse { 50% { box-shadow: 0 0 0 5px rgba(255,77,26,.45); border-color: var(--accent); } }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.btn-wa { background: #1c1c1c; border-color: #3a3a3a; }
.btn-wa:hover { background: #25D366; border-color: #25D366; box-shadow: none; }
.form-note { font-size: 13.5px; margin: 14px 0 0; }
.form-status { margin-top: 14px; font-size: 15px; color: #fff; display: none; padding: 12px 14px; border-radius: var(--radius); background: rgba(255,77,26,.12); border: 1px solid rgba(255,77,26,.4); }
.form-status.show { display: block; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .form-row, .form-actions { grid-template-columns: 1fr; gap: 0; }
  .form-actions { gap: 12px; }
  .form-card { padding: 26px 20px; }
}

/* ---------- Footer ---------- */
footer { background: #080808; border-top: 1px solid var(--line); padding: 50px 0 30px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--accent); }
.footer-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 48px;
  margin-top: 30px; padding: 20px 28px;
  background: #FFFFFF; border-radius: var(--radius-lg);
}
.footer-logos img { height: auto; }
.logo-erasmus { width: 300px; max-width: 100%; }
.logo-yllf { width: 88px; }
@media (max-width: 480px) { .logo-erasmus { width: 230px; } .logo-yllf { width: 76px; } }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 24px; font-size: 14px; color: #8a8a8a; }
.footer-bottom a { color: #8a8a8a; text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

@media (max-width: 600px) {
  section { padding: 80px 0; }
  .container { padding: 0 16px; }
  .section-head { margin-bottom: 44px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .logo-name { font-size: 21px; }
  .logo-sub { font-size: 10px; letter-spacing: .26em; }
}

/* ---------- Language switch ---------- */
.lang-switch { display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; margin-left: 28px; }
.lang-switch a { text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--muted); padding: 5px 11px; border-radius: 999px; transition: color .2s, background-color .2s; }
.lang-switch a:hover { color: #fff; }
.lang-switch a.current { background: var(--accent); color: #fff; }
.nav nav { margin-left: auto; }
@media (max-width: 980px) {
  .lang-switch { order: 2; margin-left: auto; margin-right: 14px; }
  .nav-toggle { order: 3; }
}

/* Price shown when it is agreed individually */
.price-value.ask { font-size: 20px; letter-spacing: .03em; color: var(--accent); }
