/* ============================================
   ZDRAVOTNI POJISTENI CIZINCU - moderny dizajn
   ============================================ */

:root {
  --primary: #0d8f6f;
  --primary-dark: #086e54;
  --primary-light: #e6f7f0;
  --primary-50: #f0fbf6;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --text: #0f172a;
  --text-light: #475569;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tint: #f1f9f5;
  --border: #e2e8f0;
  --border-soft: #f1f5f9;
  --accent: #fbbf24;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(13, 143, 111, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 24px;
  height: 76px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14px; line-height: 1.15;
  color: var(--text);
}
.logo img { width: 44px; height: 44px; border-radius: 10px; }
.logo-text { letter-spacing: -0.01em; }
.logo-text strong { color: var(--primary); font-weight: 800; }

.main-nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500; font-size: 15px;
  color: var(--text-light);
}
.main-nav a:hover { color: var(--primary); background: var(--primary-50); }

.btn-header { margin-left: 8px; }

/* LANG SWITCH */
.lang-switch {
  display: flex; gap: 4px;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--border-soft);
}
.lang-flag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-muted);
  transition: background .15s, color .15s;
}
.lang-flag svg {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  display: block;
}
.lang-flag:hover { background: var(--primary-50); color: var(--text); }
.lang-flag.active { color: var(--primary-dark); background: var(--primary-light); }
.footer-lang-link { font-weight: 500; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  flex-direction: column; justify-content: space-between; align-items: stretch;
  margin-left: 8px;
}
.nav-toggle span {
  display: block; height: 2.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600; font-size: 15px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 143, 111, 0.3);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(13, 143, 111, 0.4); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

.btn-outline {
  background: white;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-50); }

/* HERO */
.hero {
  padding: 64px 0 80px;
  background:
    radial-gradient(circle at 80% 0%, rgba(13,143,111,0.08), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(37,211,102,0.06), transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero h1 span { color: var(--primary); }
.hero-intro {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-bullets li {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text-light);
}
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
  padding: 4px;
  margin-top: 2px;
}
.check-icon-sm {
  width: 18px; height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}
.hero-subtext {
  font-size: 15px; color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.rating-letter {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #4285F4, #EA4335 50%, #FBBC05);
  color: white; border-radius: 50%;
  font-weight: 700; font-size: 16px;
}
.hero-rating strong { font-size: 18px; }
.stars { color: var(--accent); letter-spacing: 1px; font-size: 14px; }
.rating-text { color: var(--text-muted); font-size: 13px; }

/* HERO VISUAL */
.hero-visual { position: relative; }
.visual-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
  position: relative;
  transform: rotate(-1deg);
  transition: transform .4s ease;
}
.visual-card:hover { transform: rotate(0); }
.visual-badge {
  display: inline-block;
  background: var(--whatsapp);
  color: white;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 18px;
}
.visual-msg {
  padding: 12px 16px;
  border-radius: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  max-width: 88%;
  line-height: 1.5;
}
.visual-msg-them {
  background: #f1f5f9;
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.visual-msg-us {
  background: #dcf8c6;
  color: var(--text);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.visual-typing {
  font-size: 12px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.visual-typing .dot {
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--whatsapp);
  animation: pulse 1.4s ease-in-out infinite;
}
.visual-typing .dot:nth-child(2) { animation-delay: 0.2s; }
.visual-typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.stat {
  background: white;
  padding: 14px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.stat span { font-size: 12px; color: var(--text-muted); }

/* SECTION */
.section { padding: 80px 0; }
.section-bonusy { background: var(--bg-soft); }
.section-tym { background: white; }
.section-steps { background: var(--bg-tint); }
.section-faq { background: white; }
.section-kontakt { background: linear-gradient(180deg, var(--bg-tint) 0%, white 100%); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.section-head h2 span { color: var(--primary); }
.section-head p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.6;
}

/* BONUSY */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.bonus-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 20px;
}
.bonus-icon svg { width: 28px; height: 28px; }
.bonus-card h3 {
  font-size: 19px; font-weight: 700;
  line-height: 1.3; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.bonus-subtitle {
  font-size: 14.5px; color: var(--text-muted);
  margin-bottom: 18px;
}
.bonus-card ul {
  list-style: none;
  display: grid; gap: 10px;
  margin-bottom: 16px;
}
.bonus-card ul li {
  display: flex; gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-light);
}
.tag-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  margin-top: 16px;
}
.tag {
  font-size: 12px; font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-soft);
  color: var(--text-light);
  border-radius: 999px;
}
.bonus-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

/* TYM */
.tym-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.tym-photos {
  position: relative;
}
.tym-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tym-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.tym-photo-main {
  transform: rotate(-2deg);
  border: 6px solid white;
}
.tym-photo-second {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 50%;
  transform: rotate(4deg);
  border: 6px solid white;
  z-index: 2;
}
.tym-photo-second img { aspect-ratio: 1/1; }
.tym-photo-placeholder {
  background: linear-gradient(135deg, var(--primary-light), #c5e8d6);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.placeholder-content {
  text-align: center;
  display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}
.placeholder-content svg { width: 64px; height: 64px; }
.placeholder-content span { font-weight: 600; font-size: 14px; }
.tym-badge {
  position: absolute;
  top: 16px;
  left: -16px;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  z-index: 3;
}
.tym-badge strong {
  color: var(--accent);
  font-size: 18px;
}
.tym-badge span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.tym-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.tym-content h2 span { color: var(--primary); }
.tym-sub {
  display: block;
  font-size: 0.65em;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
}
.tym-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.tym-bullets {
  list-style: none;
  display: grid; gap: 14px;
}
.tym-bullets li {
  display: flex; gap: 14px;
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.55;
}
.tym-bullets li strong { color: var(--text); }

/* JAK TO FUNGUJE */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px;
  box-shadow: 0 6px 18px rgba(13,143,111,0.3);
}
.step-card h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.55;
}
.steps-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid; gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600; font-size: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-light);
  font-size: 15px; line-height: 1.65;
}

/* KONTAKT */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.kontakt-info h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.kontakt-info h2 span { color: var(--primary); }
.kontakt-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.contact-cards {
  display: grid; gap: 12px;
  margin-bottom: 24px;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card-whatsapp .contact-icon {
  background: var(--whatsapp);
  color: white;
}
.contact-card .contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.contact-card strong {
  display: block;
  font-size: 15.5px;
  color: var(--text);
}
.contact-card .contact-sub {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.kontakt-tip {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14.5px;
  color: #78350f;
  border-left: 4px solid var(--accent);
}

/* FORM */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-card h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.form-intro {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.contact-form { display: grid; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form label {
  display: grid; gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: white;
  font-family: inherit;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 143, 111, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}
.form-success {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 16px;
}
.form-error {
  background: #fee2e2;
  color: #b91c1c;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  margin-bottom: 16px;
}

/* FOOTER */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  max-width: 360px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  transition: color .15s ease;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: float-pulse 2.6s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .tym-grid { grid-template-columns: 1fr; gap: 48px; }
  .tym-photos { max-width: 480px; margin: 0 auto; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .header-inner { padding: 12px 18px; height: 64px; gap: 10px; }
  .logo img { width: 38px; height: 38px; }
  .logo-text { font-size: 13px; }

  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    transform: translateY(-110%);
    transition: transform .3s ease;
    margin-left: 0;
  }
  .nav-open .main-nav { transform: translateY(0); }
  .main-nav a { padding: 14px 16px; font-size: 16px; border-radius: 10px; }

  .nav-toggle { display: flex; }
  .btn-header { display: none; }

  .lang-switch {
    border-left: none;
    border-top: 1px solid var(--border-soft);
    margin-top: 8px; padding-top: 12px; padding-left: 0;
    margin-left: 0;
    justify-content: flex-start;
  }
  .lang-flag { padding: 8px 12px; font-size: 14px; }

  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: 32px; }
  .hero-intro { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-rating { width: 100%; justify-content: flex-start; flex-wrap: wrap; }

  .visual-card { transform: none; padding: 22px 18px; }
  .hero-stats { gap: 8px; }
  .stat { padding: 12px 8px; }
  .stat strong { font-size: 16px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 26px; }
  .section-head p { font-size: 15.5px; }

  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card:last-child { max-width: 100%; }
  .bonus-card { padding: 26px 22px; }

  .tym-photos { max-width: 320px; }
  .tym-badge { left: -8px; padding: 10px 14px; }
  .tym-photo-second { width: 55%; bottom: -16px; right: -8px; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-cta { flex-direction: column; align-items: stretch; }
  .steps-cta .btn { width: 100%; }

  .faq-item summary { padding: 16px 18px; font-size: 15px; gap: 12px; }
  .faq-answer { padding: 0 18px 18px; font-size: 14.5px; }

  .form-card { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .floating-whatsapp {
    bottom: 18px; right: 18px;
    width: 54px; height: 54px;
  }
  .floating-whatsapp svg { width: 24px; height: 24px; }
}

@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 28px; }
  .hero-bullets li { font-size: 14.5px; }
}

/* ADMIN BUTTON IN FOOTER (subtle) */
.admin-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.admin-link:hover { color: rgba(255,255,255,0.6); }
