/*
Theme Name: Tarot School
Theme URI: https://example.com
Author: Custom
Description: Кастомна WordPress тема "Вища школа Таро" — лендінг на ACF PRO + Polylang.
Version: 1.0
Requires PHP: 7.4
Text Domain: tarot-school
*/

/* ============ TOKENS — фирменная золотая палитра ============ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Manrope:wght@200..800&display=swap");

:root {
  --gold: #D4B06A;
  --gold-light: #E8D4AA;
  --gold-dark: #8D6B35;
  --black: #121212;
  --n-950: #090909;
  --n-900: #181818;
  --n-800: #2A2A2A;
  --n-300: #F5F5F5;
  --n-200: #F5F5F5;
  --n-400: #B9B9B9;
  --n-500: #9A9A9A;
  --n-600: #808080;
  --maroon: var(--gold-dark);
  --maroon-2: #6B4F24;
  --maroon-3: #4A3618;
  --maroon-hover: var(--gold-light);
  --border: #2A2A2A;
  --border-active: #8D6B35;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--n-950);
  color: var(--n-300);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}

.compensate-for-scrollbar .nav-desktop {
  margin-right: 14px;
}

h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
}

p {
  margin: 0;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap--narrow {
  max-width: 72rem;
}

.wrap--form {
  max-width: 56rem;
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BUTTONS & BADGES ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: none;
  border-radius: 16px;
  height: 58px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  transition: .25s ease;
  white-space: nowrap;
}

.nav-desktop .btn--cta, .btn--cta {
  color: #000;
  padding: 0 2.25rem;
  background: linear-gradient(to top, var(--gold-dark), var(--gold), var(--gold-light));
  border: none;
}

.btn--cta:hover {
  box-shadow: 0 0 10px 0px rgb(212 176 106 / 53%);
  transform: translateY(-1px);
}

input[type="submit"]{
  color: #000;
  padding: 0 2.25rem;
  background: linear-gradient(to top, var(--gold-dark), var(--gold), var(--gold-light));
  border: none;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    border: none;
    border-radius: 16px;
    height: 58px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    transition: .25s ease;
    white-space: nowrap;
	width: 100%;
	cursor:pointer;
}

.btn--lg {
  padding: 0 2.5rem;
  font-size: 16px;
}

.btn--sm {
  height: 44px;
  padding: 0 1.4rem;
  font-size: 16px;
  border-width: 1px;
}

.btn--header {
  height: 44px;
  padding: 0 1.3rem;
  font-size: 16px;
  border-width: 1px;
}

.btn--block {
  width: 100%;
}

.btn i {
  color: inherit;
}

.btn--ghost-gold {
  padding: 1.1rem 1.6rem;
  color: var(--gold);
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(212,176,106,.5);
  backdrop-filter: blur(6px);
}

.btn--ghost-gold:hover {
  background: rgba(141,107,53,.3);
  transform: translateY(-1px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  font-weight: 600;
}

.badge--pill {
  padding: .4rem 1rem;
  background: linear-gradient(to right, rgba(141,107,53,.4), #000, rgba(141,107,53,.4));
  border: 1px solid rgba(212,176,106,.4);
  box-shadow: 0 8px 20px -6px rgba(141,107,53,.3);
}

.badge--pill span {
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}

.badge--pill i {
  color: var(--gold);
}

.badge--tag {
  padding: .35rem .9rem;
  background: rgba(141,107,53,.3);
  border: 1px solid rgba(212,176,106,.3);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ============ HEADER ============ */

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: .3s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.5), transparent);
  border-bottom: 1px solid rgba(212,176,106, .2);
}

#main-header.is-scrolled {
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,176,106,.2);
  padding: .75rem 0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.8);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
}

.brand__badge {
  width: 200px;
  border-radius: 50%;
  padding: 1px;
  flex: none;
}

.brand__badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.brand__eyebrow {
  font-size: 28px;
  font-family: var(--font-serif);
  text-transform: uppercase;
  color: rgba(212,176,106,.8);
  font-weight: 600;
}

.brand__name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: #f5f5f5;
  font-size: 25px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop button {
  background: none;
  border: none;
  color: var(--n-300);
  font-size: 15px;
  transition: .2s;
}

.nav-desktop button:hover {
  color: var(--gold);
}

.nav-desktop .btn--cta:hover {
  color: #000;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--n-900);
  border: 1px solid rgba(212,176,106,.3);
  border-radius: 9999px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: none;
  padding: .35rem .8rem;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 9999px;
  color: var(--n-400);
  transition: .2s;
}

.lang-btn.is-active {
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  color: #000;
}

.header__right .btn--header {
  display: inline-flex;
}

.burger {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.3rem;
  padding: .4rem;
  display: none;
}

.mobile-menu {
  display: none !important;
  background: rgba(9,9,9,.98);
  border-bottom: 1px solid rgba(212,176,106,.2);
  padding: 1.5rem 1.5rem 1.75rem;
  margin-top: .75rem;
  backdrop-filter: blur(20px);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.mobile-menu nav button {
  background: none;
  border: none;
  border-bottom: 1px solid var(--n-900);
  padding: .35rem 0;
  color: var(--n-200);
  font-size: 1rem;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: left;
  background: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
}

.hero .overlay{
  position: absolute;
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  background: #090909;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
}

.hero__title {
  font-size: 72px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.05;
  max-width: 56rem;
  margin: 1.5rem auto 0;
  letter-spacing: -.02em;
}

.hero__subtitle {
  margin: 1.5rem auto 0;
  max-width: 48rem;
  color: var(--n-400);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.65;
}

.hero-content {
  position: relative;
  display: flex;
}

.hero__left {
  max-width: 800px;
}

.hero-img {
  position: absolute;
  right: 40px;
  max-width: 540px;
  top: -30px;
}

.hero__giftbox {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  text-align: left;
  position: relative;
  padding: 0;
}

.border-hero {
  border: 1px solid #2A2A2A;
  padding: 50px;
  background: rgba(9,9,9,.8);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.8);
  border-radius: 1rem;
}

.hero__giftbox-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero__giftbox-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(141,107,53,.4);
  border: 1px solid rgba(212,176,106,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: none;
}

.hero__giftbox-top h3 {
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-sans);
}

.hero__gifts {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.hero__gift {
  padding: 1rem;
  border-radius: .75rem;
  background: rgba(24,24,24,.9);
  border: 1px solid #2A2A2A;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  transition: .2s;
}

.hero__gift:hover {
  border-color: #8D6B35;
}

.hero__gift-icon {
  width: 44px;
  height: 44px;
  border-radius: .5rem;
  background: rgba(141,107,53,.3);
  border: 1px solid rgba(212,176,106,.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 17px;
}

.hero__gift-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
}

.hero__gift p:last-child {
  font-size: 13px;
  color: var(--n-300);
  line-height: 1.4;
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.countdown {
  margin-top: .5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--n-400);
  flex-wrap: wrap;
  justify-content: center;
}

.countdown i {
  color: var(--gold);
}

.spin-slow {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.countdown__digits {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: monospace;
  font-weight: 600;
  color: var(--gold);
}

.countdown__digits span {
  padding: .15rem .4rem;
  border-radius: .25rem;
  background: var(--n-900);
  border: 1px solid rgba(212,176,106,.2);
}

.countdown__sec {
  color: var(--maroon) !important;
}

/* ============ SECTIONS GENERIC ============ */

.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.section--950 {
  background: var(--n-950);
}

.section--black {
  background: var(--black);
}

.hairline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,176,106,.3), transparent);
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  background: rgba(141,107,53,.2);
}

.glow-blob--right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
}

.glow-blob--left-mid {
  top: 33%;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(141,107,53,.15);
}

.glow-blob--left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
}

.glow-blob--form {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 700px;
  filter: blur(150px);
  background: radial-gradient(circle, rgba(141,107,53,.25), rgba(212,176,106,.15), transparent 70%);
}

.glow-blob--modal1 {
  top: -3rem;
  left: -3rem;
  width: 10rem;
  height: 10rem;
  filter: blur(64px);
  background: rgba(141,107,53,.4);
}

.glow-blob--modal2 {
  bottom: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  filter: blur(64px);
  background: rgba(212,176,106,.2);
}

.section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.section-head h2 {
  font-size: 52px;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 52px;
}

.section-head p {
  margin-top: 1rem;
  font-size: 20px;
  color: var(--n-400);
  font-weight: 400;
}

.grid {
  display: grid;
  gap: 50px 40px;
  position: relative;
  z-index: 1;
}

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

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

/* ============ ADVANTAGE CARDS ============ */

#advantages .section-head {
  margin: 0 auto 80px;
}

.adv-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(24,24,24,.8);
  border: 1px solid var(--n-800);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: .3s;
}

.adv-card:hover {
  border-color: rgba(212,176,106,.5);
  box-shadow: 0 25px 50px -12px rgba(141,107,53,.2);
}

.adv-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  background: linear-gradient(to bottom right, rgba(141,107,53,.5), var(--n-900));
  border: 1px solid rgba(212,176,106,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.adv-card h3 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: .75rem;
  font-weight: 600;
}

.adv-card p {
  font-size: .85rem;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.6;
}

.adv-card__foot {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(38,38,38,.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  color: var(--n-500);
}

.adv-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.adv-img {
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
  overflow: visible;
}

.adv-img:hover {
  background: transparent;
  box-shadow: none;
}

.adv-img img {
  max-width: 230px;
  margin: 0 auto;
}

.adv-ad-top-img {
  position: absolute;
  right: 0;
  top: 0;
}

.adv-ad-bottom-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.adv-main-img {
  width: 100%;
  height: 250px;
}

.adv-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ GIFT CARDS ============ */

.gift-card {
  border-radius: 1rem;
  background: var(--n-950);
  border: 1px solid #2A2A2A;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .3s;
}

.gift-card:hover {
  border-color: #8D6B35;
  box-shadow: 0 25px 50px -12px hsl(41deg 57% 79% / 3%);
}

.gift-card__imgwrap {
  position: relative;
  height: 13rem;
  overflow: hidden;
  background: var(--n-900);
}

.gift-card__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  object-position: 50% 8%;
}

.gift-card:hover .gift-card__imgwrap img {
  transform: scale(1.05);
}

.gift-card__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--n-950), rgba(9,9,9,.2), transparent);
}

.gift-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, .8);
  border: 1px solid #8D6B35;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(6px);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-card__eye {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(141,107,53,.9);
  border: 1px solid rgba(212,176,106,.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,.4);
}

.gift-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gift-card__body h3 {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.gift-card__subtitle {
  font-size: .7rem;
  color: rgba(212,176,106,.8);
  font-weight: 600;
  margin-bottom: .75rem;
}

.gift-card__desc {
  font-size: 16px;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.gift-card__btn {
  width: 100%;
  padding: .65rem;
  border-radius: .75rem;
  border: 1px solid rgba(212,176,106,.4);
  background: transparent;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: .2s;
}

.gift-card__btn:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.gift-img {
  border: none;
  background: transparent;
  position: relative;
  overflow: visible;
}

.gift-img:hover {
  box-shadow: none;
  background: transparent;
}

.gift-img img {
  width: 200px;
  margin: 0 auto;
}

.gift-img-top img:nth-child(1) {
  animation: floating 4s linear infinite;
}

.gift-img-top img:nth-child(2) {
  position: absolute;
  animation: floating2 4s linear infinite;
  top: 90px;
  left: 35px;
}

.gift-img-bottom img:nth-child(1) {
  position: absolute;
  animation: floating2 4s linear infinite;
  bottom: 0;
  right: 35px;
}

.gift-img-bottom img:nth-child(2) {
  animation: floating 4s linear infinite;
}

.gift-1 {
  position: relative;
  top: -25px;
}

.gift-3 {
  position: relative;
  top: 15px;
  left: 0px;
}

.gift-4 {
  position: relative;
  top: -20px;
  left: 0px;
}

@keyframes floating {
  0% {
    transform: rotate(0deg) translate(-6px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-6px) rotate(-360deg);
  }
}

@keyframes floating2 {
  0% {
    transform: rotate(0deg) translate(-6px) rotate(0deg);
  }
  100% {
    transform: rotate(-360deg) translate(-6px) rotate(360deg);
  }
}

.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: #6b7280;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.around-sun {
  max-width: 400px;
  width: 100%;
  animation: rotate 12s linear infinite;
  margin: 0 auto;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sun-block {
  position: absolute;
  left: 50%;
  bottom: -240px;
  background: #121212;
  width: 480px;
  margin-left: -240px;
  text-align: center;
  border-radius: 236px;
  height: 480px;
  padding: 32px;
}

#advantages {
  padding: 7rem 0 20rem;
}

.gift-go {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
  align-items: center;
  line-height: 33px;
  max-width: 541px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(24,24,24, 0.8);
  border: 1px solid #2A2A2A;
  overflow: hidden;
  transition: 0.3s;
}

.gift-go:hover {
  border-color: #8D6B35;
  box-shadow: 0 25px 50px -12px hsl(41deg 57% 79% / 3%);
}

.gift-go p {
  font-size: 16px;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
}

.gift-go img {
  height: 230px;
  margin: 0 auto;
}

.gift-go .hero__gift-icon {
  font-size: 40px;
  width: 75px;
  height: 75px;
}

#gifts {
  position: relative;
  width: 100%;
  min-height: 850px;
  background: #121212;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 0 150px;
}

.gifts-star {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 0 10px #E8D4AA);
  animation: starTwinkle var(--speed, 2.5s) ease-in-out infinite var(--delay, 0s);
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.15;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(15deg);
  }
}

.gifts-particle {
  position: absolute;
  bottom: -15px;
  border-radius: 50%;
  background: #ffffff;
  pointer-events: none;
  box-shadow: 0 0 8px #E8D4AA, 0 0 4px #ffffff;
  animation: particleRise var(--duration, 5s) linear infinite var(--delay, 0s);
}

@keyframes particleRise {
  0% {
    transform: translateY(0) scale(0.3);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-1200px) scale(1.3);
    opacity: 0;
  }
}

/* ============ FAQ ACCORDION ============ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  background: rgba(24,24,24,.8);
  border: 1px solid #2A2A2A;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.is-open {
  border-color: #8D6B35;
}

.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.faq-item__head span {
  flex: 1;
}

.faq-item__head i {
  color: var(--gold);
  flex: none;
  transition: transform .3s ease;
}

.faq-item.is-open .faq-item__head i {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__head {
  color: var(--gold);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item__body p {
  padding: 0 1.5rem 1.25rem;
  font-size: 16px;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.5;
}

.faq-taro-img-top {
  position: absolute;
  left: -86px;
  top: 100px;
  width: 200px;
  animation: faqanimtop 4s ease-in-out infinite;
}

.faq-taro-img-bottom {
  position: absolute;
  right: -86px;
  bottom: 100px;
  width: 200px;
  animation: faqanimbottom 4s ease-in-out infinite;
}

@keyframes faqanimtop {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes faqanimbottom {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}

.banner {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(to right, var(--n-950), rgb(141 107 53 / 22%), var(--n-950));
  border: 1px solid #8D6B35;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.banner h4 {
  font-size: 24px;
  color: var(--gold);
  font-weight: 600;
}

.banner p {
  font-size: .85rem;
  color: var(--n-300);
  font-weight: 400;
  margin-top: .25rem;
}

/* ============ TABS ============ */

.tabs {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.tab {
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--n-900);
  color: var(--n-400);
  border: 1px solid var(--n-800);
  transition: .2s;
}

.tab:hover {
  color: #fff;
}

.tab.is-active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* ============ AUDIENCE CARDS ============ */

.aud-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aud-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.aud-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 1rem;
  background: hsl(36.82deg 45.36% 38.04% / 16%);
  border: 1px solid rgba(212,176,106, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
  padding: 10px;
}

.aud-card__tag {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.aud-card__head h3 {
  font-size: 24px;
  color: #fff;
  margin-top: 2px;
  font-weight: 600;
  line-height: 28px;
}

.aud-card__quote {
  font-size: 16px;
  color: #D4B06A;
  font-weight: 600;
  border-left: 2px solid rgba(212,176,106, .4);
  padding-left: .75rem;
  margin-bottom: 1.5rem;
}

.aud-card ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aud-card li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  color: var(--n-200);
  font-weight: 400;
  line-height: 1.5;
}

.aud-card li i {
  color: var(--gold);
  margin-top: 2px;
  flex: none;
  font-size: 22px;
}

.aud-card__foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--n-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--n-400);
}

.aud-card__foot span:last-child {
  color: var(--gold);
  font-weight: 600;
}

.aud-card-img {
  border: none;
  background: transparent;
  position: relative;
  overflow: visible;
}

.aud-card-img:hover {
  box-shadow: none;
  background: transparent;
}

.aud-card-img img {
  width: 200px;
  margin: 0 auto;
}

.aud-card-img-top img:nth-child(1) {
  animation: floating3 4s linear infinite;
}

.aud-card-img-top img:nth-child(2) {
  position: absolute;
  animation: floating4 4s linear infinite;
  top: 90px;
  left: 142px;
  z-index: -1;
}

.aud-card-img-bottom img:nth-child(1) {
  position: absolute;
  animation: floating4 4s linear infinite;
  bottom: 0;
  left: 142px;
  z-index: -1;
}

.aud-card-img-bottom img:nth-child(2) {
  animation: floating3 4s linear infinite;
}

#for-whom {
  background: radial-gradient(ellipse at 50% 20%, hsl(39.35deg 39% 54% / 3%) 0%, #000000 100%);
}

#audienceGrid {
  gap: 100px 32px;
}

#for-whom .section-head {
  margin: 0 auto 80px;
}

@keyframes floating3 {
  0% {
    transform: rotate(0deg) translate(-6px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-6px) rotate(-360deg);
  }
}

@keyframes floating4 {
  0% {
    transform: rotate(-22deg) translate(-6px) rotate(0deg);
  }
  100% {
    transform: rotate(-382deg) translate(-6px) rotate(360deg);
  }
}

/* ============ STEPS ============ */

.step-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--n-950);
  border: 1px solid var(--n-800);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s;
}

.step-card:hover {
  border-color: rgba(212,176,106,.5);
}

.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.step-card__num {
  font-size: 2.2rem;
  font-weight: 600;
  background: linear-gradient(to right, var(--gold), var(--maroon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-card__arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--n-900);
  border: 1px solid rgba(212,176,106,.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.step-card:hover .step-card__arrow {
  background: var(--maroon);
  color: #fff;
}

.step-card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: .75rem;
  font-weight: 600;
}

.step-card p {
  font-size: .85rem;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.6;
}

.step-card__foot {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--n-900);
  font-size: .68rem;
  color: var(--n-500);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.center-cta {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

/* ============ REVIEWS ============ */

#reviews {
  background: radial-gradient(ellipse at 50% 20%, hsl(39.35deg 39% 54% / 3%) 0%, #000000 100%);
}

.review-slide {
  padding: 0 17px;
}

.rev-star-1 {
  width: 70px;
  position: absolute;
  left: 50px;
  top: 100px;
  animation: revStarFloat1 9s ease-in-out infinite;
  opacity: 0.3;
}

.rev-star-2 {
  width: 50px;
  position: absolute;
  left: 90px;
  bottom: 150px;
  animation: revStarFloat1 5s ease-in-out infinite;
  opacity: 0.3;
}

.rev-star-3 {
  width: 70px;
  position: absolute;
  right: 50px;
  bottom: 100px;
  animation: revStarFloat1 8s ease-in-out infinite;
  opacity: 0.3;
}

.rev-star-4 {
  width: 50px;
  position: absolute;
  right: 90px;
  top: 150px;
  animation: revStarFloat1 4s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes revStarFloat1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes revStarFloat2 {
  0% {
    transform: translateY(80px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(80px);
  }
}

@keyframes revStarFloat3 {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

@keyframes revStarFloat4 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ============ FOUNDER / INSTRUCTOR ============ */

.founder-photo__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0,0,0,.2), transparent);
}

.founder-photo__badge {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,176,106,.4);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.founder-photo__badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--maroon);
  border: 1px solid rgba(212,176,106,.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.founder-photo__badge h4 {
  font-size: .9rem;
  color: var(--gold);
  font-weight: 600;
}

.founder-photo__badge p {
  font-size: .75rem;
  color: var(--n-300);
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.fact {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--n-950);
  border: 1px solid var(--n-800);
  border-left-width: 4px;
  border-left-style: solid;
}

.fact--gold {
  border-left-color: var(--gold);
}

.fact--red {
  border-left-color: var(--maroon);
}

.fact__num {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}

.fact__label {
  font-size: .75rem;
  color: var(--n-300);
  font-weight: 400;
  margin-top: .25rem;
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .9rem;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.7;
}

.founder-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.founder-points div {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: var(--n-200);
}

.founder-points i {
  color: var(--gold);
  flex: none;
}

/* ============ FORM ============ */

.form-card {
  padding: 3rem;
  border-radius: 1.5rem;
  background: rgba(0,0,0,.9);
  border: 2px solid rgba(212,176,106,.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.form-card__topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--maroon), var(--gold), var(--maroon));
}

.form-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.form-head h2 {
  font-size: 36px;
  color: var(--gold);
  font-weight: 600;
}

.form-head p {
  margin-top: .75rem;
  font-size: .9rem;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.6;
}

form {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.field__wrap {
  position: relative;
}

.field__wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--n-500);
  font-size: .9rem;
	z-index:1;
}

.field__wrap input {
  width: 100%;
  padding: .85rem 1rem .85rem 3rem;
  border-radius: .75rem;
  background: var(--n-900);
  border: 1px solid var(--n-800);
  color: #fff;
  font-size: .85rem;
  outline: none;
  transition: .2s;
}

.field__wrap input::placeholder {
  color: var(--n-500);
}

.field__wrap input:focus {
  border-color: var(--gold);
}

.field-error {
  display: none;
  padding: .75rem;
  border-radius: .75rem;
  background: rgba(130,24,26,.4);
  border: 1px solid rgba(251,44,54,.5);
  color: #fecaca;
  font-size: .75rem;
  text-align: center;
}

.field-error.is-visible {
  display: block;
}

.privacy-note p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding-top: .5rem;
  text-align: center;
  font-size: .68rem;
  color: var(--n-400);
}

.privacy-note i {
  color: var(--gold);
  flex: none;
}

/* ============ FOOTER ============ */

footer {
  background: var(--n-950);
  color: var(--n-400);
  padding: 3rem 0;
  border-top: 1px solid #2A2A2A;
}

.footer__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--n-900);
}

.footer__brand-name {
  font-size: .9rem;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-serif);
}

.footer__brand-tag {
  font-size: .75rem;
  color: var(--n-500);
}

.footer__tg {
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: var(--n-900);
  border: 1px solid rgba(212,176,106,.3);
  font-size: .75rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: .2s;
}

.footer__tg:hover {
  background: var(--maroon);
  color: #fff;
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .75rem;
  color: var(--n-500);
  text-align: center;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__legal a:hover {
  color: var(--gold);
}

.footer__legal i {
  color: var(--gold);
}

/* ============ MODALS ============ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(10px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  position: relative;
  width: 100%;
  background: var(--n-950);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px #000;
  overflow: hidden;
  overflow-y: auto;
  max-height: 90vh;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--n-900);
  border: none;
  color: var(--n-400);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.modal__close:hover {
  color: #fff;
}

.gift-modal {
  max-width: 42rem;
  padding: 2rem;
  border: 1px solid rgba(212,176,106,.4);
}

.gift-modal__top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.pill-badge {
  padding: .25rem .75rem;
  border-radius: 9999px;
  background: var(--maroon);
  border: 1px solid rgba(212,176,106,.4);
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
}

.gift-modal__hint {
  font-size: .7rem;
  color: var(--n-400);
}

.gift-modal h3 {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: .5rem;
  font-weight: 600;
}

.gift-modal p#giftModalDesc {
  font-size: .85rem;
  color: var(--n-300);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.gift-modal__body {
  margin: 1.5rem 0;
  border-radius: 1rem;
  background: var(--n-900);
  border: 1px solid var(--n-800);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gm-audio-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--maroon), rgba(212,176,106,.3));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 2rem;
}

.gm-audio-title {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.gm-audio-meta {
  font-size: .7rem;
  color: var(--n-400);
  margin-bottom: 1.5rem;
}

.gm-player {
  width: 100%;
  background: var(--n-950);
  padding: 1rem;
  border-radius: .75rem;
  border: 1px solid var(--n-800);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gm-play {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.gm-play:hover {
  background: var(--maroon-hover);
}

.gm-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: var(--n-400);
  margin-bottom: .25rem;
}

.gm-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--n-800);
  border-radius: 9999px;
  overflow: hidden;
}

.gm-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--maroon), var(--gold));
  transition: width .3s;
}

.gm-video-wrap {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--n-950);
  border: 1px solid var(--n-800);
  width: 100%;
}

.gm-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}

.gm-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.gm-play-round {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(141,107,53,.9);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
  box-shadow: 0 20px 30px rgba(0,0,0,.4);
}

.gm-video-tag {
  font-size: .7rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,.6);
  padding: .25rem .75rem;
  border-radius: 9999px;
}

.gm-pdf-preview {
  width: 100%;
  height: 14rem;
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid var(--n-800);
  margin-bottom: 1rem;
  background: var(--n-950);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gm-pdf-preview img {
  max-height: 100%;
  object-fit: contain;
  border-radius: .5rem;
}

.gm-pdf-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--gold);
}

.gm-cert {
  width: 100%;
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid rgba(212,176,106,.4);
  background: var(--n-950);
  padding: .5rem;
}

.gm-cert img {
  width: 100%;
  border-radius: .5rem;
}

.gift-modal__footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.gift-modal__footer p {
  font-size: .75rem;
  color: var(--n-400);
}

.success-modal {
  max-width: 32rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(212,176,106,.6);
}

.success-modal__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--maroon), var(--gold), var(--maroon));
  padding: 2px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-modal__icon::before {
  content: "";
}

.success-modal__icon i {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--n-950);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.success-modal h3 {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: .5rem;
  font-weight: 600;
}

.success-modal p {
  font-size: .85rem;
  color: var(--n-300);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.success-modal__gifts {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--n-900);
  border: 1px solid var(--n-800);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}

.success-modal__gifts p {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .5rem;
}

.success-modal__gifts div {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--n-300);
}

.success-modal__gifts div span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.slick-dots {
  display: none;
  bottom: -50px;
}

/* ============ HERO v2 (two-column layout) ============ */

.hero__grid-layout {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__left .badge--pill {
  margin-bottom: 1.5rem;
}

.hero__left .hero__title {
  margin: 0;
  text-align: left;
  max-width: none;
}

.hero__left .hero__subtitle {
  margin: 1.25rem 0 0;
  font-size: 16px;
  text-align: center;
}

.hero__left .hero__subtitle strong {
  color: #f5f5f5;
  font-weight: 600;
}

.hero__left .hero__giftbox {
  margin: 40px 0 0;
  max-width: none;
  text-align: left;
}

.hero__cta-row {
  margin-top: 45px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.hero .countdown {
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.hero__right {
  display: flex;
  justify-content: center;
}

.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero__crystal {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  z-index: 20;
  padding: .75rem;
  border-radius: 1rem;
  background: rgba(0,0,0,.8);
  border: 1px solid rgba(212,176,106,.5);
  box-shadow: 0 15px 30px rgba(0,0,0,.5);
  animation: bounce-slow 4s infinite;
}

.hero__crystal span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(to top right, var(--maroon), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@keyframes bounce-slow {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero__photo-frame {
  position: relative;
}

.hero__photo-frame img {
  width: 100%;
}

.hero__orb {
  position: absolute;
  bottom: 3rem;
  right: -1rem;
  z-index: 20;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: radial-gradient(circle at 30% 30%, #E8D4AA, #8D6B35 70%);
  border: 1px solid rgba(212,176,106,.8);
  box-shadow: 0 20px 30px rgba(0,0,0,.4);
  animation: pulse-slow 3s infinite;
}

@keyframes pulse-slow {
  0%,100% {
    opacity: 1;
  }
  50% {
    opacity: .75;
  }
}

.hero__photo-badge {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 10;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,176,106,.4);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hero__photo-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--maroon);
  border: 1px solid rgba(212,176,106,.6);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.hero__photo-badge h4 {
  font-size: .9rem;
  color: var(--gold);
  font-weight: 600;
}

.hero__photo-badge p {
  font-size: .75rem;
  color: var(--n-300);
}

#advantages .hero__arc__top {
  position: absolute;
  bottom: -58px;
  left: 0;
  right: 0;
  z-index: 20;
  line-height: 0;
  pointer-events: none;
}

#gifts .hero__arc__bottom {
  position: absolute;
  bottom: -58px;
  left: 0;
  right: 0;
  z-index: 20;
  line-height: 0;
  pointer-events: none;
}

.hero__arc svg {
  display: block;
  width: 100%;
  height: 7rem;
  color: #000;
}

.hero__arc__top svg path {
  fill: var(--black) !important;
}

.hero__arc__bottom svg path {
  fill: var(--n-950) !important;
}

/* ============ HOW IT WORKS ============ */

.how-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.how-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 1.5rem;
  background: rgba(24,24,24,.8);
  border: 1px solid #2A2A2A;
  overflow: hidden;
  transition: .3s;
}

.how-card:hover {
  border-color: #8D6B35;
}

.how-card__ribbon {
  position: absolute;
  top: 0;
  right: 2.2rem;
  width: 2.4rem;
  height: 4.2rem;
  background: linear-gradient(180deg, var(--gold), var(--maroon));
  clip-path: polygon(0 0,100% 0,100% 100%,50% 78%,0 100%);
}

.how-card__num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.3rem;
  color: var(--gold);
}

.how-card p {
  font-size: 16px;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.5;
}

.how-card p strong {
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.how-planet {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  color: var(--gold);
  opacity: .85;
}

.how-planet svg {
  width: 100%;
  max-width: 14rem;
  height: auto;
  animation: planetFloat 2s ease-in-out infinite alternate;
}

@keyframes planetFloat {
  from {
    transform: translate(-24px, -18px);
  }
  to {
    transform: translate(24px, 18px);
  }
}

@keyframes planetSpin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

/* ============ FOUNDER v2 ============ */

.section--dark-blue {
  background: #090909;
}

.glow-blob--right-bottom {
  bottom: 25%;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(212,176,106,.15);
  filter: blur(140px);
}

.founder-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-kicker {
  margin: 1rem 0 0;
  font-size: 1.2rem;
  font-style: italic;
  color: #E8D4AA;
  font-family: var(--font-serif);
}

.founder-name {
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: .25rem 0 .75rem;
}

.founder-role {
  font-size: 16px;
  color: var(--n-300);
  font-weight: 600;
  font-style: normal;
  border-left: 2px solid var(--maroon);
  padding-left: .75rem;
  margin-bottom: 40px;
}

.founder-numbered {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 40px;
}

.founder-numbered__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.founder-numbered__num {
  font-size: 30px;
  font-weight: 600;
  color: rgba(212,176,106,.8);
  font-family: var(--font-serif);
  flex: none;
}

.founder-numbered__item p {
  font-size: 16px;
  color: var(--n-200);
  line-height: 1.5;
  max-width: 530px;
}

.founder-bio-box {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(0,0,0,.4);
  border: 1px solid #2A2A2A;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: 16px;
  color: var(--n-300);
  font-weight: 400;
  line-height: 1.5;
}

.founder-photo {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid #8D6B35;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.8);
  background: var(--n-950);
  max-width: 28rem;
  margin: 0 auto;
}

.founder-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top;
  transition: transform .7s;
}

.founder-photo:hover img {
  transform: scale(1.05);
}

.founder-stats {
  margin-top: 3.5rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(9,9,9,.9);
  border: 1px solid #2A2A2A;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.6);
  position: relative;
  z-index: 1;
}

.founder-stats__row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  text-align: center;
}

.founder-stat {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #2A2A2A;
}

.founder-stat:first-child {
  border-left: none;
}

.founder-stat span {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-serif);
}

.founder-stat p {
  font-size: 16px;
  color: var(--n-300);
  font-weight: 400;
  margin-top: .5rem;
  max-width: 12rem;
}

.founder-gallery {
  margin-top: 85px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.founder-gallery h3 {
  font-size: 36px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .5rem;
}

.gallery-thumb {
  scroll-snap-align: center;
  flex: none;
  width: 100%;
  border-radius: 1rem;
  background: var(--n-950);
  border: 1px solid #2A2A2A;
  overflow: hidden;
  cursor: pointer;
  transition: .3s;
  text-align: left;
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-thumb:hover {
  border-color: #8D6B35;
}

.gallery-thumb__img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--n-900);
}

.gallery-thumb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  object-position: 50% 8%;
}

.gallery-thumb:hover .gallery-thumb__img img {
  transform: scale(1.1);
}

.gallery-thumb__zoom {
  position: absolute;
  top: .6rem;
  right: .6rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(0,0,0,.8);
  border: 1px solid rgba(212,176,106,.6);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb__body {
  padding: .9rem;
}

.gallery-thumb__body h4 {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .25rem;
}

.gallery-thumb__body p {
  font-size: .72rem;
  color: var(--n-400);
  font-weight: 400;
}

.rev-star-1,.rev-star-2,.rev-star-3,.rev-star-4 {
  fill: var(--gold-light) !important;
}

.rev-star-1 path,.rev-star-2 path,.rev-star-3 path,.rev-star-4 path {
  fill: var(--gold-light) !important;
}

.slick-dots li button:before {
  color: #D4B06A;
}

.slick-dots li.slick-active button:before {
  color: #D4B06A;
  opacity: 1;
}

.gallery-thumb-wrap {
  padding: 0 10px;
}

.btn--cta-mobile{
  display: none;
}

.logo-mobile{
  display: none;
}

.close{
  display: none;
}

.field__wrap br{
	display:none;
}

.field{
	
}

.wpcf7-not-valid{
	border-color:red!important
}

.wpcf7-not-valid-tip{
	display:none;
}

.wpcf7 form.invalid .wpcf7-response-output{
	display:none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #c3a15e;
    text-align: center;
    background: #c3a15e;
    font-size: 14px;
    padding: 12px;
    color: #020202;
	margin: 0;
}

.wpcf7-spinner{
	position: absolute;
    left: 0;
    bottom: 15px;
}

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

.switch a{
	font-size:14px;
	transition:0.3s;
}

.switch a:hover{
	color:#d4b06a;
	transition:0.3s;
}

.switch a.is-active{
	color:#d4b06a;
}

.mob-switch{
	display:none;
}

.hero-img-mob{
	display:none;
}

/* ============================================================ */

/* MEDIA (desktop-first)      */

/* ============================================================ */

@media(min-width:1200px) and (min-height:1080px){
  .hero-img{right: 0px;max-width: 580px;}
}

@media(min-width:1200px) and (min-height:1180px){
  .hero-img{right: -20px;max-width: 620px;}
}

@media(min-width:1200px) and (min-height:1320px){
  .hero{min-height: 1320px;}
}

@media(max-width:1200px) {
  .hero{min-height: 100%;padding: 10rem 0 10rem;}
  .hero-img{right: -70px;max-width: 500px;top: 25px;}
	.nav-desktop{gap:15px;}
}

@media (max-width: 1100px) {
    .hero-img {right: -150px;max-width: 450px;top: 100px;}
}

@media(max-width:992px) {
  .hero {min-height: 100%;padding: 120px 0 140px 0;}
  .hero__left{max-width: 100%;width: 100%;}
  .hero-img{margin:0 auto;width: 100%;top: 0;margin-top: 80px;right: -45px;max-width: 50%;top: 25px;position: absolute;}
  .brand{justify-content: center;}
  .brand__badge {width: 100px;}
   .brand__eyebrow {font-size: 18px;line-height: 20px;}
   .brand__name{font-size: 18px;}
  .hero__left .hero__title{text-align: center;}
  .hero__cta-row{justify-content: center;gap: 30px;max-width: 65%;}
  .hero__giftbox-top{justify-content: center;}
  .hero__title {font-size: 45px;max-width: 65%;}
  .border-hero{max-width: 65%;padding: 15px;}
	.hero__gifts{grid-template-columns: repeat(1, 1fr);}
  #advantages {padding: 60px 0 200px;}
  .section {padding: 60px 0;}
  .gift-img{display: none;}
  .gift-card__body{text-align: center;}
  .gift-card__body h3{line-height: 26px;margin-bottom: 15px;}
  #advantages .grid{gap: 40px 40px;}
  #advantages .section-head {margin: 0 auto 50px;}
  .gift-4{top:0;}
  .gift-3{top:0;}
  .gift-2{top:0;}
  .gift-1{top:0;}
  .around-sun {max-width: 300px;}
  .sun-block {bottom: -190px;width: 380px;margin-left: -190px;height: 380px;padding: 32px;}
  #advantages .hero__arc__top{bottom: -10px;}
  #advantages .grid--4 {grid-template-columns: repeat(2, 1fr);}
  #gifts{padding:60px 0;position: relative;top: -5px;}
  .section-head h2 {font-size: 44px;line-height: 48px;}
  .section-head{margin: 0 auto 50px;}
  .founder-grid{grid-template-columns: 1fr;}
  .founder-stats__row{grid-template-columns: repeat(2, 1fr);}
  .founder-stat{border-left: none;}
  .founder-name{font-size: 44px;line-height: 48px;}
  .btn--cta-mobile{display: inline-block;}
  .logo-mobile{display: inline-block;margin-bottom: 10px;}
  .nav-desktop{flex-direction: column;position: fixed;right: -150%;top: 0;height: 100%;background: #090909;z-index: 9999999;width: 70%;border-left: 1px solid #d4b06a;transition: 0.3s;padding: 30px 20px;overflow-y: scroll;}
  .nav-desktop.active{right:0;}
  .header__inner{justify-content: space-between;}
  .burger{font-size: 30px;display: inline-block;}
  header .btn--block {width: 55%;}
  #main-header{background: rgba(0, 0, 0, .9);}
  .close{display: inline-block;position: absolute;right: 30px;top: 30px;font-size: 25px!important;}
  .desk-switch{display:none;}
	.mob-switch{display:flex;}
}

@media(max-width:890px) {
	.hero-img{right: -93px;max-width: 60%;}
}

@media(max-width:767px) {

  .hero__title {font-size: 45px;padding: 0 25px;}
  .hero__gifts {grid-template-columns: 1fr;}
  .section-head h2 {font-size: 36px;line-height: 44px;}
  .founder-name{font-size: 36px;line-height: 44px;}
  .grid--4 {grid-template-columns: 1fr;}
  .footer__top {flex-direction: column;}
  .hero__arc svg {height: 5rem;}
  .how-grid {grid-template-columns: 1fr;gap: 1.25rem;}
  #advantages .grid--4 {grid-template-columns: repeat(1, 1fr);}
  #gifts .grid--2 {grid-template-columns: repeat(1, 1fr);gap: 40px;}
  .gift-go{max-width: 100%;margin-bottom: 0;}
  .banner{padding:15px;}
  .banner h4{font-size: 20px;line-height: 26px;}
  #for-whom .grid--2{grid-template-columns: repeat(1, 1fr);}
  .aud-card-img{display: none;}
  #audienceGrid {gap: 50px 32px;}
  .how-planet{order: 6;}
  .center-cta{margin-top: 0;}
  .how-grid{margin:0;}
  .how-card{padding: 15px;}
  .how-card__ribbon{right: 28px;width: 28px;height: 40px;}
  .how-grid .how-card:nth-child(1){order:1;}
  .how-grid .how-card:nth-child(2){order:2;}
  .how-grid .how-card:nth-child(3){order:3;}
  .how-grid .how-card:nth-child(4){order:4;}
  .how-grid .how-card:nth-child(5){order:6;}
  .how-grid .how-card:nth-child(6){order:5;}
  .how-planet{min-height: 150px;}
  .how-planet svg{max-width: 150px;}
	.hero__cta-row{flex-direction:column;max-width: 100%;position: relative;z-index: 9;background: #070707;border-radius: 15px;}
	.hero__cta-row button{max-width:100%;width:100%;}
	.hero-img-mob{display:block;}
	.hero-img-desk{display:none;}
	.hero-img{max-width: 61%;}
	 .hero {padding: 120px 0 60px 0;}
	 .hero__cta-row:before {content: '';position: absolute;left: -30px;bottom: -60px;width: calc(100% + 70px);height: calc(100% + 60px);background: #070707;z-index: -1;}
}

@media(max-width:610px) {
	.hero-img{max-width: 71%;right: -115px;}  
}

@media(max-width:576px) {
  .around-sun {max-width: 220px;}
  .sun-block {bottom: -140px;width: 280px;margin-left: -140px;height: 280px;padding: 25px;}

  .border-hero{padding: 15px;}
  .hero__title {font-size: 38px;}
  .section-head h2 {font-size: 32px;line-height: 38px;}
  .founder-name{font-size: 32px;line-height: 38px;}

  .founder-stats__row {grid-template-columns: repeat(1, 1fr);}
  .founder-stat{border-top: 1px solid #2A2A2A;}
  .founder-stat:first-child {border-top: none;}
  .founder-photo img{height: 350px;}
  .founder-stats{padding: 15px;}
  .founder-stat span{font-size: 35px;}

  .wrap {padding: 0 1rem;}
  .lang-switch {display: none;}
  .header__right .btn--header {display: none;}
  .burger {display: unset;}
  .mobile-menu {display: none;}
  .hero__subtitle {font-size: 16px;}
  .hero__giftbox {padding: unset;}
  .section-head h2 {font-size: 32px;}
  .section-head p {font-size: 16px;}
  .banner {flex-direction: column;text-align: center;}
  .fact__num {font-size: 1.6rem;}
  .form-card {padding: 15px;}
  .form-head h2 {font-size: 28px;}
  .footer__bottom {flex-direction: column;}
  .gift-modal {padding: 1.5rem;}
  .gift-modal h3 {font-size: 28px;}
  .gift-modal__footer {flex-direction: column;text-align: center;}
  .success-modal h3 {font-size: 28px;}
  .hero__cta-row {flex-direction: column;align-items: unset;}
  .footer__bottom{padding-top: 0;}
  .footer__legal span{display: none;}
  .faq-taro-img-top{width: 140px;}
  .faq-taro-img-bottom{width: 140px;}
  .faq-item__body p{font-size: 15px;}
	header .btn{padding: 0 10px;}
	.border-hero {max-width: 70%;}
	.hero__left .hero__subtitle{position: relative;z-index: 99999;padding: 0 45px 0 0;text-align: left;}
	.hero-img {max-width: 79%;right: -130px;}
}

@media(max-width:480px) {
  .hero__title {font-size: 33px;}
  .section-head h2 {font-size: 28px;line-height: 34px;}
  .founder-name{font-size: 28px;line-height: 34px;}
  .hero__giftbox-top h3 {font-size: 18px;}
  .hero-img {max-width: 80%;right: -95px;top: 110px;}
}

@media(max-width:480px) {
	.border-hero {max-width: 75%;}
	.hero-img {max-width: 309px;right: -110px;top: 100px;}
}

@media(max-width:380px) {
  .hero__left .hero__subtitle{font-size: 14px;line-height: 20px;}
  .hero__title {font-size: 30px;}
  .hero__giftbox-top h3 {font-size: 16px;}
}

@media(max-width:370px) {
	.border-hero {max-width: 100%;}
	.hero__left{display: flex;flex-direction: column;}
	.hero-img {max-width: 80%;right: 0;top: 0;order:2;position: relative;margin-top: 30px;}
	.border-hero{order:1;}
	.hero__cta-row{order:3;margin-top:0;}
}

@media(max-width:350px) {
  /* точкові фінальні штрихи для дуже вузьких екранів — за потреби */
}