:root{
  --bg:#1C1C1F;
  --bg-gray:#2C3E50;
  --bg-soft:#1e1e1c;
  --gold:#daa520;
  --gold-bright:#e0bd4a;
  --cream:#f0f0f0;  
  --grey:#bfbfbf;
  --line:#2a2a2a;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Regular.woff2') format('woff2'),
       url('fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-italic';
  src: url('fonts/Gilroy-BoldItalic.woff2') format('woff2'),
       url('fonts/Gilroy-BoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-bold';
  src: url('fonts/Gilroy-Bold.woff2') format('woff2'),
       url('fonts/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-extrabold';
  src: url('fonts/Gilroy-Extrabold.woff2') format('woff2'),
       url('fonts/Gilroy-Extrabold.woff') format('woff');
  font-weight: 1100;
  font-style: normal;
}

@font-face {
  font-family: 'BetterLand';
  src: url('fonts/Better-Land.otf') format('opentype');

  font-weight: 100;
  font-style: normal;
}


*{margin:0;padding:0;box-sizing:border-box;}

ul li::marker {
  color: var(--gold);
}

.carousel-inner {
  background: var(--bg);
  background-color: var(--bg);
}
.carousel-item {
  background-color: #1C1C1F;
}
.carousel-item,
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  background-color: #1C1C1F;
}

html{scroll-behavior:smooth; border-top: none;
border-bottom: none;}
body{
  background:var(--bg);
  color:var(--cream);
  font-family: 'Gilroy', sans-serif;
  font-weight:500;
  line-height:1.6;
  overflow-x:hidden;
  justify-content:center;
}
.container{
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}
.bonus {
  font-weight: 300;
  font-size: 20px;
}





h1, h2 {
  font-family: 'Gilroy-Bold';
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: normal;
}

a{color:inherit;text-decoration:none;}

.btn2{
  height: 56px;
  font-family: Montserrat;
  background:linear-gradient(135deg,var(--bg),var(--bg-soft));
  color:var(--gold);
  display: inline-flex;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-size: clamp(14px, 12vw, 20px);
  padding:0 48px;
  border:none;
  align-items: center;
  justify-content: center;
  border-radius:30px;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 8px 30px -8px rgba(201,162,39,.5);
}
.btn2:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 40px -8px rgba(201,162,39,.7);
}
.btn2-outline{
  background:transparent;
  border:1px solid var(--gold);
  color:var(--gold);
  box-shadow:none;
}
.btn2-outline:hover{
  background:rgba(201,162,39,.08);
  box-shadow:none;
}


.btn{
  height: 56px;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold));
  color:var(--bg);
  display: inline-flex;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-size: clamp(14px, 12vw, 20px);
  padding:0 48px;
  border:none;
  align-items: center;
  justify-content: center;
  border-radius:30px;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 8px 30px -8px rgba(201,162,39,.5);
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 40px -8px rgba(201,162,39,.7);
}
.btn-outline{
  background:transparent;
  border:1px solid var(--gold);
  color:var(--gold);
  box-shadow:none;
}
.btn-outline:hover{
  background:rgba(201,162,39,.08);
  box-shadow:none;
}
.divider{
  width:64px;
  height:2px;
  background:var(--gold);
  margin:18px 0 24px;
}
.divider.center{margin:18px auto 24px;}
section{
  position:relative;
}






.bonus-card {
  position: relative;
  background: #252529;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  overflow: visible;
    width: fit-content;

}

.bonus-gift {
  position: absolute;
  top: -24px;
  right: -16px;
  width: 60px;
}





/* ===== HERO REDESIGN ===== */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  position:relative;
  overflow:hidden;
  background:var(--bg);
}
.hero-photo-col{
  position:relative;
  overflow:hidden;
}
.hero-photo-col img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  filter:contrast(1.04) brightness(1.1);
}
.hero-photo-col::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(90deg, transparent 92%, var(--bg) 100%),
             linear-gradient(0deg, var(--bg) 0%, transparent 20%),
             linear-gradient(270deg, transparent 92%, var(--bg) 100%);
}
.hero-photo-col::before{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(180deg, var(--bg) 0%, transparent 5%);
  z-index:1;
}
.hero-text-col{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 0;
  position:relative;
  z-index:2;
}


.hero-text-col::before{
  content:'';
  position:absolute;
  left:0; top:20%; bottom:20%;
  width:1px;
  background:linear-gradient(180deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity:.35;
}
.hero-eyebrow{
  font-size:17px;
  letter-spacing:.2em;
  color:var(--gold);
  margin-bottom:28px;
  line-height: 1.2em;
  display:flex;
  align-items:center;
  gap:14px;
}

.hero-h1{
  font-weight:300;
  font-size:clamp(45px,5.5vw,70px);
  letter-spacing:.04em;
  line-height:1.08;
  margin-bottom:0;
  color:var(--cream);
}
.hero-h1 .accent-line{
  display:block;
  font-weight:300;
  color:var(--gold);
  font-size:clamp(64px,7vw,99px);
  letter-spacing:.02em;
}
.hero-h1 .light-line{
  display:block;
  font-weight:300;
  color:var(--cream);
  opacity:.88;
}
.hero-author{
  margin-top:22px;
  font-size:15px;
  font-weight:200;
  letter-spacing:.18em;
  color:var(--grey);
}
.hero-divider{
  width:48px; height:1px;
  background:var(--gold);
  margin:10px 0;
  opacity:.7;
}
.hero-sub{
  font-size:25px;
  font-weight: 100;
  color:rgba(237, 234, 227, 0.932);
  max-width:550px;
  line-height:1.2;
  margin-bottom:20px;
}



.hero-chips{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-bottom: 7px;
}


.bonus-card1 {
  font-size:clamp (12px, 12vw, 18px);
  position: relative;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  overflow: visible;
    width: fit-content;

}



@keyframes gradientShift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
.chip-bold{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  border:2px solid rgba(26, 5, 132, 0.3);
  padding:7px 14px;
  border-radius:2px;
  background:rgba(201,162,39,.05);
}
.hero-cta{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.hero-cta a{
font-size: clamp(14px, 12vw, 20px);
line-height: 1.2;
font-family: 'Gilroy-bold';
}
/* Shard decorations */
.shard-hero{
  position:absolute;
  pointer-events:none;
  z-index:1;
  opacity:.22;
}


  .mobile-br { display: none; }

  ul li {font-size: clamp(14px, 12vw, 20px);
  font-family: Gilroy;
  font-weight: 600  ;
  }

.zamk li {
  
  
  font-family:'Gilroy'; 
  font-weight: 100;
  font-size: clamp(16px, 12vw, 18px);
  padding-top: 3%;
}
.zamk {
  line-height: 1.2; 
  margin-left: 7%;
  

}

.understand {
  margin-bottom: 0;

}

.carousel-control-prev {
  left: -6%;
}

.carousel-control-next {
  right: -6%;
}
@media(max-width:820px){
    .mobile-br { display: block; }
    .understand p {
  font-size: 10px;
}



.hero  {
    padding: 0 20px;
      margin-left: auto;
margin-right: auto;

}

.modules li::marker {
  color: var(--bg);
}

  .about {
    padding-left: 0;
    padding-right: 0;
  }
  .speech {
      
    padding-left: 0;
    padding-right: 0;
    background:var(--bg);


  }

  .forwhom p{
    padding-top: 4%;
    font-size: clamp(16px, 12vw, 18px);
  }
  .speech p {
    font-size: clamp( 16px, 12vw, 20px);
    font-family: Gilroy;
    color: var(--grey);
    font-weight: 400;
    padding-top: 5%;
  }
  }

    .about .container {
    padding: 0 4px;
  }

.light-line {
  line-height:1
}

    .bonus-card1 { 
  font-size: 8px;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 5px 7px;
  overflow: visible;
    width: fit-content;

}



  .hero{
    grid-template-columns:1fr;
    grid-template-rows:auto auto;
    min-height:unset;
  }
  .hero-photo-col{
    height:75vw;
    min-height:280px;
    max-height:420px;
  }
  .hero-photo-col img{
    object-position:center 18%;
  }

.container {
  padding: 0 20px;
  box-sizing: border-box;
}

  .hero-text-col::before{display:none;}
  .hero-h1{font-size:clamp(48px,10vw,70px);}
  .hero-h1 .accent-line{font-size:clamp(55px,13vw,80px);}
  .hero-eyebrow{margin-bottom:16px;}
  .hero-divider{margin:18px 0;}
  .hero-sub{font-size:22px;margin-bottom:24px;}
  .hero-chips{margin-bottom:7px;gap:8px;}
  .chip{font-size:14px;padding:6px 10px;}

  .hero-cta a{font-size:clamp (14px, 12vw, 18px); font-family: 'Montserrat';  line-height: 1.1; text-align: center; letter-spacing: 0.05em;}
}


/* ===== ABOUT ===== */
.about{
  background:var(--bg);

  padding-top: 2%;
  padding-bottom: 5%;
  
}

.about h2 {
  font-size: 20px;
}
.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:20px;
  align-items:center;
}
.about-photo{
  border-radius:4px;
  overflow:hidden;
  filter:grayscale(15%);
  
}
.about-photo ::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Градієнт від прозорого до темно-сірого/чорного */
  background: linear-gradient(to right, transparent 25%, rgba(0, 0, 0, 0.8));
  pointer-events: none; /* Щоб шар не заважав клікати по фото */
}
.about-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.about h2{font-size:clamp(20px,4.5vw,25px);margin-bottom:6px;}
.about-lead{font-size:20px;color:var(--cream);font-weight:800; line-height: 1.15; margin-bottom:2%;}
.about-text{color:var(--grey);font-size:16px;margin-bottom:14px;}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  max-width: 80%;
  margin-left: auto;
margin-right: auto;
}

.about-card {
  
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px 16px;
  transition: border-color .25s ease;
}

.about-card:hover {
  border-color: var(--gold);
}

.about-card-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

.about-card p {
  font-family:'Gilroy-bold';
  font-size: 22px;
  color: var(--cream);
  line-height: 1.6;
}



.about-accordion {
  margin: 24px 0 32px;
}




.acc-q {
  font-family: 'Gilroy';
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.acc-q .plus {
  color: var(--gold);
  font-size: 25px;
  transition: transform .25s ease;
  flex-shrink: 0;
}

.acc-item.open .plus {
  transform: rotate(45deg);
}

.acc-a {
  font-family: 'Gilroy';
  font-weight: 100;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
}

.mobile-br { display: none; }
.acc-item.open .acc-a {
  max-height: 200px;
  padding-bottom: 18px;
}
.forwhom-title {
  white-space: nowrap;
}


@media(max-width: 820px) {

.testi-card {
  min-width: 100%;
  max-height: 60vw;
}

.review-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

  .about-cards {
    grid-template-columns: 1fr;
  display: grid;
  gap: 16px;
  margin-top: 36px;
  max-width: 80%;
  margin-left: auto;
margin-right: auto;

  }

.pain-card2 p {line-height: 1.1; font-size: clamp(14px, 12vw,18px);}

.pain-card2 {
    padding: 14px 32px;
  text-align: center;
    max-width: 82%;
  margin: 0 auto;
}


    .about-photo {
    margin: 0 -20px;
    border-radius: 0;
  }

  .pain-card{ 
    padding: 7px ;
    line-height: 1.3;
  }
  .about-card p {
  font-family:'Gilroy';
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.6;
}
.pain-card .icon{
  color:var(--gold);
  font-size:20px;
  margin-bottom:8px;

}
.about  {
    padding: 0 20px;

}


}
.mobile-br { display: block; }

.stat{
  border-left:2px solid var(--gold);
  padding-left:16px;
}
.stat .num{
  font-size:34px;
  color:var(--gold-bright);
  font-weight:600;
}
.stat .label{
  font-size:13px;
  color:var(--grey);
  text-transform:uppercase;
  letter-spacing:.1em;
}

/* ===== FOR WHOM ===== */
.forwhom{
  position:relative;
  padding-top: 5%;
    padding-bottom: 5%;

}
.forwhom-title {
    font-family: 'BetterLand';
    font-size: 40px;


}
.forwhom .head{
  text-align:center;
  max-width:680px;
  margin:0 auto 64px;
}
.forwhom .head p{color:var(--grey);font-size:17px;margin-top:18px;}


.forwhom-head {
  margin-bottom: 52px;
}

.forwhom-title {
  font-family: 'BetterLand';
  font-size: clamp(75px, 5vw, 68px);
  font-weight: 150;
  margin-top: 10px;
  line-height: 1.1;
}

.forwhom-title span {
  display: inline;
  color: var(--gold);
}

.forwhom-finale {
  margin-top: 20px;
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  font-family: 'Gilroy-Bold';
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1.1;
  opacity: 0.9;
}
.pain-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.pain-grid2{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.pain-card{
  background:#2a2a2a;
  border:1px solid var(--line);
  border-radius:4px;
  padding:16px 10px;
  position:relative;
  transition:border-color .25s ease, transform .25s ease;
}
.pain-card:hover{
  border-color:var(--gold);
  transform:translateY(-4px);
}
.pain-card .icon{
  color:var(--gold);
  font-size:25px;
  font-weight: 400;
  letter-spacing:.2em;
  margin-bottom:8px;
  display:block;
}
.pain-card p{
  font-size:20px;
  color:var(--cream);
  font-weight:400;
}

/* ===== PROGRAM ===== */
.program{
  background:var(--cream);
  font-family: 'Montserrat';
}

.program-head h2{font-size:clamp(32px,4.5vw,48px);}
.program-head p{color:var(--grey);max-width:380px;font-size:16px;}
.module{
  border-radius: 20px;
  margin-top: 10px;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold));
  color: var(--bg);
  padding:14px 10px;
  display:grid;
  grid-template-columns:90px 1fr;
  gap:30px;
  align-items:flex-start;
  transition:padding-left .25s ease;
  margin-bottom: 20px;
}
.module:hover{padding-left:14px;}
.module .mnum{
  margin-top: 5px;
  color: var(--bg);
  font-size:25px;
  letter-spacing:.1em;
  padding-top:2px;
    text-transform:uppercase;

}

.modules li {
  color: var(--bg);
  line-height: 1.3;
  font-size: clamp(14px, 12vw, 18px);
}
.module h3{
  font-size:22px;
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:0.01em;
  line-height: 1.1;
}
.module p{color:var(--bg);font-size:15.5px;max-width:620px;}




/* REVIEW */

.testi-title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 10px 0 40px;
}



.slider-btn.prev {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.slider-btn.next {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.slider-wrapper {
  position: relative;
}

.slider-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.testi-card {
  min-width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 8px;
  background: #1a1a18;
}
.review-screenshot {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}





.quote-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testi-card p {
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}






.name { font-size: 14px; font-weight: 500; }
.role { font-size: 12px; color: var(--grey); }

.slider-btn {


  flex-shrink: 0;
  z-index: 2;

  background: none;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,.08);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}


/* ===== PRICING ===== */
.pricing{
  background:var(--bg);
  margin-bottom: 10%;

}
.price-card{
  max-width:560px;
  margin:0 auto;
  background-color: var(--cream);
  border-radius:30px;
max-width: 90%;  text-align:center;
  position:relative;
}
.price-card h2{font-size:clamp(28px,4vw,38px);margin-bottom:18px;}

.about p {
  font-size: clamp(14px, 12vw, 18px);
}

.phone-error {
  display: none;
  font-size: 12px;
  color: #e05555;
  margin-top: 4px;
}
.phone-error.show {
  display: block;
}
.form-group input.error {
  border-color: #e05555;
}

.results {
    background:var(--cream);
    margin-top: 0 auto;
}

.price-features{
  padding-top: 2%;
  list-style:none;
  text-align:left;
  display:inline-block;
}
.price-features li{
  font-size:clamp(14px, 12vw, 18px);
  color:var(--bg);
  padding-top: 6%;
  line-height: 1.1;
  font-family: 'Gilroy-bold';
  padding-left:5%;
  padding-right: 5%;
  text-align: center;
  position:relative;
  list-style: none;
}

.price-features li ::marker {
  marker: none;
}
.price-features li:last-child{border-bottom:none;}
.price-features li::before{
  display: none;
}
.price-card .btn{width:100%;}

/* ===== FAQ ===== */

.faq-q{
  width:100%;
  background:none;
  border:none;
  color:var(--cream);
  font-family:'Gilroy',sans-serif;
  font-size:18px;
  font-weight:900;
  text-align:left;
  padding:26px 0;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.faq-q .plus{
  font-family:'Space Mono',monospace;
  color:var(--gold);
  font-size:22px;
  transition:transform .25s ease;
  flex-shrink:0;
}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
  color:var(--grey);
  font-size:15.5px;
}
.faq-item.open .faq-a{
  max-height:300px;
  padding-bottom:26px;
}

/* ===== CONTACT FORM ===== */
.contact{
  background:radial-gradient(ellipse at 30% 50%, rgba(201,162,39,.08), transparent 60%), var(--bg);
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.contact h2{font-size:clamp(32px,4.5vw,48px);margin-bottom:18px;}
.contact p{color:var(--grey);font-size:16px;max-width:420px;}
.form-group{margin-bottom:20px;}
.form-group label{
  display:block;
  font-family:'Space Mono',monospace;
  font-size:12px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--grey);
  margin-bottom:8px;
}
.form-group input{
  width:100%;
  background:var(--bg-soft);
  border:1px solid var(--line);
  color:var(--cream);
  padding:15px 16px;
  font-family:'Inter',sans-serif;
  font-size:15px;
  border-radius:2px;
  transition:border-color .25s ease;
}
.form-group input:focus{
  outline:none;
  border-color:var(--gold);
}
.contact .btn{width:100%;margin-top:8px;}

/* ===== FOOTER ===== */
footer{
  padding:50px 0;
  text-align:center;
}


footer .logo{
  font-size:20px;
  letter-spacing:.2em;
  color:var(--gold);
  margin-bottom:8px;
}
footer p{font-size:13px;color:var(--grey);}


  .reveal{opacity:0;transform:translateY(28px) translateZ(0);will-change:opacity,transform;transition:opacity .8s ease,transform .8s cubic-bezier(.2,.8,.2,1);}
  .reveal.in{opacity:1;transform:translateY(0) translateZ(0);}

/* ===== RESPONSIVE ===== */
@media(max-width:880px){
  .hero-grid,.about-grid,.contact-grid{grid-template-columns:1fr;}
  .hero-photo{order:-1;max-width:340px;margin:0 auto;}
  .pain-grid,.testi-grid{grid-template-columns:1fr;}
  .pain-grid2,.testi-grid{grid-template-columns:1fr;}
  .about-stats{grid-template-columns:1fr 1fr;}
  .module{grid-template-columns:1fr;gap:10px;}
  .price-card{padding:40px 26px;}
}


@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.btn {
  background: linear-gradient(
    110deg,
    var(--gold) 0%,
    var(--gold-bright) 40%,
    #fff8d6 50%,       /* світла смужка */
    var(--gold-bright) 60%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
.btn:hover {
  animation-play-state: paused; /* зупиняється при наведенні */
}

