:root {
  --color-bg: #0E0E10;
  --color-bg-alt: #1A1A1D;
  --color-gold: #E31E24;
  --color-text: #F2F0EB;
  --color-text-muted: #B8B6B0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-width: 1120px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }

p { margin: 0 0 var(--space-3); color: var(--color-text-muted); }

a { color: var(--color-gold); text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.eyebrow {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: var(--space-2);
}

.btn {
  display: inline-block;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 18px 32px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--gold {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 10px 28px rgba(227, 30, 36, 0.35);
}

.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(227, 30, 36, 0.45); }

.btn--small { padding: 12px 20px; font-size: 0.85rem; box-shadow: none; }
.btn--small:hover { transform: none; }
.btn--full { display: block; width: 100%; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  .btn { padding: 20px 44px; font-size: 1.05rem; }
  .btn--small { padding: 14px 24px; font-size: 0.95rem; }
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(6px);
  z-index: 10;
  border-bottom: 1px solid var(--color-bg-alt);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.logo { display: inline-flex; }
.logo img { display: block; height: 40px; width: auto; }

@media (min-width: 768px) {
  .logo img { height: 48px; }
}

.site-nav { display: none; gap: var(--space-3); }
.site-nav a { color: var(--color-text-muted); }

@media (min-width: 768px) {
  .site-nav { display: flex; }
}

.site-header__actions { display: flex; align-items: center; gap: var(--space-3); }

.site-header__social { display: none; gap: var(--space-2); }
.site-header__social a { color: var(--color-text-muted); display: inline-flex; }
.site-header__social a:hover { color: var(--color-gold); }

@media (min-width: 768px) {
  .site-header__social { display: flex; }
}

.hero {
  --color-bg: #0A0A0C;
  --color-bg-alt: #161618;
  --color-gold: #E31E24;
  --color-text: #FFFFFF;
  --color-text-muted: #B9B9BD;
  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-6) 0;
  text-align: left;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(227, 30, 36, 0.4), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
    linear-gradient(-55deg, rgba(255, 255, 255, 0.04) 15%, transparent 45%);
}

.hero__inner { position: relative; z-index: 1; }

.hero__title {
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  max-width: 760px;
}

.hero__accent { color: var(--color-gold); }

.hero__subtitle { max-width: 560px; margin: 0 0 var(--space-4); font-size: 1.05rem; }
.hero__subtitle strong { color: var(--color-gold); font-weight: 700; }
.hero__note { color: var(--color-text-muted); font-size: 0.85rem; margin-top: var(--space-2); }

@media (min-width: 1024px) {
  .hero__title { font-size: 3.5rem; }
}

.statement {
  background: #F7F7F8;
  color: #0A0A0C;
  padding: var(--space-6) 0;
}

.statement__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-3);
}

.statement__bar {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  background: #E31E24;
}

.statement__text {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  color: #0A0A0C;
  font-size: 1.75rem;
}

.statement__highlight { font-weight: 800; }
.statement__highlight--fill { background: #E31E24; color: #fff; padding: 4px 14px; border-radius: 2px; }
.statement__highlight--text { color: #E31E24; }

.statement__highlight--circle {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}

.statement__circle {
  position: absolute;
  top: -28%;
  left: -10%;
  width: 120%;
  height: 156%;
  pointer-events: none;
}

@media (min-width: 768px) {
  .statement__text { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .statement__text { font-size: 3rem; }
}

@media (min-width: 1440px) {
  .statement__text { font-size: 3.5rem; }
}

.founder {
  --color-bg: #0A0A0C;
  --color-bg-alt: #161618;
  --color-gold: #E31E24;
  --color-text: #FFFFFF;
  --color-text-muted: #B9B9BD;
  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-6) 0;
}

.founder__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 95% 45%, rgba(227, 30, 36, 0.35), transparent 50%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 35%);
}

.founder__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.founder__photo img {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.founder__mark {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}

.founder__divider {
  border: none;
  border-top: 1px solid var(--color-gold);
  width: 64px;
  margin: var(--space-3) 0;
}

.founder__content strong { color: var(--color-gold); font-weight: 700; }

.founder__name {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text);
  margin: var(--space-3) 0 4px;
}

.founder__name-line { display: inline-block; width: 48px; height: 2px; background: var(--color-gold); }

.founder__role { color: var(--color-text-muted); margin-bottom: var(--space-3); }

@media (min-width: 768px) {
  .founder__inner { flex-direction: row; align-items: center; }
  .founder__photo { order: 1; flex: 0 0 360px; }
  .founder__content { flex: 1; order: 0; }
}

.growth {
  background: #F7F7F8;
  color: #0A0A0C;
  padding: var(--space-6) 0;
}

.growth__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.growth__decor {
  display: none;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.growth__dots {
  width: 48px;
  height: 48px;
  background-image: radial-gradient(circle, #E31E24 2px, transparent 2.5px);
  background-size: 16px 16px;
}

.growth__bar {
  width: 4px;
  align-self: stretch;
  min-height: 150px;
  background: #E31E24;
}

.growth__text {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: #0A0A0C;
  font-size: 2rem;
}

.growth__highlight { font-weight: 800; }
.growth__highlight--fill { background: #E31E24; color: #fff; padding: 4px 14px; border-radius: 2px; }
.growth__highlight--text { color: #E31E24; }
.growth__highlight--dark { background: #16161A; color: #fff; padding: 4px 14px; border-radius: 2px; }

@media (min-width: 768px) {
  .growth__decor { display: flex; }
  .growth__text { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .growth__text { font-size: 3.5rem; }
}

@media (min-width: 1440px) {
  .growth__text { font-size: 4rem; }
}

.includes {
  --color-bg: #0A0A0C;
  --color-bg-alt: #161618;
  --color-gold: #E31E24;
  --color-text: #FFFFFF;
  --color-text-muted: #B9B9BD;
  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-5) 0 var(--space-4);
}

.includes__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(227, 30, 36, 0.4), transparent 45%),
    radial-gradient(circle at 6% 88%, rgba(227, 30, 36, 0.4), transparent 45%);
}

.includes__inner { position: relative; z-index: 1; }

.includes__badge {
  display: inline-block;
  margin: 0 0 var(--space-3) var(--space-3);
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 18px 32px;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(227, 30, 36, 0.35);
}

.includes__carousel { position: relative; }

.includes__track {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
  cursor: grab;
}

.includes__track::-webkit-scrollbar { display: none; }
.includes__track--dragging { cursor: grabbing; scroll-snap-type: none; }

.includes__slide {
  flex: 0 0 auto;
  width: 62vw;
  aspect-ratio: 2 / 3;
  scroll-snap-align: start;
}

.includes__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.includes__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: var(--color-gold);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.includes__arrow--prev { left: var(--space-3); }
.includes__arrow--next { right: var(--space-3); }
.includes__arrow[hidden] { display: none; }

.includes__cta {
  display: block;
  margin: var(--space-3) auto 0;
}

@media (min-width: 768px) {
  .includes { padding: var(--space-6) 0; }

  .includes__inner {
    max-width: var(--container-width);
    margin: 0 auto;
  }

  .includes__slide { width: 320px; }

  .includes__badge { padding: 20px 44px; font-size: 1.05rem; }
}

.pricing {
  --color-gold: #E31E24;
  padding: var(--space-6) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  background: #FFFFFF;
  color: #0A0A0C;
  border-radius: 8px;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
}

.pricing-card__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 2rem;
  margin: 0 0 var(--space-3);
}

.pricing-card__subtitle {
  font-size: 0.95rem;
  margin: 0 0 var(--space-3);
}

.pricing-card__subtitle strong { font-weight: 700; }

.pricing-card__list {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.pricing-card__badge {
  flex-shrink: 0;
  background: var(--color-gold);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  min-width: 36px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.pricing-card__cta {
  color: #fff;
  text-transform: uppercase;
  margin-top: auto;
}

.site-footer { border-top: 1px solid var(--color-bg-alt); padding: var(--space-4) 0; }
.site-footer__inner { text-align: center; }
.site-footer__copy { font-size: 0.8rem; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100px;
  padding: var(--space-2) var(--space-3);
  background: var(--color-bg);
  border-top: 1px solid var(--color-gold);
  transition: bottom 0.25s ease;
  z-index: 20;
}

.sticky-cta--visible { bottom: 0; }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

.contact-fab {
  position: fixed;
  right: var(--space-2);
  bottom: 104px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.contact-fab__btn:hover,
.contact-fab__btn:focus-visible { transform: scale(1.08); }

.contact-fab__btn svg { width: 30px; height: 30px; }

.contact-fab__btn--whatsapp { background: #25D366; }
.contact-fab__btn--telegram { background: #26A5E4; }
.contact-fab__btn--max { background: linear-gradient(135deg, #471AFF, #9500FF); }

body.no-scroll .contact-fab { display: none; }

@media (min-width: 768px) {
  .contact-fab { right: var(--space-3); bottom: var(--space-3); }
  .contact-fab__btn { width: 60px; height: 60px; }
  .contact-fab__btn svg { width: 32px; height: 32px; }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 30;
}

.modal--open { display: block; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal__dialog {
  position: relative;
  max-width: 420px;
  margin: var(--space-5) auto;
  background: var(--color-bg-alt);
  padding: var(--space-4);
  border-radius: 4px;
  border: 1px solid rgba(227, 30, 36, 0.3);
}

.modal__close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

#applyForm label { display: block; margin-top: var(--space-2); font-size: 0.9rem; }
#applyForm input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  background: var(--color-bg);
  border: 1px solid rgba(227, 30, 36, 0.3);
  color: var(--color-text);
  border-radius: 2px;
}

.form-website { position: absolute; left: -9999px; }
.form-consent { display: flex; gap: 8px; align-items: flex-start; font-size: 0.85rem; color: var(--color-text-muted); }
.form-error { display: block; color: #d9534f; font-size: 0.8rem; min-height: 1em; }
.form-status { margin-top: var(--space-2); font-size: 0.9rem; }

body.no-scroll { overflow: hidden; }
