﻿:root {
  --color-primary: #d4467e;
  --color-secondary: #f5a623;
  --color-bg-cream: #fff9f5;
  --color-text-main: #2d2d2d;
  --color-text-secondary: #6b6b6b;
  --color-white: #ffffff;
  --color-shadow: rgba(45, 45, 45, 0.12);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-pill: 999px;
  --container: 1200px;
  --transition: all 0.3s ease;
  --shadow-soft: 0 10px 24px rgba(45, 45, 45, 0.12);
  --shadow-strong: 0 16px 36px rgba(45, 45, 45, 0.2);
  --glass: rgba(255, 255, 255, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
  background-image: radial-gradient(
    circle at 15% -10%,
    rgba(212, 70, 126, 0.08),
    transparent 35%
  );
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: 0.55rem;
  background: #111;
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.65rem, 5vw, 2.6rem);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-cream {
  background: var(--color-bg-cream);
}

.section-white {
  background: var(--color-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.site-header.scrolled {
  box-shadow: 0 10px 24px rgba(45, 45, 45, 0.12);
}

.header-inner {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 10px 18px rgba(212, 70, 126, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-main {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  font-weight: 800;
  color: #3b2f35;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(59, 47, 53, 0.72);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-primary), #e16b96);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
  transition: var(--transition);
  box-shadow: 0 12px 22px rgba(212, 70, 126, 0.24);
}

.btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 28px rgba(212, 70, 126, 0.34);
}

.btn-small {
  width: auto;
  padding: 0.58rem 1rem;
  font-size: 0.84rem;
  white-space: nowrap;
}

.btn-large {
  padding: 1rem 1.4rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.2rem 1.7rem;
  font-size: 1.08rem;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://academiadigitaldye.com/wp-content/uploads/2025/08/img1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1.4px) saturate(1.08) contrast(1.05);
  transform: scale(1.03);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.2), transparent 35%),
    linear-gradient(130deg, rgba(212, 70, 126, 0.72), rgba(245, 166, 35, 0.6));
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-content {
  padding: clamp(1.2rem, 3.2vw, 2rem);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, var(--glass), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 38px rgba(17, 10, 14, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: rgba(212, 70, 126, 0.12);
  color: #8f2f55;
  border: 1px solid rgba(212, 70, 126, 0.3);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 18px rgba(20, 13, 16, 0.15);
}

.badge-strong {
  margin: 0.75rem auto 1.25rem;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(212, 70, 126, 0.4);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 58ch;
}

.text-gradient {
  background: linear-gradient(135deg, #fff3c7, #ffd6ea 52%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-media {
  max-width: 470px;
  margin-inline: auto;
  animation: floaty 6.5s ease-in-out infinite;
}

.hero-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 540px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem;
  box-shadow: 0 18px 36px rgba(45, 45, 45, 0.24);
  image-rendering: auto;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56%;
  height: 4px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.section-title p {
  margin-top: 0.9rem;
  color: var(--color-text-secondary);
}

.problem-grid,
.stats-grid,
.bonus-grid {
  display: grid;
  gap: 1rem;
}

.card,
.stat-card,
.project-card,
.bonus-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 70, 126, 0.1);
}

.card,
.bonus-card,
.stat-card {
  padding: 1.2rem;
}

.card {
  transition: var(--transition);
}

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

.icon {
  font-size: 1.6rem;
  margin-bottom: 0.45rem;
}

.section-closing,
.stats-footnote,
.bonus-highlight {
  margin-top: 1.4rem;
  text-align: center;
  font-weight: 600;
}

.stats-grid {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 166, 35, 0.08));
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--color-primary);
}

.project-card {
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #fff, #fff8f3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-card img {
  height: clamp(120px, 24vw, 190px);
  object-fit: contain;
  background: #fff;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.project-card p {
  padding: 0.8rem 0.7rem;
  font-weight: 600;
  text-align: center;
  font-size: 0.92rem;
  color: #4a3a42;
}

.project-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}

.project-card:hover img {
  transform: translateZ(0) scale(1.02);
}

.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 1.05rem;
  transition: var(--transition);
  background: linear-gradient(180deg, #ffffff, #fff8f4);
}

.bonus-card .icon {
  margin-bottom: 0.1rem;
  font-size: 1.35rem;
  line-height: 1;
}

.bonus-card img {
  width: min(100%, 230px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(160deg, #ffffff, #fff4ec);
  border-radius: 0.95rem;
  border: 1px solid rgba(212, 70, 126, 0.12);
  padding: 0.25rem;
  box-shadow: 0 10px 20px rgba(45, 45, 45, 0.1);
}

.bonus-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  min-height: 2.8em;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.bonus-value {
  margin-top: 0.2rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.98rem;
}

.bonus-free {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.28rem 0.58rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #f5a623, #d4467e);
  box-shadow: 0 8px 16px rgba(212, 70, 126, 0.25);
}

.price-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(140deg, rgba(212, 70, 126, 0.28), rgba(245, 166, 35, 0.38));
}

.price-content {
  text-align: center;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.2rem;
  backdrop-filter: blur(6px);
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: 0 18px 34px rgba(60, 37, 50, 0.18);
}

.price-lead {
  font-size: 1.25rem;
  font-weight: 600;
}

.old-price {
  margin-top: 0.75rem;
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  color: var(--color-text-secondary);
}

.new-price {
  color: var(--color-primary);
  font-size: clamp(2.2rem, 10vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
}

.guarantee,
.payments {
  margin-top: 1rem;
  color: #4a4a4a;
}

.btn-pulse {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 22px rgba(212, 70, 126, 0.28);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 20px 34px rgba(212, 70, 126, 0.45);
  }
}

.site-footer {
  background: #2d2d2d;
  color: #f4f4f4;
  padding: 2.4rem 0;
  text-align: center;
  border-top: 4px solid rgba(245, 166, 35, 0.65);
}

.site-footer p + p {
  margin-top: 0.7rem;
}

.footer-link a {
  color: #ffc98a;
  text-decoration: underline;
}

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

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

.hero .hero-content,
.hero h1,
.hero .badge {
  color: #ffffff;
}

.hero .badge {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
  .btn {
    width: auto;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .problem-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 1.85rem;
    height: 1.85rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2.8rem;
  }

  .hero-content {
    margin-right: 0.8rem;
  }

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

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

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

  .projects-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .btn-pulse,
  .reveal,
  .project-card,
  .card,
  .bonus-card,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
