:root {
  --primary: #a7826b;
  --primary-dark: #8c6b52;
  --primary-light: #c4a088;
  --secondary: #8c4519;
  --secondary-light: #b8652a;
  --accent: #8c4519;
  --success: #6b8e23;
  --dark: #3a2d1b;
  --dark-light: #4a3a28;
  --gray: #6b5b4f;
  --gray-light: #8b7b6f;
  --white: #f4f4f4;
  --cream: #e8dbd5;
  --gradient-primary: linear-gradient(135deg, #a7826b 0%, #8c4519 100%);
  --gradient-secondary: linear-gradient(135deg, #8c4519 0%, #b8652a 100%);
  --gradient-dark: linear-gradient(135deg, #3a2d1b 0%, #4a3a28 100%);
  --shadow-sm: 0 1px 2px 0 #3a2d1b0d;
  --shadow-md: 0 4px 6px -1px #3a2d1b1a;
  --shadow-lg: 0 10px 15px -3px #3a2d1b1a;
  --shadow-xl: 0 20px 25px -5px #3a2d1b1a;
  --shadow-2xl: 0 25px 50px -12px #3a2d1b40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-family: Playfair Display, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff3, transparent);
  transition: left 0.5s;
}

.btn:hover:before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #a7826b1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card:hover:before {
  transform: scaleX(1);
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.animate-fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.animate-slide-left {
  opacity: 0;
  transform: translate(-50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.animate-slide-left.in-view {
  opacity: 1;
  transform: translate(0);
  will-change: auto;
}

.animate-slide-right {
  opacity: 0;
  transform: translate(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.animate-slide-right.in-view {
  opacity: 1;
  transform: translate(0);
  will-change: auto;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.rotate {
  animation: rotate 20s linear infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow-soft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px #a7826b4d, 0 0 #a7826b66;
  }

  50% {
    transform: scale(1.25);
    box-shadow: 0 6px 20px #a7826b66, 0 0 20px #a7826b4d, 0 0 0 4px #a7826b1a;
  }
}

@keyframes bounce-soft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-1px);
  }
}

@keyframes pulse-glow-premium {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px #6b8e234d, 0 0 0 1px #f4f4f41a inset;
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 15px 35px #6b8e2366, 0 0 30px #6b8e234d, 0 0 60px #6b8e2333,
      0 0 0 1px #f4f4f433 inset;
  }
}

@keyframes pulse-ring-premium {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.15);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-slide-left,
  .animate-slide-right {
    transition: none;
  }

  .floating,
  .pulse,
  .rotate {
    animation: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-primary);
  color: #fff;
  z-index: 1000;
  padding: 0.75rem 0;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-bar-text {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.highlight {
  width: 80%;

  font-weight: 700;
  background: #fff3;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-right: 0.5rem;
  backdrop-filter: blur(5px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f4f4, #e8dbd5, #f4f4f4);
  padding-top: 4rem;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  max-width: 100vw;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #a7826b, #8c4519);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #8c4519, #b8652a);
  top: 50%;
  right: -150px;
  animation-delay: 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #6b8e23, #a7826b);
  bottom: -125px;
  left: 30%;
  animation-delay: 4s;
}

@media (max-width: 768px) {
  .orb-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
  }

  .orb-2 {
    width: 150px;
    height: 150px;
    right: -75px;
  }

  .orb-3 {
    width: 125px;
    height: 125px;
    bottom: -62px;
  }
}

@media (max-width: 480px) {
  .orb-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    left: -75px;
  }

  .orb-2 {
    width: 100px;
    height: 100px;
    right: -50px;
  }

  .orb-3 {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #a7826b1a;
  border: 1px solid #a7826b33;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  backdrop-filter: blur(10px);

  @media (max-width: 768px) {
    max-width: 80%;
  }
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-family: Playfair Display, serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--dark);

  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  margin-bottom: 3rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

.video-container {
  width: 100vw;
  margin: 3rem 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
  transform: translateY(-5px);
}

#vid_68140fb8de5bff99264f5258 {
  transition: all 0.3s ease;
  background: #f4f4f41a;
  backdrop-filter: blur(20px);
  cursor: pointer;
  width: 100%;
}

#vid_68140fb8de5bff99264f5258:hover {
  box-shadow: var(--shadow-2xl) !important;
  border-color: var(--primary) !important;
}

.cta-section {
  margin: 2rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-hero {
  font-size: 1.2rem;
  padding: 1.25rem 2.5rem;
  border-radius: 15px;
}

.btn-icon {
  font-size: 1.3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: #f4f4f4cc;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid #a7826b1a;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: Playfair Display, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #f4f4f44d;
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 1.5rem 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-content {
    padding: 2.5rem 0;
  }

  .hero-badge {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.1rem);
    max-width: 85%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .btn-hero {
    width: 90%;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-orb {
    animation: none;
  }

  .video-wrapper:hover {
    transform: none;
  }
}

.objections {
  background: linear-gradient(135deg, #e8dbd5, #f4f4f4, #e8dbd5);
  position: relative;
}

.objections:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      #a7826b08 1px,
      transparent 1px
    ),
    radial-gradient(circle at 75% 75%, #8c451908 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.objection-card {
  text-align: center;
  background: #f4f4f4cc;
  backdrop-filter: blur(20px);
  border: 1px solid #a7826b1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.objection-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a7826b1a, transparent);
  transition: left 0.5s;
}

.objection-card:hover:after {
  left: 100%;
}

.objection-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.objection-text {
  font-size: 1.1rem;
  color: var(--gray);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.solution-container {
  display: flex;
  justify-content: center;
}

.solution-box {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 3.5rem 3rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.solution-box:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #f4f4f41a 1px, transparent 1px);
  background-size: 30px 30px;
  animation: rotate 20s linear infinite;
}

.solution-header {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.sparkle-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: pulse 2s infinite;
}

.main-headline {
  font-family: Playfair Display, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight-text {
  background: #f4f4f433;
  padding: 0.3rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid #f4f4f44d;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.05em;
}

.solution-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.solution-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  background: #f4f4f41a;
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid #f4f4f433;
  transition: all 0.3s ease;
}

.solution-point:hover {
  background: #f4f4f426;
  transform: translate(5px);
}

.solution-point strong {
  font-weight: 700;
}

.check-icon {
  background: #f4f4f44d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 2px solid #f4f4f466;
  margin-top: 0.1rem;
}

.bonuses {
  background: linear-gradient(135deg, #f4f4f4, #e8dbd5, #f4f4f4);
  position: relative;
}

.bonuses:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      #8c45190d 2px,
      transparent 2px
    ),
    radial-gradient(circle at 75% 75%, #a7826b0d 2px, transparent 2px);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
}

.intro-content {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 2rem;
}

.highlight-text {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.intro-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--gray);
  font-weight: 500;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.opportunity-card {
  text-align: center;
  background: #f4f4f4e6;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.opportunity-card h3 {
  font-family: Playfair Display, serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.opportunity-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1rem;
}

.profit-highlight {
  margin: 4rem 0;
}

.profit-box {
  background: var(--gradient-primary);
  color: #fff;
  padding: 3.5rem 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  border: 3px solid #f4f4f433;
}

.profit-box:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #f4f4f414 1px, transparent 1px);
  background-size: 50px 50px;
  animation: rotate 25s linear infinite reverse;
}

.profit-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.profit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #f4f4f433;
  border: 1px solid #f4f4f44d;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(10px);
  letter-spacing: 0.05em;
}

.profit-title {
  font-family: Playfair Display, serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.02em;
}

.profit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.profit-card {
  background: #f4f4f426;
  border: 2px solid #f4f4f433;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profit-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #f4f4f41a, transparent);
  transition: left 0.6s;
}

.profit-card:hover {
  background: #f4f4f440;
  transform: translateY(-8px);
  border-color: #f4f4f466;
  box-shadow: 0 25px 50px #3a2d1b26;
}

.profit-card:hover:before {
  left: 100%;
}

.profit-icon-wrapper {
  margin-bottom: 2rem;
}

.profit-icon {
  font-size: 3.5rem;
  background: #f4f4f433;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid #f4f4f44d;
  transition: all 0.3s ease;
}

.profit-card:hover .profit-icon {
  transform: scale(1.1);
  background: #f4f4f44d;
  border-color: #f4f4f480;
}

.profit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.profit-content h4 {
  font-family: Playfair Display, serif;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.profit-value {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: #f4f4f4f2;
}

.profit-detail {
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.profit-footer {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid #f4f4f433;
}

.profit-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #f4f4f41a;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid #f4f4f433;
  max-width: 600px;
  margin: 0 auto;
}

.profit-cta-icon {
  font-size: 2rem;
  flex-shrink: 0;
  animation: sparkle 2s ease-in-out infinite;
}

.profit-cta {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
}

.course-content {
  background: linear-gradient(135deg, #f4f4f4, #e8dbd5, #f4f4f4);
  position: relative;
}

.course-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 30% 40%,
      #a7826b08 2px,
      transparent 2px
    ),
    radial-gradient(circle at 70% 60%, #8c451908 2px, transparent 2px);
  background-size: 100px 100px;
  background-position: 0 0, 50px 50px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.content-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f4f4f4e6;
  backdrop-filter: blur(20px);
  border: 1px solid #a7826b1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.content-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a7826b1a, transparent);
  transition: left 0.5s;
}

.content-item:hover:after {
  left: 100%;
}

.content-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.content-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.content-item h3 {
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}

.content-item p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.certificates-section {
  display: flex;
  justify-content: center;
}

.certificates-container {
  background: var(--gradient-primary);
  color: #fff;
  padding: 4rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  max-width: 1300px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 3px solid #f4f4f433;
}

.certificates-container:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #f4f4f414 1px, transparent 1px);
  background-size: 50px 50px;
  animation: rotate 25s linear infinite;
}

.certificates-header {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.header-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: bounce 2s infinite;
}

.certificates-header h3 {
  font-family: Playfair Display, serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.header-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 500;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.certificate-item {
  background: #f4f4f41f;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 2px solid #f4f4f433;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.certificate-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #f4f4f41a, transparent);
  transition: left 0.6s;
}

.certificate-item:hover {
  background: #f4f4f433;
  transform: translateY(-8px);
  border-color: #f4f4f466;
  box-shadow: 0 25px 50px #3a2d1b26;
}

.certificate-item:hover:before {
  left: 100%;
}

.cert-icon-wrapper {
  margin-bottom: 2rem;
  text-align: center;
}

.cert-icon {
  font-size: 3.5rem;
  background: #f4f4f433;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid #f4f4f44d;
  transition: all 0.3s ease;
}

.certificate-item:hover .cert-icon {
  transform: scale(1.1);
  background: #f4f4f44d;
  border-color: #f4f4f480;
}

.cert-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cert-content h4 {
  font-family: Playfair Display, serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.cert-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.8rem;
  flex: 1;
}

.cert-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cert-feature {
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 500;
  text-align: left;
  padding-left: 0.5rem;
}

.certificates-footer {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
  border-top: 1px solid #f4f4f433;
}

.footer-highlight {
  background: #f4f4f41a;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid #f4f4f433;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.highlight-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: sparkle 2s ease-in-out infinite;
}

.footer-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.footer-text strong {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .objections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-headline {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  .solution-subtitle {
    font-size: 1.1rem;
  }

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

  .opportunities-grid .opportunity-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .highlight-text {
    font-size: 1.3rem;
  }

  .intro-description {
    font-size: 1.2rem;
  }

  .profit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profit-title {
    font-size: 2.8rem;
  }

  .profit-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .profit-icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }

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

  .content-grid .content-item:nth-child(9) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .certificates-container {
    padding: 3.5rem 3rem;
  }

  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0;
  }

  .certificate-item {
    min-height: auto;
    padding: 2.5rem 2rem;
  }

  .certificates-header h3 {
    font-size: 2rem;
  }

  .header-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .objections-grid {
    grid-template-columns: 1fr;
  }

  .objection-card {
    padding: 2rem;
  }

  .objection-icon {
    font-size: 2.5rem;
  }

  .objection-text {
    font-size: 1rem;
  }

  .solution-box {
    padding: 2.5rem 2rem;
  }

  .main-headline {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    line-height: 1.3;
  }

  .highlight-text {
    font-size: 0.95em;
    padding: 0.3rem 0.7rem;
    margin-top: 0.3rem;
  }

  .solution-subtitle {
    font-size: 1rem;
  }

  .solution-point {
    font-size: 1rem;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .check-icon {
    margin-top: 0;
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .opportunities-grid .opportunity-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .profit-box {
    padding: 2.5rem 1.5rem;
    border-radius: 25px;
  }

  .profit-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .profit-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .profit-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }

  .profit-content h4 {
    font-size: 1.2rem;
  }

  .profit-value {
    font-size: 1.1rem;
  }

  .profit-detail {
    font-size: 0.9rem;
  }

  .profit-cta-wrapper {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.25rem 1.5rem;
  }

  .profit-cta {
    font-size: 1.1rem;
    text-align: center;
  }

  .profit-cta-icon {
    font-size: 1.8rem;
  }

  .highlight-text {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }

  .intro-description {
    font-size: 1.1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-grid .content-item:nth-child(9) {
    grid-column: auto;
    max-width: none;
  }

  .content-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .certificates-container {
    padding: 3rem 2rem;
  }

  .certificates-header h3 {
    font-size: 1.8rem;
  }

  .header-subtitle {
    font-size: 1rem;
  }

  .certificate-item {
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .cert-content {
    text-align: center;
  }

  .cert-features {
    align-items: center;
  }

  .cert-feature {
    text-align: center;
    padding-left: 0;
  }

  .footer-highlight {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .footer-text {
    text-align: center;
    font-size: 1rem;
  }
}

.social-proof {
  background: linear-gradient(135deg, #f4f4f4, #e8dbd5, #f4f4f4);
  position: relative;
}

.social-proof:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      #a7826b08 2px,
      transparent 2px
    ),
    radial-gradient(circle at 80% 70%, #8c451908 2px, transparent 2px);
  background-size: 120px 120px;
  background-position: 0 0, 60px 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: #f4f4f4e6;
  backdrop-filter: blur(20px);
  border: 1px solid #a7826b1a;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a7826b1a, transparent);
  transition: left 0.5s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card:hover:before {
  left: 100%;
}

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

.testimonial-avatar-placeholder {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-initials {
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.testimonial-info h4 {
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--dark);
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.testimonial-rating {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  font-size: 1rem;
}

.stats-section {
  margin: 4rem 0;
}

.stats-section-first {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #f4f4f4cc;
  margin: 4rem 0;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #a7826b1a;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    width: 90%;
    margin-left: auto;
  }
}

.stat-divider-first {
  @media (min-width: 768px) {
    width: 1px;
    height: 50px;
    background: #a7826b33;
  }
}

.stat-item-first {
  text-align: center;
}

.stat-number-first {
  font-family: Playfair Display, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.stat-label-first {
  font-family: Playfair Display, serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.stat-item-first {
  text-align: center;
}

.stat-number-first {
  font-family: Playfair Display, serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.stat-label-first {
  font-family: Playfair Display, serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: var(--gradient-primary);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  border: 1px solid #a7826b1a;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.success-gallery {
  margin: 4rem 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h3 {
  font-family: Playfair Display, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.pricing {
  background: linear-gradient(135deg, #e8dbd5, #f4f4f4, #e8dbd5);
  position: relative;
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;

  width: 100%;
}

.pricing-card-header {
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
}

.price-header {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f4f4f433;
  color: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.price-main {
  margin-bottom: 1rem;
}

.price-old {
  font-size: 1.5rem;
  color: #bbb7b7;
  text-decoration: line-through;
  margin-right: 1rem;
}

.price-current {
  font-family: Playfair Display, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-subtitle {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

.features-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 2rem 0 2rem 1rem;
  position: relative;
  z-index: 1;
}

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

.feature-item {
  display: flex;
  align-items: left;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 500;
}

.feature-item .check-icon {
  background: var(--success);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.exclusive-app-card {
  background: #a7826b1f;
  color: var(--gray);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid #a7826b1a;
}

.app-exclusive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  width: 15rem;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.bonus-section {
  background: #a7826b1f;
  color: var(--primary);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 2rem;
  border: 2px solid #a7826b1a;
  border-radius: 20px;
}

.bonus-section h4 {
  font-family: Playfair Display, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.bonus-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}

.bonus-icon {
  font-size: 1.2rem;
  background: #adacac50;
  border-radius: 50%;
  padding: 1rem;
}

.cta-section {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-section-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}

.btn-large {
  font-size: 1.3rem;
  padding: 1.5rem 3rem;
  border-radius: 15px;
}

.btn-pulse {
  animation: pulse-glow-premium 2s infinite;
  background: #6b8e23;
}

.btn-checkout {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-2xl);
}

.btn-text {
  font-weight: 700;
  letter-spacing: 0.025em;
  word-wrap: break-word;
  width: 80%;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.security-icon {
  font-size: 1.1rem;
}

.urgency-section {
  text-align: center;
  position: relative;
  z-index: 1;
}

.countdown-container {
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.time-unit {
  text-align: center;
}

.time-value {
  font-family: Playfair Display, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.time-value.flash {
  animation: flash 0.3s ease-in-out;
}

.time-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.guarantee-section {
  margin-top: 3rem;
}

.guarantee-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid #a7826b1a;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-content h3 {
  font-family: Playfair Display, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.faq {
  background: linear-gradient(135deg, #f4f4f4, #e8dbd5, #f4f4f4);
  position: relative;
}

.faq:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 30% 40%,
      #a7826b08 2px,
      transparent 2px
    ),
    radial-gradient(circle at 70% 60%, #8c451908 2px, transparent 2px);
  background-size: 150px 150px;
  background-position: 0 0, 75px 75px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid #a7826b1a;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #a7826b0d;
}

.faq-question h3 {
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--dark);
  line-height: 1.4;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.show {
  padding: 0 2rem 2rem;
  max-height: 200px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

.contact-section {
  margin-top: 4rem;
}

.contact-card {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-2xl);

  max-width: 600px;
  margin: 0 auto;
}

.contact-card h3 {
  font-family: Playfair Display, serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.contact-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-face {
  border: 2px solid white;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      #f4f4f408 1px,
      transparent 1px
    ),
    radial-gradient(circle at 75% 75%, #a7826b08 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: 0 0, 50px 50px;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: Playfair Display, serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.brand-tagline {
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.5;
}

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

.footer-column h4 {
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #f4f4f4cc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-social {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-social h4 {
  font-family: Playfair Display, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f4f4f41a;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-divider {
  height: 1px;
  background: #f4f4f41a;
  margin-bottom: 2rem;
}

.footer-bottom-content {
  text-align: center;
}

.footer-bottom-content p {
  font-size: 0.9rem;
  color: #f4f4f499;
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
  }

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

  .price-current {
    font-size: 3rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .stats-container {
    padding: 2rem;
    gap: 1.5rem;
  }

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

  .gallery-item img {
    height: 500px;
    object-fit: cover;
    display: block;
  }

  .price-current {
    font-size: 2.5rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .time-value {
    font-size: 2rem;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer.show {
    padding: 0 1.5rem 1.5rem;
  }

  .contact-card {
    padding: 2rem;
    margin: 0 1rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }
}

@keyframes flash {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card:before,
  .countdown-timer,
  .social-link:hover {
    animation: none;
  }

  .faq-icon {
    transition: none;
  }

  .testimonial-card:hover,
  .gallery-item:hover,
  .faq-item:hover {
    transform: none;
  }
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  border: 2px solid var(--primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  max-width: 100%;
  width: 100%;
  background: #f4f4f4f2;
  border-radius: 25px;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  position: relative;
}
@media (max-width: 768px) {
  .pricing-wrapper {
    max-width: 100%;
    margin: 0 1rem 4rem 1rem;
  }

  .pricing-card {
    max-width: 100%;
  }
}
.price-header {
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f4f4f433;
  border: 1px solid #f4f4f44d;
  border-radius: 50px;
  padding: 0.5rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.badge-icon {
  font-size: 1rem;
}

.price-main {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.price-old {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: 500;
}

.price-current {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.features-section {
  padding: 2rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: left;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}

.check-icon {
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.bonus-section {
  background: #a7826b1a;
  padding: 2rem;
  margin: 0 2rem 2rem;
  border-radius: 15px;
  border: 1px solid #a7826b33;
}

.bonus-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.bonus-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
}

.bonus-icon {
  font-size: 1.5rem;
  background: #a7826b33;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exclusive-app-section {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.exclusive-app-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a7826b1a, transparent);
  transition: left 0.5s;
}

.exclusive-app-card:hover:before {
  left: 100%;
}

.exclusive-app-card:hover {
  background: #a7826b26;
  border-color: #a7826b4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #a7826b33;
}

.app-description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-exclusive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px #a7826b4d;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  animation: pulse-glow-soft 2.5s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid #f4f4f433;
}

.app-exclusive-badge:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #f4f4f44d, transparent);
  transition: left 0.8s;
}

.app-exclusive-badge:hover:before {
  left: 100%;
}

.app-exclusive-badge .badge-icon {
  font-size: 1rem;
  animation: bounce-soft 2s ease-in-out infinite;
}

.cta-section {
  padding: 2rem;
  text-align: center;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1.25rem 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  position: relative;
  overflow: visible;
}

.btn-checkout {
  background: linear-gradient(135deg, #6b8e23, #8fbc8f);
  color: #fff;
  border: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  box-shadow: 0 10px 25px #6b8e234d, 0 0 0 1px #f4f4f41a inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-checkout:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #f4f4f433, transparent);
  transition: left 0.6s;
}

.btn-checkout:hover:before {
  left: 100%;
}

.btn-checkout .btn-text {
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  white-space: normal;
  word-wrap: break-word;
  hyphens: auto;
}

.btn-pulse {
}

.btn-pulse:after {
  content: "";
  position: absolute;
  inset: -4px;
  background: var(--gradient-primary);
  border-radius: 19px;
  z-index: -1;
  opacity: 0;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.security-icon {
  font-size: 1rem;
  color: var(--primary);
}

.feature-app-exclusive {
  background: #a7826b14;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #a7826b26;
  position: relative;
  overflow: hidden;
}

.feature-app-exclusive:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a7826b1a, transparent);
  transition: left 0.5s;
}

.feature-app-exclusive:hover:before {
  left: 100%;
}

.feature-app-exclusive .check-icon {
  background: var(--primary);
  box-shadow: 0 2px 8px #a7826b4d;
}

.urgency-section {
  background: var(--gradient-secondary);
  color: #fff;
  padding: 1rem 1rem;
  text-align: cente.5r;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 25px 25px;
}

.urgency-section:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #f4f4f41a 1px, transparent 1px);
  background-size: 25px 25px;
  animation: rotate 20s linear infinite reverse;
}

.countdown-container {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.countdown-icon {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  background: #f4f4f426;
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 2px solid #f4f4f433;

  margin: 0 auto;
  box-shadow: 0 8px 25px #3a2d1b1a;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
}

.time-value {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: #f4f4f440;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  min-width: 65px;
  backdrop-filter: blur(10px);
  border: 2px solid #f4f4f44d;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px #3a2d1b1a;
  position: relative;
  overflow: hidden;
}

.time-value:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #f4f4f433, transparent);
  transition: left 0.5s;
}

.time-value.flash {
  background: #f4f4f466;
  transform: scale(1.05);
  border-color: #f4f4f480;
}

.time-value.flash:before {
  left: 100%;
}

.time-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.urgency-subtitle {
  padding: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
  font-size: 0.85rem;
  z-index: 1;
  font-weight: 500;
}

.guarantee-section {
  display: flex;
  justify-content: center;
}

.guarantee-card {
  background: var(--gradient-secondary);
  color: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.guarantee-card:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #f4f4f41a 1px, transparent 1px);
  background-size: 30px 30px;
  animation: rotate 18s linear infinite;
}

.guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
  background: #f4f4f433;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.guarantee-content {
  text-align: left;
  position: relative;
  z-index: 1;
}

.guarantee-content h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.guarantee-content p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

@keyframes pulse-glow-soft {
  0%,
  to {
    transform: scale(1);
    box-shadow: 0 4px 15px #a7826b4d, 0 0 #a7826b66;
  }

  50% {
    transform: scale(1.01);
    box-shadow: 0 6px 20px #a7826b66, 0 0 20px #a7826b4d, 0 0 0 4px #a7826b1a;
  }
}

@keyframes bounce-soft {
  0%,
  20%,
  50%,
  80%,
  to {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-1px);
  }
}

@keyframes pulse-glow-premium {
  0%,
  to {
    transform: scale(1);
    box-shadow: 0 15px 35px #6b8e2366, 0 0 30px #6b8e234d, 0 0 60px #6b8e2333,
      0 0 0 1px #f4f4f433 inset;
  }

  50% {
    transform: scale(1.13);
    box-shadow: 0 15px 35px #6b8e2366, 0 0 30px #6b8e234d, 0 0 60px #6b8e2333,
      0 0 0 1px #f4f4f433 inset;
  }
}

@keyframes pulse-ring-premium {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  25% {
    opacity: 0.3;
    transform: scale(1.15);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.25);
  }

  75% {
    opacity: 0.2;
    transform: scale(1.4);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.btn-checkout:hover {
  animation-play-state: paused;
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 25px 50px #6b8e2380, 0 0 50px #6b8e2366, 0 0 100px #6b8e2340,
    0 0 0 1px #f4f4f450 inset;
}

.btn-checkout:active {
  transform: scale(1.01) translateY(-1px);
  transition: all 0.1s ease;
}

.btn-checkout:focus {
  outline: none;
  box-shadow: 0 20px 40px #6b8e2366, 0 0 0 3px #6b8e234d,
    0 0 0 1px #f4f4f433 inset;
}

@media (max-width: 768px) {
  .price-current {
    font-size: 3rem;
  }

  .section-header .section-title {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .feature-item {
    align-items: flex-start;
    gap: 1rem;
  }

  .check-icon {
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
  }

  .feature-app-exclusive {
    order: 10;
    margin-top: 1rem;
    background: #a7826b1f;
    border: 2px solid #a7826b33;
  }

  .bonus-section {
    margin: 0 1rem 1.5rem;
  }

  .exclusive-app-card {
    margin: 0 1rem 1.5rem;
  }

  .exclusive-app-section {
    padding: 0;
  }

  .app-description {
    text-align: center;
    font-size: 0.9rem;
  }

  .app-exclusive-badge {
    align-self: center;
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }

  .security-badges {
    gap: 1rem;
  }

  .security-item {
    font-size: 0.8rem;
  }

  .countdown-timer {
    gap: 0.8rem;
    padding: 1rem;
  }

  .time-value {
    font-size: 1.6rem;
    min-width: 55px;
    padding: 0.5rem 0.6rem;
  }

  .time-label {
    font-size: 0.7rem;
  }

  .countdown-header {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .guarantee-content {
    text-align: center;
  }

  .guarantee-content h3 {
    font-size: 1.3rem;
  }

  .cta-section {
    padding: 2rem 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .btn-checkout {
    padding: 1.25rem 1.5rem;
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    margin: 0 1rem 1.5rem;
    flex-direction: row;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  .btn-checkout .btn-text {
    font-size: 1.1rem;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
  }

  .btn-large {
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    margin: 0 1rem 1.5rem;
  }

  .btn-checkout:hover {
    transform: scale(1.05) translateY(-3px);
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 1.5rem 0;
    max-width: 90vw;
  }

  .btn-checkout {
    padding: 1.2rem 1rem;
    font-size: 1rem;
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    margin: 0 0.5rem 1.5rem;
  }

  .btn-checkout .btn-text {
    font-size: 1rem;
  }

  .btn-large {
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    margin: 0 0.5rem 1.5rem;
  }

  @keyframes pulse-glow-soft {
    0%,
    to {
      transform: scale(1);
      box-shadow: 0 4px 15px #6b8e234d;
    }

    50% {
      transform: scale(1.01);
      box-shadow: 0 5px 18px #6b8e2359;
    }
  }
}
