/* ===== Tokens ===== */
:root {
  --black: #0a0a0b;
  --bg: #0d0d0f;
  --bg-2: #131316;
  --surface: #16161a;
  --line: rgba(201, 162, 75, 0.18);
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --gold-soft: rgba(201, 162, 75, 0.12);
  --text: #ececee;
  --muted: #9a9aa2;
  --radius: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.gold { color: var(--gold); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
section[id] { scroll-margin-top: 104px; }

.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h1, .section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 38px; font-size: 1.02rem; }
.btn-gold {
  background: linear-gradient(135deg, #c2910b, var(--gold));
  color: #1a1407;
  box-shadow: 0 8px 30px rgba(201, 162, 75, 0.22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201, 162, 75, 0.34); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 200px; height: auto; display: block; }
.brand-name { font-family: "Playfair Display", serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.02em; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 0.95rem; color: var(--text); position: relative; transition: color 0.25s; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav a:not(.btn):hover { color: var(--gold); }
.nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: 0.3s var(--ease); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 50px;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url("../img/hero.jpg") no-repeat center center / cover;
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 30%, rgba(13,13,15,0.72) 55%, rgba(13,13,15,0.25) 100%),
    radial-gradient(120% 90% at 20% 50%, rgba(201,162,75,0.10), transparent 60%),
    linear-gradient(0deg, var(--bg), transparent 30%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 620px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; margin-bottom: 24px; }
.hero-lead { font-size: 1.15rem; color: var(--muted); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 14px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-cue span { width: 3px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ===== Trust ===== */
.trust { background: var(--bg-2); border-block: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 24px; }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-size: 1.05rem; color: var(--gold); }
.trust-item span { font-size: 0.85rem; color: var(--muted); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius); position: relative; z-index: 2; }
.about-photo-frame { position: absolute; inset: 0; transform: translate(18px, 18px); border: 1px solid var(--gold); border-radius: var(--radius); z-index: 1; }
.about-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 22px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.stats { display: flex; gap: 36px; margin: 30px 0; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 700; }
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ===== Services ===== */
.services { background: var(--bg-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.card-featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,162,75,0.07), var(--surface)); }
.card-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: #1a1407; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.card-tag { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.card h3 { font-size: 1.7rem; margin: 10px 0 14px; }
.card-desc { color: var(--muted); margin-bottom: 22px; }
.card-list { list-style: none; margin-bottom: 26px; }
.card-list li { padding: 9px 0 9px 26px; position: relative; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; }
.card-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 11px; }
.card-link { color: var(--gold); font-weight: 500; font-size: 0.95rem; transition: gap 0.3s, opacity 0.3s; }
.card-link:hover { opacity: 0.75; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { padding: 34px 30px; border-left: 2px solid var(--line); position: relative; }
.step-num { font-family: "Playfair Display", serif; font-size: 2.4rem; color: var(--gold); opacity: 0.6; display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ===== Blog ===== */
.blog { background: var(--bg-2); }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: var(--surface); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.post:hover { transform: translateY(-6px); border-color: var(--line); }
.post-thumb { display: block; height: 190px; position: relative; background-size: cover; background-position: center; }
.post-thumb-1 { background: linear-gradient(135deg, #1d2a1c, #0e0e10); }
.post-thumb-2 { background: linear-gradient(135deg, #2a241c, #0e0e10); }
.post-thumb-3 { background: linear-gradient(135deg, #1c222a, #0e0e10); }
.post-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 70% 20%, rgba(201,162,75,0.18), transparent 60%); }
.post-cat { position: absolute; bottom: 14px; left: 16px; z-index: 2; background: rgba(10,10,11,0.7); border: 1px solid var(--line); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.post-body { padding: 26px 24px 30px; }
.post-date { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }
.post-body h3 { font-size: 1.25rem; margin: 8px 0 12px; }
.post-body h3 a { transition: color 0.25s; }
.post-body h3 a:hover { color: var(--gold); }
.post-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.blog-more { text-align: center; margin-top: 50px; }

/* ===== CTA band ===== */
.cta-band { padding: 100px 0; background: linear-gradient(135deg, #14110a, var(--black)); border-block: 1px solid var(--line); text-align: center; }
.cta-inner { max-width: 680px; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 18px; }
.cta-band p { color: var(--muted); margin-bottom: 34px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--black); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand-name { font-size: 1.6rem; }
.footer-brand p { color: var(--muted); margin-top: 14px; max-width: 300px; font-size: 0.95rem; }
.footer-col h4 { font-family: "Inter", sans-serif; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); margin-bottom: 12px; font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-muted { color: var(--muted); font-size: 0.95rem; }
.footer-bottom { display: flex; justify-content: space-between; padding: 26px 24px; border-top: 1px solid rgba(255,255,255,0.06); color: var(--muted); font-size: 0.85rem; }

/* ===== Subpages / Single post ===== */
.subpage { padding-top: 120px; padding-bottom: 100px; }
.subpage.post-single { padding-top: 0; }

.post-hero {
  position: relative;
  padding: 170px 0 70px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
}
.post-hero-plain { background: linear-gradient(135deg, #16140d, var(--black)); }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg) 4%, rgba(10,10,11,0.78) 55%, rgba(10,10,11,0.6));
}
.post-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.post-hero-inner h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 6px; }
.post-back { display: inline-block; color: var(--gold); font-size: 0.9rem; margin-bottom: 18px; transition: opacity 0.25s; }
.post-back:hover { opacity: 0.7; }

.post-content { max-width: 760px; margin: 60px auto 0; font-size: 1.08rem; color: #d7d7db; }
.post-content > *:first-child { margin-top: 0; }
.post-content h2 { font-size: 1.7rem; color: var(--text); margin: 40px 0 14px; }
.post-content h3 { font-size: 1.3rem; color: var(--text); margin: 30px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 22px 4px; padding-left: 22px; }
.post-content li { margin-bottom: 10px; }
.post-content li::marker { color: var(--gold); }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-content strong { color: var(--text); }
.post-content blockquote { border-left: 2px solid var(--gold); padding: 6px 0 6px 22px; margin: 26px 0; color: var(--muted); font-style: italic; }
.post-content img { border-radius: var(--radius); margin: 26px 0; }

.post-foot { max-width: 760px; margin: 56px auto 0; display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ===== Legal pages ===== */
.legal-head { max-width: 820px; margin: 0 auto 18px; }
.legal-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-top: 4px; }
.legal { max-width: 820px; margin: 0 auto; color: #cfcfd4; font-size: 1.02rem; }
.legal h2 { font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--text); margin: 38px 0 12px; }
.legal p { margin-bottom: 16px; }
.legal ul { margin: 0 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal li::marker { color: var(--gold); }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.legal strong { color: var(--text); }
.legal-copy { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); color: var(--muted); font-size: 0.9rem; }

/* ===== Floating Kontaktmenü ===== */
.floating-contact-menu { position: fixed; right: 26px; bottom: 26px; z-index: 200; }

.floating-contact-items {
  position: absolute;
  bottom: 70px; right: 6px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.floating-contact-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,0.4);
  opacity: 0; transform: scale(0.3) translateY(16px); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.25s var(--ease);
}
.floating-contact-btn svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.floating-contact-btn:hover { transform: scale(1.12) translateY(0); }
.floating-whatsapp  { background: #25d366; }
.floating-instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.floating-mail      { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a1407; }

.floating-contact-menu.active .floating-contact-btn { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.floating-contact-menu.active .floating-contact-btn:nth-child(3) { transition-delay: 0.04s; }
.floating-contact-menu.active .floating-contact-btn:nth-child(2) { transition-delay: 0.09s; }
.floating-contact-menu.active .floating-contact-btn:nth-child(1) { transition-delay: 0.14s; }

.floating-main-btn {
  width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a1407;
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.42);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.floating-main-btn:hover { transform: scale(1.07); }
.floating-main-btn svg {
  width: 26px; height: 26px; fill: currentColor; position: absolute;
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
}
.floating-main-btn .icon-close { opacity: 0; transform: rotate(-90deg) scale(0.4); }
.floating-contact-menu.active .floating-main-btn .icon-open { opacity: 0; transform: rotate(90deg) scale(0.4); }
.floating-contact-menu.active .floating-main-btn .icon-close { opacity: 1; transform: rotate(0) scale(1); }
.floating-contact-menu.active .floating-main-btn { box-shadow: 0 10px 32px rgba(201, 162, 75, 0.6); }

@media (max-width: 540px) {
  .floating-contact-menu { right: 18px; bottom: 18px; }
  .floating-main-btn { width: 54px; height: 54px; }
  .floating-contact-items { bottom: 64px; right: 3px; }
}

/* ===== Bewerbungs-Button (Side-Tab) ===== */
.apply-tab {
  position: fixed; top: 50%; right: 0; transform: translateY(-50%);
  z-index: 190;
  writing-mode: vertical-rl;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1407; font-weight: 600; letter-spacing: 0.04em; font-size: 0.92rem;
  border: 0; cursor: pointer; padding: 16px 11px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 18px rgba(0,0,0,0.35);
  transition: padding 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.apply-tab:hover { padding-right: 16px; box-shadow: -6px 6px 24px rgba(201,162,75,0.45); }

/* ===== Bewerbungs-Modal ===== */
.apply-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.apply-modal.open { display: block; }
.apply-overlay { position: absolute; inset: 0; background: rgba(5,5,6,0.8); backdrop-filter: blur(4px); animation: applyFade 0.3s var(--ease); }
.apply-dialog {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 40px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: applyPop 0.35s var(--ease);
}
@keyframes applyFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes applyPop { from { opacity: 0; transform: translate(-50%, -46%) scale(0.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.apply-close { position: absolute; top: 12px; right: 18px; background: none; border: 0; color: var(--muted); font-size: 1.9rem; line-height: 1; cursor: pointer; transition: color 0.2s; }
.apply-close:hover { color: var(--gold); }
.apply-title { font-size: 1.8rem; margin: 6px 0 8px; }
.apply-sub { color: var(--muted); margin-bottom: 24px; font-size: 0.98rem; }

.goal-cards { display: flex; flex-direction: column; gap: 14px; }
.goal-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  padding: 22px; border-radius: 14px; cursor: pointer;
  background: var(--bg-2); border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.goal-card:hover { transform: translateY(-3px); border-color: var(--gold); background: linear-gradient(180deg, rgba(201,162,75,0.08), var(--bg-2)); }
.goal-emoji { font-size: 2rem; line-height: 1; }
.goal-name { font-family: "Playfair Display", serif; font-size: 1.25rem; color: var(--text); }
.goal-desc { color: var(--muted); font-size: 0.9rem; }

.apply-bar { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.apply-back { background: none; border: 0; color: var(--gold); cursor: pointer; font-size: 0.92rem; padding: 0; }
.apply-back:hover { opacity: 0.75; }
.goal-badge { background: var(--gold-soft); border: 1px solid var(--line); color: var(--gold); padding: 5px 14px; border-radius: 999px; font-size: 0.82rem; }

.apply-field { display: block; margin-bottom: 16px; }
.apply-label { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 7px; font-weight: 500; }
.apply-label .req { color: var(--gold); }
.apply-label .opt { color: var(--muted); font-weight: 400; font-size: 0.8rem; margin-left: 4px; }
.apply-field input, .apply-field textarea {
  width: 100%; background: var(--bg); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 12px 14px; color: var(--text); font: inherit; font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.apply-field input::placeholder, .apply-field textarea::placeholder { color: #6f6f77; }
.apply-field input:focus, .apply-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.apply-field textarea { resize: vertical; min-height: 96px; }

.apply-consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 20px; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.apply-consent input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.apply-consent a { color: var(--gold); text-decoration: underline; }
.apply-submit { width: 100%; }
.apply-msg { margin-top: 14px; text-align: center; font-size: 0.92rem; color: var(--gold); min-height: 1.2em; }
.apply-msg.error { color: #ff7a7a; }
.apply-recaptcha-note { margin-top: 12px; font-size: 0.72rem; color: var(--muted); text-align: center; }
.apply-recaptcha-note a { color: var(--muted); text-decoration: underline; }
.apply-success { text-align: center; padding: 16px 0; }
.success-check { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold); color: var(--gold); font-size: 2rem; margin-bottom: 10px; }

@media (max-width: 600px) {
  .apply-dialog { padding: 30px 20px; border-radius: 14px; }
  .apply-title { font-size: 1.5rem; }
  .apply-tab { font-size: 0.8rem; padding: 13px 9px; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 0 auto 0 0; width: min(78vw, 320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px; background: rgba(12,12,14,0.97); backdrop-filter: blur(14px); border-right: 1px solid var(--line); transform: translateX(-100%); transition: transform 0.4s var(--ease); }
  .nav.open { transform: none; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { align-items: flex-start; padding-top: 120px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(13,13,15,0.55), rgba(13,13,15,0.92) 70%, var(--bg)); }
  .hero-photo { background-position: center 20%; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-photo { max-width: 460px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; justify-items: center; text-align: center; }
  .trust-item { align-items: center; }
  .cards, .posts, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 80px 0; }
}
@media (max-width: 540px) {
  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .brand-logo { width: 150px; }
}
