.elementor-1446 .elementor-element.elementor-element-730c078{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --rose: #C2185B;
    --rose-deep: #880E4F;
    --rose-light: #FCE4EC;
    --rose-mid: #F48FB1;
    --gold: #B8860B;
    --gold-light: #FFF8E1;
    --cream: #FDF6F0;
    --dark: #1A0A10;
    --text: #2D1B20;
    --muted: #7A5C65;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── TOP BANNER ── */
  .top-banner {
    background: var(--rose);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(160deg, #1A0A10 0%, #3D0C24 50%, #1A0A10 100%);
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(194,24,91,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194,24,91,0.2);
    border: 1px solid rgba(194,24,91,0.5);
    color: var(--rose-mid);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--rose-mid);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 58px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--rose-mid);
  }

  .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto 16px;
    font-weight: 300;
  }

  .hero-highlight {
    color: white;
    font-weight: 500;
  }

  .hero-promise {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 400;
  }

  /* ── TIMER ── */
  .timer-wrap {
    margin: 0 auto 40px;
    text-align: center;
  }

  .timer-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-mid);
    font-weight: 500;
    margin-bottom: 12px;
  }

  .timer {
    display: inline-flex;
    gap: 4px;
    align-items: center;
  }

  .timer-unit {
    text-align: center;
    min-width: 62px;
  }

  .timer-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    background: rgba(194,24,91,0.25);
    border: 1px solid rgba(194,24,91,0.4);
    border-radius: 10px;
    padding: 8px 4px 4px;
    display: block;
    min-width: 64px;
    line-height: 1;
  }

  .timer-text {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
    display: block;
  }

  .timer-sep {
    font-size: 28px;
    color: var(--rose);
    font-weight: 700;
    margin-bottom: 20px;
  }

  /* ── VIDEO ── */
  .video-wrap {
    max-width: 680px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(194,24,91,0.4);
    position: relative;
    cursor: pointer;
  }

  .video-wrap img {
    width: 100%;
    display: block;
  }

  .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 12px rgba(194,24,91,0.25);
    transition: transform 0.2s;
  }

  .play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }

  .play-btn svg { width: 28px; height: 28px; fill: white; margin-left: 4px; }

  /* ── CTA HERO ── */
  .cta-main {
    display: inline-block;
    background: var(--rose);
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 8px 32px rgba(194,24,91,0.45);
  }

  .cta-main:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
  }

  .cta-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 10px;
    display: block;
  }

  /* ── SECTION ── */
  .section {
    padding: 70px 20px;
    max-width: 780px;
    margin: 0 auto;
  }

  .section-tag {
    display: inline-block;
    background: var(--rose-light);
    color: var(--rose);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section h2 em {
    font-style: italic;
    color: var(--rose);
  }

  .section p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
  }

  /* ── DIVIDER ── */
  .divider {
    width: 60px;
    height: 2px;
    background: var(--rose);
    margin: 0 auto 20px;
    border-radius: 2px;
  }

  /* ── LEARN BULLETS ── */
  .learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 32px;
  }

  .learn-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: white;
    border: 1px solid #F0D5DF;
    border-radius: 14px;
    padding: 18px 20px;
  }

  .learn-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    background: var(--rose-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .learn-icon svg {
    width: 18px; height: 18px;
    stroke: var(--rose);
    fill: none;
    stroke-width: 2;
  }

  .learn-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
  }

  .learn-text span {
    font-size: 13px;
    color: var(--muted);
  }

  /* ── AUTHORITY ── */
  .authority {
    background: white;
    border-radius: 20px;
    border: 1px solid #F0D5DF;
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
  }

  .authority-photo {
    width: 130px; height: 130px;
    min-width: 130px;
    border-radius: 50%;
    background: var(--rose-light);
    border: 3px solid var(--rose);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .authority-bio strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 6px;
  }

  .authority-badge {
    display: inline-block;
    background: var(--rose-light);
    color: var(--rose);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
  }

  .authority-bio p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  .authority-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .authority-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--rose);
    font-family: 'Playfair Display', serif;
  }

  .authority-stat span {
    font-size: 12px;
    color: var(--muted);
  }

  /* ── TESTIMONIALS ── */
  .testimonials-bg {
    background: var(--dark);
    padding: 70px 20px;
  }

  .testimonials-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .testimonials-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    color: white;
    margin-bottom: 8px;
  }

  .testimonials-inner h2 em {
    color: var(--rose-mid);
    font-style: italic;
  }

  .testimonials-inner p {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    text-align: left;
  }

  .testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
  }

  .stars {
    color: #F6C90E;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }

  .testimonial-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(194,24,91,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-mid);
  }

  .testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
  }

  .testimonial-role {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
  }

  /* ── SOCIAL PROOF BAR ── */
  .social-bar {
    background: var(--rose);
    padding: 18px 20px;
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .social-bar strong {
    font-weight: 700;
  }

  /* ── FOR WHO ── */
  .for-who-list {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 12px;
  }

  .for-who-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text);
  }

  .check-icon {
    width: 22px; height: 22px;
    min-width: 22px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .check-icon svg {
    width: 12px; height: 12px;
    stroke: white;
    fill: none;
    stroke-width: 3;
  }

  /* ── BOTTOM CTA ── */
  .bottom-cta {
    background: linear-gradient(160deg, #1A0A10 0%, #3D0C24 100%);
    padding: 80px 20px;
    text-align: center;
  }

  .bottom-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5vw, 46px);
    color: white;
    line-height: 1.15;
    max-width: 580px;
    margin: 0 auto 16px;
  }

  .bottom-cta h2 em {
    color: var(--rose-mid);
    font-style: italic;
  }

  .bottom-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .spots-warning {
    display: inline-block;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.35);
    color: #FCD34D;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
  }

  /* ── FOOTER ── */
  footer {
    background: #0F0608;
    padding: 28px 20px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    line-height: 1.8;
  }

  footer a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
  }

  .footer-links {
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .authority { flex-direction: column; align-items: center; text-align: center; }
    .authority-stats { justify-content: center; }
    .timer-num { font-size: 28px; min-width: 52px; }
    .timer-unit { min-width: 52px; }
  }

  .results-bg {
    background: #120710;
    padding: 70px 20px;
  }
  .results-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }
  .result-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .result-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
  }
  .result-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .result-card:hover .result-img-wrap img {
    transform: scale(1.04);
  }
  .result-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--rose);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
  }
  .result-label {
    padding: 10px 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-align: center;
  }/* End custom CSS */