/* Base reset for this template */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.special-page, .special-page body { overflow-x: hidden; }

/* If your theme uses body classes already, we rely on the wrapper .special-page to scope the styles */
.special-page { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; line-height: 1.6; }

/* Hero */
.special-page .hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff; padding: 80px 20px; text-align: center; position: relative; overflow: hidden;
}
.special-page .hero::before {
  content: '🌸'; position: absolute; font-size: 400px; opacity: 0.1; top: -100px; right: -100px;
  animation: sp-float 6s ease-in-out infinite;
}
@keyframes sp-float { 0%,100% {transform: translateY(0)} 50% {transform: translateY(-20px)} }
.special-page .hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.special-page .logo { font-size: 1.2em; letter-spacing: 4px; margin-bottom: 20px; font-weight: 300; text-transform: uppercase; }
.special-page .hero h1 { font-size: 3.5em; margin-bottom: 20px; font-weight: 300; letter-spacing: 2px; line-height: 1.2; }
.special-page .hero-subtitle { font-size: 1.3em; margin-bottom: 30px; opacity: .95; font-weight: 300; }
.special-page .countdown-timer {
  background: rgba(255,255,255,.2); backdrop-filter: blur(10px); padding: 20px 40px; border-radius: 50px;
  display: inline-block; margin-top: 20px; font-size: 1.1em; font-weight: 600;
}

/* Trust Bar */
.special-page .trust-bar { background: #f8f5f8; padding: 30px 20px; text-align: center; }
.special-page .trust-items { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.special-page .trust-item { flex: 1; min-width: 200px; }
.special-page .trust-icon { font-size: 2.5em; margin-bottom: 10px; }
.special-page .trust-item h3 { color: #6b2d5c; font-size: 1.1em; margin-bottom: 5px; }
.special-page .trust-item p { color: #666; font-size: .9em; }

/* Packages */
.special-page .packages { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.special-page .section-title { text-align: center; font-size: 2.5em; color: #6b2d5c; margin-bottom: 20px; font-weight: 300; }
.special-page .section-subtitle { text-align: center; color: #666; font-size: 1.2em; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.special-page .package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-bottom: 60px; }

.special-page .package-card {
  background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(107,45,92,.15);
  transition: transform .3s ease, box-shadow .3s ease; border: 3px solid transparent;
}
.special-page .package-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(107,45,92,.25); border-color: #b07db0; }

.special-page .package-header { padding: 40px 30px; text-align: center; color: #fff; position: relative; }
.special-page .renewal-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.special-page .radiance-header { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.special-page .crown-header { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.special-page .package-label { font-size: .85em; text-transform: uppercase; letter-spacing: 2px; opacity: .9; margin-bottom: 15px; }
.special-page .package-title { font-size: 2em; margin-bottom: 20px; font-weight: 300; }
.special-page .package-price { font-size: 3em; font-weight: 700; margin-bottom: 10px; }
.special-page .package-savings { font-size: 1.1em; opacity: .95; }
.special-page .package-body { padding: 40px 30px; }

.special-page .package-description { color: #555; margin-bottom: 30px; font-size: 1.05em; line-height: 1.8; }
.special-page .features-list { list-style: none; margin-bottom: 30px; }
.special-page .features-list li { padding: 15px 0; border-bottom: 1px solid #f0e6f0; color: #555; display: flex; align-items: flex-start; font-size: 1.05em; }
.special-page .features-list li:last-child { border-bottom: none; }
.special-page .features-list li:before { content: '✓'; color: #6b2d5c; font-weight: 700; font-size: 1.3em; margin-right: 15px; flex-shrink: 0; }

.special-page .bonus-highlight {
  background: linear-gradient(135deg, #fee140 0%, #fa709a 30%); color: #6b2d5c; padding: 20px; border-radius: 15px;
  text-align: center; margin-bottom: 30px; font-weight: 600; font-size: 1.1em;
}

.special-page .cta-button {
  background: linear-gradient(135deg, #6b2d5c 0%, #8b4789 100%); color: #fff; border: 0; padding: 20px 40px; border-radius: 50px;
  font-size: 0.9em; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; width: 100%;
  transition: all .3s ease; box-shadow: 0 5px 20px rgba(107,45,92,.3);
}
.special-page .cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(107,45,92,.4); }

/* Why Zinnia */
.special-page .why-zinnia { background: linear-gradient(135deg, #f5f0f5 0%, #e8dce8 100%); padding: 80px 20px; }
.special-page .why-content { max-width: 1200px; margin: 0 auto; }
.special-page .differentiator-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
.special-page .differentiator-card { background: #fff; padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: 0 5px 20px rgba(107,45,92,.1); }
.special-page .diff-icon { font-size: 3em; margin-bottom: 20px; }
.special-page .differentiator-card h3 { color: #6b2d5c; font-size: 1.4em; margin-bottom: 15px; }
.special-page .differentiator-card p { color: #666; line-height: 1.8; }

/* Testimonials */
.special-page .testimonials { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.special-page .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.special-page .testimonial-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 5px 20px rgba(107,45,92,.1); position: relative; }
.special-page .quote-icon { font-size: 3em; color: #d0b8d0; position: absolute; top: 20px; left: 30px; opacity: .3; }
.special-page .testimonial-text { color: #555; font-style: italic; margin-bottom: 20px; position: relative; z-index: 2; line-height: 1.8; }
.special-page .testimonial-author { color: #6b2d5c; font-weight: 600; }
.special-page .testimonial-service { color: #888; font-size: .9em; }
.special-page .stars { color: #fee140; margin-bottom: 15px; font-size: 1.2em; }

/* FAQ */
.special-page .faq { background: #fff; padding: 80px 20px; }
.special-page .faq-content { max-width: 900px; margin: 0 auto; }
.special-page .faq-item { margin-bottom: 30px; border-bottom: 2px solid #f0e6f0; padding-bottom: 30px; }
.special-page .faq-item:last-child { border-bottom: none; }
.special-page .faq-question { color: #6b2d5c; font-size: 1.3em; margin-bottom: 15px; font-weight: 600; }
.special-page .faq-answer { color: #555; line-height: 1.8; font-size: 1.05em; }

/* Final CTA and client footer block */
.special-page .final-cta { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 80px 20px; text-align: center; }
.special-page .final-cta-content { max-width: 800px; margin: 0 auto; }
.special-page .final-cta h2 { font-size: 2.5em; margin-bottom: 20px; font-weight: 300; }
.special-page .final-cta p { font-size: 1.2em; margin-bottom: 40px; opacity: .95; }
.special-page .final-cta-button {
  background: #fff; color: #6b2d5c; border: 0; padding: 25px 60px; border-radius: 50px; font-size: 1.2em; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all .3s ease; box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.special-page .final-cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,.3); }
.special-page .contact-info { margin-top: 40px; font-size: 1.1em; opacity: .9; }

.special-page .client-custom-footer { background: #2a1a2a; color: #fff; padding: 40px 20px; text-align: center; }
.special-page .client-custom-footer p { opacity: .8; margin-bottom: 10px; }

/* Responsive */
@media (max-width: 768px) {
  .special-page .hero h1 { font-size: 2.5em; }
  .special-page .section-title { font-size: 2em; }
  .special-page .package-grid { grid-template-columns: 1fr; }
  .special-page .trust-items { flex-direction: column; }
}
