/*#### V1.24 #####*/
/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
li,
figure {
  margin: 0;
  padding: 0;
}

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

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

ul {
  padding-left: 1.25rem;
}

/* =========================
   VARIABLES
========================= */
:root {
  --container: 1120px;
  --narrow: 720px;

  --bg: #f7f5f2;
  --bg-soft: #efeae3;
  --bg-card: #ffffff;
  --bg-muted: #f3efe9;

  --text: #1f2937;
  --muted: #6b7280;
  --heading: #1f2937;

  --primary: #7c4dff;
  --primary-dark: #6a3ef0;

  --border: #e7dfd5;

  --radius: 20px;
  --radius-lg: 24px;

  --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-hero: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-btn: 0 12px 30px rgba(124, 77, 255, 0.35);
}

/* =========================
   BASE
========================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

main {
  background: var(--bg);
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--narrow));
  margin: 0 auto;
}

.section {
  padding: 48px 0;
  background: var(--bg);
}

.section + .section,
.section + .section-alt,
.section-alt + .section {
margin-top: 20px;
}

.section-alt {
  background: var(--bg-soft);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--heading);
}

p {
  font-size: 1.06rem;
  color: var(--text);
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

/* =========================
   HEADER
========================= */
.site-header {
  border-bottom: 1px solid #e9e2d9;
  background: var(--bg);
}

.header-inner {
  padding: 18px 0;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: 56px 0 36px;
  background: linear-gradient(180deg, #faf8f5 0%, #f3eee7 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(124, 77, 255, 0.12) 0%,
    rgba(124, 77, 255, 0) 70%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-media img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
   max-width:520px;
   margin:auto;
   box-shadow:0 20px 50px rgba(0,0,0,0.12);   
}

.tag {
  display: inline-block;
  background: #ede9fe;
  color: #6d28d9;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 18px;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
  box-shadow: var(--shadow-soft);
}

.info-box p:last-child {
  margin-bottom: 0;
}

.quick-points {
  padding-left: 20px;
  margin: 18px 0 20px;
}

.quick-points li {
  margin-bottom: 8px;
}

.hero-actions,
.center-action {
  display:flex;
   justify-content:center;
   margin-top:28px;
  margin-bottom: 0;
}

.hero-cta {
   margin-top: 28px;
   margin-bottom: 20px;   
}

.hero-meta {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 14px 0 18px;
  line-height: 1.5;
  max-width: 420px;
}

.hero-cta-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.hero-proof{
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

.hero-proof strong{
  color: #374151;
  font-weight: 600;
}

.cta-arrow{
  display:inline-block;
  margin-left:6px;
  font-weight:700;
  animation: arrowPulse 1.6s ease-in-out infinite;
}

.hero-cta:hover .cta-arrow{
  transform: translateX(6px);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(124, 77, 255, 0.42);
}

.btn-secondary {
  background: #ffffff;
  color: var(--heading);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* =========================
   MINI PROOF
========================= */
.mini-proof {
  background: #ffffff;
  border-top: 1px solid #e9e2d9;
  border-bottom: 1px solid #e9e2d9;
}

.mini-proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 24px;
}

.mini-proof-item {
  font-size: 0.95rem;
  color: #374151;
  text-align: center;
}

.mini-proof-item strong {
  color: #111827;
}

.trust-strip{
background:#ffffff;
border-top:1px solid #e7dfd5;
border-bottom:1px solid #e7dfd5;
}

.trust-inner{
display:flex;
justify-content:center;
gap:32px;
flex-wrap:wrap;
padding:16px 0;
}

.trust-item{
font-size:0.95rem;
color:#374151;
}

/* =========================
   TEXT / CONTENT SECTIONS
========================= */
.list-check {
  padding-left: 20px;
  margin-top: 10px;
}

.list-check li {
  margin-bottom:10px;
   font-size:1.05rem;
   line-height:1.6;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.section-split > div {
  min-width: 0;
}

.image-card {
  width: 100%;
}

.image-card img {
  height: auto;
  border-radius: 24px;
   width:75%;
   max-width:500px;
   margin:auto;
   box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* =========================
   PROOF BOX
========================= */
.proof-strip {
  padding-top: 0;
  padding-bottom: 0;
}

.proof-box {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: left;
}

.proof-label {
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}

.proof-title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.18;
  margin-bottom: 12px;
}

.proof-text {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 0;
}

/* =========================
   CARD GRID
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================
   OFFER BOX
========================= */
.offer-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  margin-top: 0;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin: 14px 0 8px;
}

.guarantee {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.offer-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: #4b5563;
}

.price-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 4px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 500;
}
.price-note strong {
    color: #374151;
    font-weight: 700;
}

.price-context {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 10px;
    text-align: center;
}

.pre-offer-text {
    max-width: 720px;
    margin: 0 auto 30px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* =========================
   FAQ
========================= */
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
  text-align: center;
  margin-top: 0;
  padding-top: 36px;
  padding-bottom: 36px;
}

.final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: 24px;
  padding: 28px 0 36px;
}

.footer-links {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.footer-copy {
  font-size: 0.94rem;
  color: var(--muted);
  margin-top: 16px;
}

/* =========================
   RESPONSIVE
========================= */
.mobile-cta{
display:none;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-split {
    grid-template-columns: 1fr;
  }

   .hero-content{
      order:1;
   }

  .hero-media {
    order: 2;
     margin-top:20px;
  }

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 28px 0;
  }

  .hero {
    padding: 28px 0 20px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 1.85rem;
    line-height: 1.16;
    max-width: none;
  }

  p,
  .card p,
  .proof-text,
  .footer-text {
    font-size: 1.03rem;
    line-height: 1.7;
  }

  .card,
  .proof-box,
  .offer-box,
  .faq details,
  .info-box {
    padding: 18px 16px;
  }

  .btn,
  .btn-large {
    width: 100%;
    text-align: center;
  }

  .btn-large {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .price {
    font-size: 2rem;
  }

  .mini-proof-inner,
  .offer-proof {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .site-footer {
    margin-top: 16px;
    padding-top: 24px;
  }
   
   .hero-cta-group{
  display: flex;
 flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.hero-proof{
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

.hero-cta{
white-space:nowrap;
}

.hero-proof strong{
  color: #374151;
  font-weight: 600;
}

   
.cta-arrow{
  display:inline-block;
  margin-left:6px;
  font-weight:700;
  animation: arrowPulse 1.6s ease-in-out infinite;
}

.mobile-cta{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#ffffff;
border-top:1px solid #e7dfd5;
padding:12px 16px;
display:block;
z-index:999;
}

.mobile-cta-btn{
display:block;
text-align:center;
background:linear-gradient(135deg,#7c4dff,#6a3ef0);
color:#fff;
font-weight:700;
padding:16px;
border-radius:999px;
box-shadow:0 10px 30px rgba(124,77,255,0.35);
}

body{
padding-bottom:80px;
}   
}

@keyframes arrowPulse{
  0%{transform:translateX(0);opacity:1;}
  50%{transform:translateX(2px);opacity:.9;}
  100%{transform:translateX(0);opacity:1;}
}
