/* ===== Fonts ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/fonts/space-grotesk/sg-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/fonts/space-grotesk/sg-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --bg: #0a0a0a;
  --bg-elev: #111118;
  --bg-card: #131320;
  --border: #1e1e2e;
  --text: #ffffff;
  --text-gray: #a1a1aa;
  --text-dim: #71717a;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dim: rgba(124, 58, 237, 0.15);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.15);
  --amber: #f59e0b;
  --orange: #f97316;
  --radius: 12px;
  --max-width: 1140px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ===== Particle Canvas ===== */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== Header ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
#site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 10, 0.85);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.wordmark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.desktop-nav a:hover { color: var(--text); }

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.header-phone:hover { opacity: 0.8; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  margin: 0 auto;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 320px;
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-phone {
  color: var(--green);
  font-weight: 600;
  font-size: 18px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-content { width: 100%; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 900px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 720px;
  margin-bottom: 48px;
}

/* ===== Checker ===== */
.checker {
  max-width: 620px;
}

.checker-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#checker-input {
  flex: 1;
  padding: 16px 20px;
  background: var(--bg-elev);
  border: 1px solid #a1a1aa;
  border-radius: var(--radius);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#checker-input::placeholder { color: #ffffff; }
#checker-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
}

#checker-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
#checker-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: 0 0 0 0 #f97316;
  transition: box-shadow 0.4s ease;
}
#checker-btn:hover {
  background: #ea670c;
  transform: translateY(-1px);
}
#checker-btn:hover::before {
  box-shadow: 0 0 24px 4px rgba(249, 115, 22, 0.5);
}
#checker-btn:active { transform: translateY(0); }
#checker-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-arrow {
  transition: transform 0.2s ease;
}
#checker-btn:hover .btn-arrow { transform: translateX(4px); }

.checker-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checker-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.checker-btn-secondary:hover {
  background: #ea670c;
  transform: translateY(-1px);
}

.checker-btn-secondary:active {
  transform: translateY(0);
}

.checker-meta {
  margin-top: 16px;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: #22c55e;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.cta-button:hover {
  background: #16a34a;
  transform: translateY(-2px);
}
.cta-button:active { transform: translateY(0); }

.cta-checker {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.checker-domains {
  margin: 10px 0 0 0;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}

.methodology-link {
  display: inline-block;
  margin-top: 16px;
  color: #22c55e;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.methodology-link:hover {
  color: #16a34a;
  opacity: 0.85;
}

.pre-footer-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

/* ===== Checker Result ===== */
.checker-result {
  width: 100%;
}
.checker-result[hidden], .result-loading[hidden], .result-card[hidden] { display: none; }

.result-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: #ffffff;
  font-size: 16px;
}
.loading-message { display: inline-flex; align-items: baseline; }
.loading-dots { display: inline-flex; width: 22px; overflow: hidden; }
.loading-dots span { animation: dotFade 1.2s infinite ease-in-out; opacity: 0.2; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotFade {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

.result-card {
  background: #0a0a0a;
  border: 2px solid #f97316;
  border-radius: 12px;
  padding: 32px;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.result-score {
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.result-message {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}
.cta-result {
  display: flex;
  width: 100%;
  margin-top: 24px;
}
.result-card.cat-green { border-color: #22c55e; box-shadow: 0 0 20px rgba(34,197,94,0.4); }
.result-card.cat-green .result-message { color: #22c55e; }
.result-card.cat-amber { border-color: #f59e0b; box-shadow: 0 0 20px rgba(245,158,11,0.4); }
.result-card.cat-amber .result-message { color: #f59e0b; }
.result-card.cat-orange { border-color: #f97316; box-shadow: 0 0 20px rgba(249,115,22,0.4); }
.result-card.cat-orange .result-message { color: #f97316; }
.result-card.cat-purple { border-color: #7c3aed; box-shadow: 0 0 20px rgba(124,58,237,0.4); }
.result-card.cat-purple .result-message { color: #7c3aed; }

.result-reset {
  display: block;
  margin: 12px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: #a1a1aa;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.result-reset:hover { color: #ffffff; }

/* ===== Lead Form ===== */
.lead-form-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.lead-form-wrap[hidden] { display: none; }

.lead-form-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-form[hidden] { display: none; }

.lead-form input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elev);
  border: 1px solid #a1a1aa;
  border-radius: var(--radius);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-form input::placeholder { color: #a1a1aa; }
.lead-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-gray);
}
.lead-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--purple);
  cursor: pointer;
}
.lead-consent a {
  color: var(--purple-light);
  text-decoration: underline;
}
.lead-consent a:hover { color: var(--text); }

.lead-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.15s ease, background 0.2s ease;
}
.lead-submit-btn:hover { background: #ea670c; transform: translateY(-1px); }
.lead-submit-btn:active { transform: translateY(0); }
.lead-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.lead-form-success,
.lead-form-error {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 0 0;
  margin: 0;
}
.lead-form-success[hidden], .lead-form-error[hidden] { display: none; }
.lead-form-success { color: #22c55e; font-weight: 600; }
.lead-form-error { color: #ef4444; }
.lead-form-error a { color: #22c55e; text-decoration: underline; }

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 640px;
  margin-bottom: 48px;
}

.methodology-subtitle {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 16px;
}
.methodology-list {
  max-width: 640px;
  margin: 0 0 32px 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.methodology-list li {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
}
.card-number {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.card h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Articles ===== */
.articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.article-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.article-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
}
.modszertan-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--purple-dim);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--purple-light);
  font-style: italic;
}

.article-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--purple-dim);
  color: var(--purple-light);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.article-item h4 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.article-item p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.article-date {
  font-size: 13px;
  color: var(--text-dim);
}
.article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.article-link .article-item {
  height: 100%;
}

/* ===== Article Page ===== */
.article-body {
  max-width: 760px;
}
.article-body .article-tag {
  margin-bottom: 18px;
}
.article-body .section-title {
  margin-bottom: 8px;
}
.article-body .article-date {
  display: block;
  margin-bottom: 32px;
}
.article-body p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.article-body p strong {
  color: var(--text);
  font-weight: 600;
}
.article-body h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 16px;
}
.article-source {
  font-size: 14px !important;
  color: var(--text-dim) !important;
  padding-left: 16px;
  border-left: 2px solid var(--border);
  margin-bottom: 24px !important;
}
.article-source a {
  color: var(--purple-light);
  text-decoration: none;
}
.article-source a:hover {
  text-decoration: underline;
}
.back-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 15px;
  color: var(--purple-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: var(--text);
}

/* ===== Services ===== */
.service-cards {
  grid-template-columns: 1fr;
}
.service-card {
  display: flex;
  flex-direction: column;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
}
.service-price {
  margin-top: auto;
  display: inline-block;
  padding: 8px 16px;
  background: var(--purple-dim);
  color: var(--purple-light);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Contact ===== */
.section-contact { padding-bottom: 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-item a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}
.contact-item a:hover { color: var(--purple-light); }
.contact-item span {
  font-size: 18px;
  color: var(--text-gray);
}

/* ===== Map Container ===== */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  border: 2px solid #f97316;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* ===== Footer ===== */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}
.footer-address { font-size: 14px; color: var(--text-gray); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  font-size: 14px;
  color: var(--text-gray);
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--text); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--text); }
.footer-copy {
  max-width: var(--max-width);
  margin: 32px auto 0;
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .result-card {
    padding: 24px;
    text-align: center;
  }
  .result-score,
  .result-message { text-align: center; }
}

@media (min-width: 768px) {
  .checker-form {
    flex-direction: row;
  }
  .checker-buttons {
    flex-direction: row;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .articles {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .desktop-nav { display: flex; }
  .header-phone { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
}
.cookie-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  max-width: 600px;
}
.cookie-text a {
  color: var(--purple-light);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-accept {
  padding: 10px 24px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cookie-accept:hover {
  background: #16a34a;
  transform: translateY(-1px);
}
.cookie-reject {
  padding: 10px 24px;
  background: transparent;
  color: var(--text-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cookie-reject:hover {
  border-color: var(--text-gray);
  color: var(--text);
}

/* ===== Responsive: Cookie Banner ===== */
@media (max-width: 767px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-buttons {
    flex-direction: column;
  }
  .cookie-accept, .cookie-reject {
    width: 100%;
    padding: 14px;
    text-align: center;
  }
}
