/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #fdf5fb;
  --color-bg-alt: #111111;
  --color-bg-dark: #111111;
  --color-accent: #d22d4c;
  --color-accent-soft: #f3506e;
  --color-text: #000000;
  --color-text-muted: #666666;
  --color-card-border: #1f1f1f;
  --color-black: #000000;
  --color-step-bg: #111111;
  --container-width: 1200px;
  --radius-card: 0;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease-out;
    --color-white: #ffffff;
  --color-black: #000000;
}

body.theme-dark {
  --color-bg: #050509;
  --color-bg-alt: #111111;
  --color-text: #f5f5f5;
  --color-text-muted: #bbbbbb;
  --color-card-border: #333333;
  --color-step-bg: #000000;
}

html, body, * {
  font-family: 'Montserrat', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, select, textarea, button {
  font-family: 'Montserrat', sans-serif !important;
}

*, *::before, *::after {
  font-family: 'Montserrat', sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #151515;
}
body::-webkit-scrollbar-thumb {
  background: #444444;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Layout utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.section-title.small {
  font-size: 1.4rem;
}
.section-title.center {
  text-align: center;
}
.section-sub {
  max-width: 640px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Cards / blocks */
.card-block {
  background: var(--color-bg-alt);
  padding: 32px;
  border-radius: var(--radius-card);
  align-content: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000000;
  border-bottom: 1px solid #1f1f1f;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.brand-text {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #ffffff;
}

/* Nav */
.main-nav {
  display: flex;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-list a,
.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-list a:hover,
.nav-link:hover {
  color: var(--color-accent);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 220px;
  background: #000000;
  border: 1px solid #333333;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 40;
}
.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: #ffffff !important;
}
.dropdown-menu li a:hover {
  background: var(--color-accent);
}
.has-dropdown.open .dropdown-menu {
  display: flex;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.ghost-btn,
.link-more,
.btn-primary.fullwidth {
  font-family: inherit;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  padding: 14px 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn-primary:hover {
  background: var(--color-accent-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.btn-primary.fullwidth {
  width: 100%;
}

.btn-secondary {
  background: #000000;
  color: #ffffff;
  padding: 12px 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.btn-secondary:hover {
  background: #222222;
}

.ghost-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px 14px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ghost-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 20px;
  height: 2px;
  background: #ffffff;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #000000;
  border-bottom: 1px solid #1f1f1f;
}
.mobile-nav ul {
  list-style: none;
  padding: 14px 16px 16px;
}
.mobile-nav li + li {
  margin-top: 10px;
}
.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* HERO */
.hero-section {
  background: linear-gradient(180deg, var(--color-accent) 0%, #d22d4c 40%, #000000 90%, #000000 100%);
  color: #ffffff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding-bottom: 80px;
}
.hero-content h1 {
  font-size: 2.3rem;
  margin-bottom: 14px;
}
.hero-sub {
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 22px;
}
.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}
.hero-trust span {
  background: #00000000;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero media grid */
.hero-media {
  display: flex;
  align-items: stretch;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  width: 100%;
}
.media-cell {
  position: relative;
  overflow: hidden;
  background: #111111;
}
.media-cell.large {
  grid-row: span 2;
}
.media-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stat-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000000;
  height: 100%;
  color: #ffffff;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
}
.stat-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* Steps strip */
.steps-strip {
  background: #000000;
  color: #ffffff;
  padding-top: 0 !important;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}
.step-card {
  padding: 40px 32px;
  border-right: 1px solid #262626;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  text-align:center;
}
.step-card:last-child {
  border-right: none;
}
.step-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.step-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.95rem;
  color: #dddddd;
}

/* Peptid section */
.peptid-section {
  background: var(--color-bg);
}
.peptid-section .section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.peptid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.peptid-card {
  background: #000000;
  color: #ffffff;
  padding: 24px 22px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.peptid-card h3 {
  font-size: 1.1rem;
}
.peptid-card .tagline {
  font-size: 0.85rem;
  color: #f0f0f0;
}
.peptid-card .snippet {
  font-size: 0.9rem;
  color: #dddddd;
}
.link-more {
  margin-top: auto;
  align-self: flex-start;
  background: var(--color-accent);
  color: #ffffff;
  padding: 8px 14px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.link-more:hover {
  background: var(--color-accent-soft);
}

/* FAQ */
.faq-block {
  border-top: 1px solid #2a2a2a;
  padding-top: 26px;
}
.faq-list {
  margin-top: 16px;
}
.faq-item + .faq-item {
  border-top: 1px solid #2a2a2a;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 12px 0;
  background: none;
  border: none;
  color: var(--color-text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-icon {
  margin-left: 12px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-fast);
  color: var(--color-text-muted);
}
.faq-answer p {
  padding-bottom: 12px;
}

/* About */
.about-section {
  background: #000000;
  color: #ffffff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.about-section .card-block {
  background: #000000;
  border-color: #262626;
}
.bullet-list {
  list-style: none;
  margin-top: 14px;
}
.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--color-accent);
}
.about-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.testimonial-strip {
  background: #111111;
  padding: 16px 18px;
  margin-top: 12px;
}
.quote {
  font-size: 0.9rem;
}
.quote-name {
  font-size: 0.8rem;
  margin-top: 6px;
  color: #cccccc;
}

/* Flow section */
.flow-section {
  background: var(--color-bg);
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 30px 0 40px;
}
.flow-step {
  background: #000000;
  color: #ffffff;
  padding: 24px 22px;
  border-radius: 0;
}
.flow-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.flow-step h3 {
  margin-bottom: 6px;
}
.center {
  text-align: center;
}

/* Book section */
.book-section {
  background: #000000;
  color: #ffffff;
}
.book-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
}
.book-section .card-block {
  background: #000000;
  border-color: #262626;
}
.session-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 18px 0;
}
.session-card {
  border: 1px solid #262626;
  padding: 18px 18px 16px;
}
.session-card ul {
  margin-top: 8px;
  padding-left: 18px;
}
.session-card li {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.session-card.featured {
  border-color: var(--color-accent);
  background: #111111;
}
.price-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #b55366;
}
.trust-text {
  font-size: 0.9rem;
  color: #dddddd;
  margin-top: 10px;
}
.booking-widget {
  padding: 0;
  border: none;
  background: none;
}

/* Blog */
.blog-section {
  background: var(--color-bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.blog-card {
  background: #000000;
  color: #ffffff;
  padding: 24px;
  border-radius: 0;
}
.blog-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-soft);
  margin-bottom: 8px;
}
.blog-card h3 {
  margin-bottom: 8px;
}
.blog-card p {
  font-size: 0.9rem;
  color: #dddddd;
  margin-bottom: 10px;
}

/* Contact */
.contact-section {
  background: #000000;
  color: #ffffff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
}
.contact-list {
  list-style: none;
  margin: 12px 0;
}
.contact-list li {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact-list a {
  color: #ffffff;
  text-decoration: underline;
}
.contact-note {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
input[type="text"],
input[type="email"],
select,
textarea {
  background: #050505;
  border: 1px solid #333333;
  color: #ffffff;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9rem;
}
input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--color-accent);
}
textarea {
  resize: vertical;
}
.form-row-inline {
  flex-direction: row;
}
.checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
}
.checkbox input {
  margin-top: 3px;
}

/* Footer */
.site-footer {
  background: #000000;
  color: #bbbbbb;
  border-top: 1px solid #1f1f1f;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 16px;
  gap: 16px;
}
.footer-logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 4px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-links a {
  color: #bbbbbb;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-accent);
}

#scrollTopBtn {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 60;
}
#scrollTopBtn.show {
  display: flex;
  padding-bottom: 2px;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(17,17,17,0.98);
  color: var(--color-white);
  padding: 14px 16px;
  font-size: 14px;
  display: none;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.7);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 260px;
}

.cookie-banner-text h4 {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner-text p {
  margin: 0;
  line-height: 1.5;
  color: #e5e5e5;
}

.cookie-banner-links {
  margin-top: 4px;
  font-size: 12px;
}

.cookie-banner-links a {
  color: var(--color-accent-soft);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-btn {
  border-radius: 0;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

.cookie-btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent-soft);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.cookie-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
  border-color: transparent;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal {
  background: var(--color-bg-dark);
  color: var(--color-white);
  max-width: 520px;
  width: 100%;
  margin: 0 10px;
  border-radius: 0;
  padding: 18px 18px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.85);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-modal-close {
  border: none;
  background: transparent;
  color: #aaaaaa;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
}

.cookie-modal-body {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-category {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.09);
  padding: 8px 10px;
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.cookie-category-desc {
  font-size: 12px;
  color: #cccccc;
}

.cookie-toggle {
  position: relative;
  width: 38px;
  height: 18px;
  display: inline-block;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background-color: #383838;
  border-radius: 0;
  transition: background 0.2s ease-out;
}

.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 2px;
  top: 2px;
  background-color: var(--color-white);
  border-radius: 0;
  transition: transform 0.2s ease-out;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent));
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: #555;
  cursor: default;
}


.cookie-modal-footer {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}


@media (max-width: 640px) {
  .cookie-banner {
    padding: 8px 10px;
    font-size: 12px;
  }

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .cookie-banner-text {
    flex: 1 1 auto;
  }

  .cookie-banner-text h4 {
    font-size: 12px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cookie-banner-text p,
  .cookie-banner-links {
    display: none;
  }

  .cookie-banner-actions {
    flex-direction: row;
    justify-content: flex-end;
    gap: 6px;
  }

  .cookie-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .cookie-modal {
    margin: 0;
    width: 100%;
    max-width: none;
    max-height: 100vh;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}


/* RESPONSIVE – tablet & mobil */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  input[type="text"],
input[type="email"],
select,
textarea {
    text-align: center !important;
      }

      .faq-question {
      justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
  .about-grid,
  .book-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid,
  .flow-grid,
  .peptid-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-grid {
      display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px 16px !important;
    gap: 16px !important;
    text-align: center !important;
}

.footer-links {
    justify-content: center !important;
}
  .stat-block {
    padding: 20px !important;
    text-align: center !important;
}

    .section {
        text-align: center !important;
}
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-nav.open {
    display: block;
  }
  .section {
    padding: 60px 0;
  }
  .hero-grid {
    padding-bottom: 60px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-trust span {
    width: 100%;
  }
  .steps-grid,
  .flow-grid,
  .peptid-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .card-block {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 12px;
  }
  .section-title {
    font-size: 1.6rem;
  }
}
