* {
  box-sizing: border-box;
}

:root {
  --bg: #05060a;
  --bg-2: #08090e;
  --text: #ffffff;
  --muted: #b7bdc9;
  --muted-2: #7e8796;
  --pink: #ff2c7a;
  --pink-soft: rgba(255, 44, 122, 0.2);
  --teal: #1fd6c3;
  --teal-soft: rgba(31, 214, 195, 0.18);
  --card: rgba(10, 12, 18, 0.6);
  --card-strong: rgba(12, 14, 22, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --shadow-pink: 0 0 40px rgba(255, 44, 122, 0.18);
  --shadow-teal: 0 0 40px rgba(31, 214, 195, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(180deg, #05060a 0%, #07080d 35%, #05060a 100%);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.65), transparent 95%);
  opacity: 0.16;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.42;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
  top: -8vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(255, 44, 122, 0.26), transparent 70%);
}

.orb-2 {
  left: -14vw;
  top: 28vh;
  background: radial-gradient(circle, rgba(31, 214, 195, 0.2), transparent 70%);
  animation-delay: 2s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0, 24px, 0) scale(1.04); }
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.glass {
  background: linear-gradient(180deg, rgba(16, 18, 26, 0.78), rgba(9, 10, 15, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--shadow-pink), var(--shadow-teal);
  backdrop-filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 11, 0.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 40%), linear-gradient(135deg, var(--teal), var(--pink));
  box-shadow: var(--shadow-pink);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text em {
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.header-btn,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-btn {
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 44, 122, 0.95), rgba(255, 44, 122, 0.72));
  box-shadow: var(--shadow-pink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-call {
  background: rgba(13, 16, 24, 0.9);
  border: 1px solid rgba(31, 214, 195, 0.38);
  box-shadow: 0 12px 28px rgba(31, 214, 195, 0.12);
}

.btn:hover,
.header-btn:hover,
.feature-card:hover,
.pricing-card:hover,
.step-card:hover,
.micro-card:hover,
.floating-card:hover {
  transform: translateY(-4px);
}

.btn-primary {
  color: #06070a;
  background: linear-gradient(135deg, var(--teal), #8ff3e8);
  box-shadow: var(--shadow-teal);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.full-width {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--teal);
  border: 1px solid rgba(31, 214, 195, 0.24);
  background: rgba(31, 214, 195, 0.06);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  max-width: 760px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 760px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.lead {
  max-width: 640px;
  margin-bottom: 10px;
  font-size: clamp(19px, 2.1vw, 28px);
  color: var(--text);
}

.section-note,
.hero-copy p,
.about-copy p,
.calculator-copy p,
.contact-card p,
.footer-brand p,
.policy-intro {
  color: var(--muted);
}

.hero {
  padding-top: 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat-pill {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-pill strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--pink);
}

.stat-pill span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-image-card {
  position: absolute;
  inset: 0 40px 40px 0;
  overflow: hidden;
  border-radius: 32px;
}

.hero-image-card img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(280px, 78%);
  padding: 22px 22px 18px;
  border-radius: 24px;
}

.mini-label,
.price-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 700;
}

.floating-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.floating-card li {
  font-size: 22px;
  font-weight: 700;
}

.about-grid,
.partner-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border-radius: 32px;
}

.image-frame.tall {
  height: 670px;
}

.benefit-list,
.service-list {
  display: grid;
  gap: 14px;
}

.benefit-list div,
.service-list div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.benefit-list b,
.service-list b {
  color: var(--teal);
}

.benefit-list span,
.service-list span {
  color: var(--muted);
}

.micro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.micro-card {
  padding: 18px;
  border-radius: 20px;
}

.micro-card strong {
  display: block;
  font-size: 22px;
  color: var(--pink);
  margin-bottom: 8px;
}

.micro-card span {
  color: var(--muted);
  font-size: 14px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.feature-grid,
.pricing-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.pricing-card,
.step-card,
.policy-wrap,
.contact-card,
.service-list,
.partner-grid,
.rate-box,
.calculator-form {
  border-radius: 28px;
}

.feature-card,
.pricing-card,
.step-card {
  padding: 28px;
}

.feature-card p,
.pricing-card p,
.step-card p,
.partner-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-card a {
  color: var(--teal);
  text-decoration: none;
}

.feature-card a:hover {
  color: var(--text);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  padding: 30px;
}

.pricing-card h3 {
  margin-bottom: 14px;
}

.pricing-card strong {
  display: block;
  margin-top: 28px;
  font-size: 28px;
  color: var(--pink);
}

.pricing-card.featured {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 44, 122, 0.22), transparent 40%),
    radial-gradient(circle at 18% 88%, rgba(31, 214, 195, 0.14), transparent 42%);
  pointer-events: none;
}

.pricing-card.featured {
  border-color: rgba(31, 214, 195, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 0 54px rgba(31, 214, 195, 0.2), 0 0 54px rgba(255, 44, 122, 0.18);
}

.pricing-card.featured > * {
  position: relative;
  z-index: 1;
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 16px;
  padding: 0 12px;
  border-radius: 999px;
  color: #061014;
  background: linear-gradient(135deg, var(--teal), #8ff3e8);
  font-size: 13px;
  font-weight: 900;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
}

.price-row .old-price {
  color: var(--muted-2);
  font-size: 20px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-row .current-price {
  margin-top: 0;
  color: var(--teal);
}

.new-client-discount {
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: 24px;
  color: var(--text);
  text-align: center;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  background:
    linear-gradient(135deg, rgba(31, 214, 195, 0.2), rgba(255, 44, 122, 0.16)),
    linear-gradient(180deg, rgba(16, 18, 26, 0.9), rgba(9, 10, 15, 0.86));
  border: 1px solid rgba(31, 214, 195, 0.24);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: stretch;
}

.rate-box {
  margin-top: 24px;
  padding: 22px 24px;
}

.rate-box ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.calculator-form {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.calculator-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.calculator-form input,
.calculator-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  background: #0d1018;
  outline: none;
  appearance: none;
}

.calculator-form input:focus,
.calculator-form select:focus {
  border-color: rgba(31, 214, 195, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 214, 195, 0.08);
}

.calculator-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%), linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position: calc(100% - 22px) 24px, calc(100% - 16px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.calc-result {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 44, 122, 0.12), rgba(31, 214, 195, 0.12));
}

.calc-result span,
.calc-result small,
.policy-note,
.policy-content p,
.policy-content li {
  color: var(--muted);
}

.calc-result strong {
  display: block;
  margin: 10px 0 6px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.policy-note {
  margin: 4px 0 0;
  font-size: 13px;
}

.policy-note a,
.footer-col a:hover,
.policy-content a {
  color: var(--teal);
}

.service-list {
  padding: 28px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card span {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 12px;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.partner-grid {
  padding: 34px;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.partner-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card {
  padding: 40px;
}

.site-footer {
  padding: 30px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 28px;
  padding-top: 10px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 14px;
}

.footer-col h4 {
  margin-bottom: 14px;
  color: var(--text);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
}

.policy-page .section {
  padding-top: 54px;
}

.policy-wrap {
  padding: 38px;
}

.policy-title {
  font-size: clamp(34px, 4vw, 62px);
  max-width: 900px;
}

.policy-content {
  margin-top: 28px;
}

.policy-content h2 {
  font-size: 28px;
  margin: 36px 0 14px;
}

.policy-content ul {
  margin: 0 0 0 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .calculator-grid,
  .partner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-image-card {
    inset: 0 0 74px 0;
  }

  .floating-card {
    left: 24px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 74px;
  }

  .header-btn {
    display: none;
  }

  .header-actions {
    display: inline-flex;
  }

  .header-actions .header-call {
    display: inline-flex;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 12px;
  }

  .stats-row,
  .micro-stats,
  .feature-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit-list div,
  .service-list div {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-card {
    inset: 0 0 86px 0;
  }

  .floating-card {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .contact-card,
  .policy-wrap,
  .calculator-form,
  .partner-grid,
  .service-list {
    padding: 24px;
  }
}


/* v4: real logo, real photos and improved adaptive layout */
.logo {
  min-width: 0;
}

.logo-img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(31, 214, 195, 0.24)) drop-shadow(0 0 18px rgba(255, 44, 122, 0.18));
}

.footer-brand .logo-img {
  width: 82px;
  height: 82px;
}


.header-inner .logo {
  flex-shrink: 0;
}

.logo-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(31, 214, 195, 0.12);
}

.logo-title-sep {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  min-height: calc(100vh - 82px);
}

.hero-image-card img {
  object-position: center;
}

.hero-image-card::after,
.image-frame::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.36)),
    radial-gradient(circle at 18% 18%, rgba(31, 214, 195, 0.12), transparent 38%),
    radial-gradient(circle at 82% 24%, rgba(255, 44, 122, 0.12), transparent 36%);
}

.image-frame,
.hero-image-card,
.gallery-item {
  position: relative;
}

.gallery-section {
  padding-top: 70px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-template-rows: 280px 280px;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-pink), var(--shadow-teal);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: contrast(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(5, 6, 10, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.nav {
  gap: 18px;
}

@media (max-width: 1080px) {
  .logo-img {
    width: 64px;
    height: 64px;
  }

  .hero {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 260px 260px;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .header-inner {
    min-height: 78px;
  }
}

@media (max-width: 760px) {
  .logo-img {
    width: 58px;
    height: 58px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 70px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .stats-row {
    gap: 10px;
  }

  .stat-pill {
    padding: 14px;
  }

  .stat-pill strong {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-image-card {
    inset: 0 0 120px 0;
    border-radius: 24px;
  }

  .hero-image-card img {
    object-position: center;
  }

  .floating-card {
    bottom: 18px;
  }

  .image-frame.tall {
    height: 520px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.large {
    min-height: 380px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    min-height: 270px;
  }

  .footer-grid {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 19px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-card {
    inset: 0 0 112px 0;
  }

  .floating-card li {
    font-size: 19px;
  }

  .gallery-item,
  .gallery-item.large {
    min-height: 340px;
  }

  .image-frame.tall {
    height: 460px;
  }

  .logo-img {
    width: 54px;
    height: 54px;
  }
}


/* v5: hero event card alignment and extra tobacco photo */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: auto;
}

.hero-image-card {
  position: relative;
  inset: auto;
  height: 520px;
  width: 100%;
}

.floating-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
}

.floating-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.floating-card li {
  font-size: 20px;
}

.gallery-grid {
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-auto-rows: 260px;
  grid-template-rows: none;
}

.gallery-item.large {
  grid-row: span 2;
}

@media (max-width: 1080px) {
  .hero-image-card {
    height: 480px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
    grid-template-rows: none;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .hero-visual {
    min-height: auto;
  }

  .hero-image-card {
    height: 430px;
    inset: auto;
  }

  .floating-card {
    left: auto;
    right: auto;
    bottom: auto;
  }

  .floating-card ul {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    min-height: 330px;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .hero-image-card {
    height: 360px;
  }

  .gallery-item,
  .gallery-item.large {
    min-height: 300px;
  }
}


/* v6: new hero photo and clean gallery without captions */
.hero-image-card img {
  object-position: center center;
}

.gallery-item figcaption {
  display: none !important;
}


/* v7: legal-risk reduction notes */
.age-note,
.legal-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.age-note {
  max-width: 660px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.legal-note {
  text-align: center;
}

.legal-section {
  padding-top: 26px;
}

.legal-box {
  padding: 24px;
  color: var(--muted);
}

.legal-box b {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-box p {
  margin: 0;
  line-height: 1.7;
}


/* v8: age confirmation gate */
body.age-lock {
  overflow: hidden;
}

body.age-lock > *:not(.age-gate) {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 214, 195, 0.18), transparent 34%),
    radial-gradient(circle at 80% 25%, rgba(255, 44, 122, 0.18), transparent 34%),
    rgba(3, 4, 8, 0.88);
  backdrop-filter: blur(18px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 44, 122, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(31, 214, 195, 0.1), transparent 42%);
}

.age-gate__card {
  position: relative;
  width: min(100%, 520px);
  padding: 38px;
  border-radius: 34px;
  color: var(--text);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(15, 17, 26, 0.96), rgba(6, 7, 12, 0.96)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 28px 90px rgba(0,0,0,0.62),
    0 0 44px rgba(31, 214, 195, 0.18),
    0 0 44px rgba(255, 44, 122, 0.14);
}

.age-gate__badge {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(135deg, var(--pink), var(--teal));
  box-shadow:
    0 0 32px rgba(255, 44, 122, 0.35),
    0 0 32px rgba(31, 214, 195, 0.28);
}

.age-gate__card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.02;
}

.age-gate__card p {
  margin: 0 auto;
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  gap: 12px;
  margin-top: 28px;
}

.age-gate__btn {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.age-gate__btn:hover {
  transform: translateY(-2px);
}

.age-gate__btn--yes {
  color: #071014;
  background: linear-gradient(135deg, var(--teal), #ffffff);
  box-shadow: 0 0 28px rgba(31, 214, 195, 0.24);
}

.age-gate__btn--no {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.age-gate__note {
  margin-top: 18px !important;
  font-size: 13px !important;
  opacity: 0.72;
}

.age-gate__denied {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 44, 122, 0.12);
  border: 1px solid rgba(255, 44, 122, 0.22);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .age-gate {
    padding: 16px;
  }

  .age-gate__card {
    padding: 28px 18px;
    border-radius: 28px;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }

  .age-gate__badge {
    width: 72px;
    height: 72px;
    font-size: 23px;
  }
}


/* v11: age gate visibility fix */
body.age-lock {
  overflow: hidden !important;
}

body.age-lock > *:not(.age-gate) {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.age-gate.is-hidden {
  display: none !important;
}




/* v16: redesigned portfolio events block */
.portfolio-events-section {
  padding-top: 84px;
  padding-bottom: 92px;
}

.portfolio-events-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.portfolio-events-head h2 {
  margin: 10px 0 12px;
}

.portfolio-events-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.portfolio-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: start;
  align-items: stretch;
}

.portfolio-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.portfolio-event-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.portfolio-event-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #080d18;
  transition: opacity .2s ease;
}

.portfolio-event-topbar {
  position: absolute;
  inset: 16px 16px auto 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.portfolio-event-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #d7b44b;
  color: #111;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(215, 180, 75, 0.22);
}

.portfolio-event-counter {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(28, 29, 34, 0.82);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.portfolio-event-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
  color: #1c1d22;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  z-index: 2;
  transition: transform .18s ease, background .18s ease;
}

.portfolio-event-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
}

.portfolio-event-arrow--prev {
  left: 14px;
}

.portfolio-event-arrow--next {
  right: 14px;
}

.portfolio-event-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(28, 29, 34, 0.52);
  backdrop-filter: blur(8px);
}

.portfolio-event-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.44);
  padding: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, width .18s ease;
}

.portfolio-event-dot.is-active {
  width: 22px;
  background: #fff;
}

.portfolio-event-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-height: 250px;
  padding: 24px 26px 26px;
  background: rgba(248, 248, 248, 0.95);
  color: #131417;
}

.portfolio-event-content h3 {
  margin: 0 0 14px;
  min-height: 3.3em;
  color: #131417;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.portfolio-event-stats {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.portfolio-event-stat {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: baseline;
}

.portfolio-event-stat-number {
  color: #d7b44b;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

.portfolio-event-stat-text {
  color: #676d77;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .portfolio-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .portfolio-events-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .portfolio-event-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-events-head p {
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .portfolio-events-head {
    margin-bottom: 24px;
  }

  .portfolio-event-card {
    border-radius: 24px;
  }

  .portfolio-event-media {
    aspect-ratio: 1 / 1;
  }

  .portfolio-event-topbar {
    inset: 14px 14px auto 14px;
  }

  .portfolio-event-pill {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .portfolio-event-counter {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .portfolio-event-arrow {
    width: 46px;
    height: 46px;
    font-size: 25px;
  }

  .portfolio-event-content {
    padding: 20px 22px 22px;
  }

  .portfolio-event-content {
    min-height: 222px;
  }

  .portfolio-event-content h3 {
    min-height: auto;
    font-size: 24px;
    margin-bottom: 14px;
  }

  .portfolio-event-stat {
    grid-template-columns: 72px 1fr;
  }

  .portfolio-event-stat-number,
  .portfolio-event-stat-text {
    font-size: 16px;
  }
}


/* v23: equal title height in portfolio cards */
.portfolio-event-content h3 {
  min-height: 3.25em;
  display: flex;
  align-items: flex-start;
}

.portfolio-event-stats {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .portfolio-event-content h3 {
    min-height: 3.25em;
  }
}

@media (max-width: 900px) {
  .portfolio-event-content h3 {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .portfolio-event-content h3 {
    min-height: auto;
  }
}


/* v24: unified text alignment inside portfolio cards */
.portfolio-event-content {
  display: grid;
  grid-template-rows: minmax(2.2em, auto) auto;
  align-content: start;
  row-gap: 14px;
}

.portfolio-event-content h3 {
  margin: 0;
  min-height: 2.2em;
  display: flex;
  align-items: flex-start;
}

.portfolio-event-stats {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .portfolio-event-content {
    grid-template-rows: minmax(2.2em, auto) auto;
  }

  .portfolio-event-content h3 {
    min-height: 2.2em;
  }
}

@media (max-width: 900px) {
  .portfolio-event-content {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }

  .portfolio-event-content h3 {
    min-height: auto;
    margin-bottom: 14px;
  }
}


@media (max-width: 1080px) {
  .logo-title {
    font-size: 23px;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .logo-title {
    font-size: 18px;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .logo-title {
    display: none;
  }
}


/* v35: header brand name visibility */
.site-header .header-inner {
  gap: 28px;
}

.site-header .logo {
  gap: 16px;
  min-width: max-content;
}

.site-header .logo-img {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
}

.logo-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.logo-title-sep {
  color: rgba(255,255,255,0.48);
}

/* v35: contact section like reference */
.contact-section {
  padding-top: 36px;
}

.contact-card {
  padding: 38px 40px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.97), rgba(5, 7, 14, 0.96));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 60px rgba(0,0,0,0.42), 0 0 48px rgba(31, 214, 195, 0.10), 0 0 60px rgba(255, 44, 122, 0.10);
}

.contact-card .eyebrow {
  margin-bottom: 18px;
}

.contact-card h2 {
  max-width: 920px;
  font-size: clamp(42px, 5.6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.contact-card p {
  max-width: 980px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-card .btn {
  min-height: 54px;
  border-radius: 18px;
  padding: 0 24px;
  font-size: 16px;
}

.contact-card .btn-primary {
  color: #041015;
}

.contact-card .btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  box-shadow: none;
}

.contact-card .btn-secondary:hover {
  background: rgba(255,255,255,0.10);
}

/* v35: legal notice text */
.legal-section {
  padding-top: 14px;
}

.legal-box {
  padding: 24px 24px 26px;
}

.legal-box b {
  margin-bottom: 12px;
  font-size: 15px;
}

.legal-box p {
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .site-header .logo-img {
    width: 68px;
    height: 68px;
  }

  .logo-title {
    font-size: 23px;
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .contact-card {
    padding: 32px 26px;
  }

  .contact-card h2 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .contact-card p {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .site-header .header-inner {
    gap: 14px;
  }

  .site-header .logo-img {
    width: 60px;
    height: 60px;
  }

  .logo-title {
    font-size: 18px;
    gap: 6px;
  }

  .contact-card {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .contact-card h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-card .btn {
    width: 100%;
  }
}


/* v36: footer brand name beside logo */
.footer-logo {
  gap: 16px;
  align-items: center;
}

.footer-logo-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.footer-brand .logo-img {
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .footer-logo-title {
    font-size: 20px;
  }
}

@media (max-width: 460px) {
  .footer-logo {
    align-items: flex-start;
  }

  .footer-logo-title {
    font-size: 18px;
    line-height: 1.15;
    white-space: normal;
  }
}


/* v37: footer navigation shift and copyright */
@media (min-width: 1224px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(500px, 1.45fr) minmax(160px, 0.7fr) minmax(150px, 0.65fr) minmax(170px, 0.75fr);
    column-gap: 42px;
  }

  .site-footer .footer-col:first-of-type {
    margin-left: 30px;
  }
}

@media (min-width: 1081px) and (max-width: 1223px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 28px;
  }

  .site-footer .footer-col:first-of-type {
    margin-left: 0;
  }
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom span {
  display: block;
}

@media (max-width: 900px) {
  .footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
  }
}


/* v38: partner program section */
.nav-pill-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 214, 195, 0.32);
  background: rgba(31, 214, 195, 0.08);
}

.nav-pill-link:hover {
  background: rgba(31, 214, 195, 0.14);
  border-color: rgba(31, 214, 195, 0.5);
}

.affiliate-section {
  padding-top: 56px;
}

.affiliate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.affiliate-copy h2 {
  margin: 16px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.affiliate-heading {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.affiliate-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.affiliate-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.affiliate-benefit {
  min-height: 168px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(15, 17, 24, 0.74), rgba(10, 12, 18, 0.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 20px 45px rgba(0,0,0,0.18);
}

.affiliate-benefit h4 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.affiliate-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.affiliate-form-wrap {
  margin-top: clamp(250px, 18vw, 320px);
  padding: 30px;
  border-radius: 30px;
}

.affiliate-form {
  display: grid;
  gap: 16px;
}

.affiliate-form h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.affiliate-form > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.affiliate-form label {
  display: block;
}

.affiliate-form input,
.affiliate-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1018;
  color: var(--text);
  outline: none;
  font-size: 16px;
}

.affiliate-form textarea {
  min-height: 112px;
  padding: 16px 18px;
  resize: vertical;
}

.affiliate-form input:focus,
.affiliate-form textarea:focus {
  border-color: rgba(255, 44, 122, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 44, 122, 0.08);
}

.partner-contact-choice {
  display: grid;
  gap: 12px;
}

.partner-contact-choice > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.partner-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-toggle__btn {
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.partner-toggle__btn:hover {
  transform: translateY(-1px);
}

.partner-toggle__btn.is-active {
  background: linear-gradient(135deg, rgba(31, 214, 195, 0.18), rgba(255, 44, 122, 0.12));
  border-color: rgba(227, 194, 89, 0.72);
}

.partner-submit {
  margin-top: 2px;
}

@media (max-width: 1080px) {
  .affiliate-layout {
    grid-template-columns: 1fr;
  }

  .affiliate-form-wrap {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .affiliate-benefits {
    grid-template-columns: 1fr;
  }

  .affiliate-benefit {
    min-height: auto;
  }

  .affiliate-benefit h4 {
    font-size: 24px;
  }

  .affiliate-form-wrap {
    padding: 22px;
  }

  .partner-toggle {
    grid-template-columns: 1fr;
  }

  .nav-pill-link {
    padding: 0;
    border: 0;
    background: transparent;
  }
}


/* v40: B2B lead capture and backend-ready forms */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 700;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.contact-copy {
  min-width: 0;
}

.lead-form,
.affiliate-form {
  min-width: 0;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label,
.affiliate-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.affiliate-form input,
.affiliate-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  background: #0d1018;
  outline: none;
  font: inherit;
}

.lead-form select {
  appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%), linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position: calc(100% - 22px) 24px, calc(100% - 16px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.lead-form textarea,
.affiliate-form textarea {
  min-height: 118px;
  padding: 14px 16px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.affiliate-form input:focus,
.affiliate-form textarea:focus {
  border-color: rgba(31, 214, 195, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 214, 195, 0.08);
}

.consent-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 400;
  line-height: 1.45;
}

.consent-label input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.consent-label a,
.form-status a {
  color: var(--teal);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: #ff8ead;
}

@media (max-width: 1080px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .lead-form {
    padding: 18px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .trust-row span {
    flex: 1 1 auto;
    text-align: center;
  }
}


/* v46: compact header navigation */
.site-header .header-inner {
  gap: 16px;
}

.site-header .logo {
  gap: 12px;
  min-width: 0;
}

.site-header .logo-title {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header .nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.site-header .nav a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
}

.site-header .nav-pill-link {
  padding: 8px 10px;
}

.site-header .header-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.site-header .header-actions {
  gap: 8px;
}

@media (max-width: 1180px) and (min-width: 1081px) {
  .site-header .logo-img {
    width: 64px;
    height: 64px;
  }

  .site-header .logo-title {
    font-size: 18px;
    gap: 8px;
  }

  .site-header .nav {
    gap: 8px;
  }

  .site-header .nav a,
  .site-header .header-btn {
    font-size: 11px;
  }

  .site-header .nav-pill-link {
    padding: 7px 8px;
  }

  .site-header .header-btn {
    padding: 0 12px;
  }
}


/* v47: calmer first-screen headline */
.hero-copy h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-copy .lead {
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.35;
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 31px;
  }
}

/* v49: partner comment field aligned with the form controls */
.affiliate-form #partnerMessage {
  display: block;
  width: 100%;
  min-height: 118px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  appearance: none;
  -webkit-appearance: none;
  background: #0d1018;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  outline: none;
  resize: vertical;
}

.affiliate-form #partnerMessage::placeholder {
  color: rgba(245,245,247,0.48);
  font-family: inherit;
  font-weight: 500;
}

.affiliate-form #partnerMessage:focus {
  border-color: rgba(31, 214, 195, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 214, 195, 0.08);
}

/* v51: keep anchor navigation visible on mobile */
@media (max-width: 1080px) {
  .site-header .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header .logo {
    flex: 1 1 0;
    min-width: 0;
  }

  .site-header .header-actions {
    flex: 0 0 auto;
  }

  .site-header .nav {
    order: 3;
    display: flex;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav a {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(13, 16, 24, 0.78);
  }

  .site-header .nav-pill-link {
    border-color: rgba(31, 214, 195, 0.3);
    background: rgba(31, 214, 195, 0.1);
  }
}

@media (max-width: 760px) {
  .site-header .header-inner {
    min-height: auto;
  }

  .site-header .logo-img {
    width: 46px;
    height: 46px;
  }

  .site-header .logo-title {
    font-size: 15px;
    gap: 6px;
    min-width: 0;
    white-space: normal;
  }

  .site-header .header-actions .header-btn:not(.header-call) {
    display: none;
  }

  .site-header .header-actions .header-call {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 12px;
  }

  .site-header .nav {
    gap: 8px;
  }

  .site-header .nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .site-header .logo-title {
    font-size: 13px;
  }

  .site-header .header-actions .header-call {
    min-height: 38px;
    padding: 0 12px;
  }
}
