@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(253.6607142857, 252.7678571429, 251.3392857143);
  font-family: " sans-serif ";
}

p {
  margin: 0;
  padding: 0;
}

.hero-section {
  background: linear-gradient(135deg, rgb(246.8303571429, 241.3839285714, 232.6696428571) 0%, rgba(184, 230, 217, 0.3) 30%, rgba(123, 196, 184, 0.2) 70%, rgb(244.0982142857, 236.8303571429, 225.2017857143) 100%);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(123, 196, 184, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(90, 155, 142, 0.06) 0%, transparent 40%), radial-gradient(circle at 40% 90%, rgba(184, 230, 217, 0.05) 0%, transparent 30%);
  z-index: 0;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-section .hero-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-section .hero-announcement .announcement-badge {
  background: linear-gradient(135deg, #7BC4B8, rgb(87.7539267016, 180.2460732984, 165.0418848168));
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(123, 196, 184, 0.3);
}
.hero-section .hero-announcement .announcement-text {
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero-section .hero-announcement {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
}
.hero-section .hero-main-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: rgb(52.5306122449, 90.4693877551, 82.8816326531);
}
.hero-section .hero-main-title .title-highlight {
  background: linear-gradient(135deg, #5A9B8E, #7BC4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-section .hero-main-title .title-highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #7BC4B8, #5A9B8E);
  border-radius: 2px;
}
.hero-section .hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-description strong {
  color: #5A9B8E;
  font-weight: 600;
}
.hero-section .value-propositions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .hero-section .value-propositions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.hero-section .value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}
@media (max-width: 768px) {
  .hero-section .value-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
.hero-section .value-item .value-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-section .value-item .value-icon {
    font-size: 2rem;
  }
}
.hero-section .value-item .value-text strong {
  display: block;
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.hero-section .value-item .value-text small {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}
.hero-section .hero-action {
  margin-bottom: 2rem;
}
.hero-section .hero-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #5A9B8E, rgb(71.2653061224, 122.7346938776, 112.4408163265));
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(90, 155, 142, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(90, 155, 142, 0.4);
  color: white;
  text-decoration: none;
}
.hero-section .hero-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.hero-section .hero-cta-btn:hover::before {
  left: 100%;
}
.hero-section .hero-cta-btn .btn-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.hero-section .hero-cta-btn .btn-main {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}
.hero-section .hero-cta-btn .btn-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}
.hero-section .hero-cta-btn * {
  position: relative;
  z-index: 2;
}
.hero-section .trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
}
@media (max-width: 768px) {
  .hero-section .trust-signals {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.hero-section .trust-signals .trust-item {
  text-align: center;
}
.hero-section .trust-signals .trust-item .trust-number {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: #5A9B8E;
}
.hero-section .trust-signals .trust-item .trust-label {
  font-size: 0.85rem;
  opacity: 0.8;
}
.hero-section .trust-signals .trust-divider {
  color: rgba(90, 155, 142, 0.3);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero-section .trust-signals .trust-divider {
    display: none;
  }
}
.hero-section .hero-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  font-size: 0.9rem;
  opacity: 0.8;
}
.hero-section .hero-guarantee i {
  color: #7BC4B8;
  font-size: 1rem;
}
.hero-section .hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-section .decoration-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(123, 196, 184, 0.1);
  border: 2px solid rgba(123, 196, 184, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7BC4B8;
  font-size: 1.5rem;
  animation: float 8s ease-in-out infinite;
}
.hero-section .decoration-item.deco-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.hero-section .decoration-item.deco-2 {
  top: 25%;
  right: 10%;
  animation-delay: 2s;
}
.hero-section .decoration-item.deco-3 {
  bottom: 25%;
  left: 12%;
  animation-delay: 4s;
}
.hero-section .decoration-item.deco-4 {
  bottom: 15%;
  right: 15%;
  animation-delay: 6s;
}
@media (max-width: 768px) {
  .hero-section .decoration-item {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0 4rem;
    min-height: 70vh;
  }
}

footer {
  background-color: rgb(33.7959183673, 58.2040816327, 53.3224489796);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  margin-top: 5rem;
}
footer p {
  font-size: 0.7rem;
}
footer a {
  color: #fff;
}

.btn {
  border-radius: 2rem;
}

.scroll-reveal {
  margin: 5rem 0;
}
.scroll-reveal h2,
.scroll-reveal p {
  text-align: center;
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
}
.scroll-reveal h2 {
  font-size: 2.2rem;
}

.intro-image img {
  border-radius: 16px;
  border: 3px solid #5A9B8E;
  box-shadow: 0 1rem 3rem rgba(90, 155, 142, 0.5);
  height: 320px;
  width: 100%;
}

.card {
  height: 150px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.card-body {
  margin: 0;
  padding: 0;
}

.card-title {
  text-align: center;
  background: linear-gradient(15deg, #7BC4B8 0%, #5A9B8E 100%);
  font-size: 1rem;
  line-height: 3rem;
  border-radius: 16px 16px 0 0;
  letter-spacing: 1px;
  color: #fff;
}

.card-text {
  color: #666;
  font-size: 0.9rem;
  margin: 0 1rem;
  padding: 1rem;
}

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

.item-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  height: 350px;
}
.item-content .card {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.item-content .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 196, 184, 0.5), rgba(90, 155, 142, 0.5));
  z-index: 1;
}
.item-content .card .card-img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.item-content .card .card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
  border-radius: 20px;
}
.item-content .card-title {
  background: none;
  font-size: 1.6rem;
  color: #fff;
}
.item-content .card-text {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
}

#slider-member {
  min-height: 180px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #5A9B8E, transparent);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}
.table th,
.table td {
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.memo-list {
  color: #5A9B8E;
  font-size: 0.8rem;
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: disc;
  list-style-position: inside;
}
.memo-list li {
  margin: 0;
}

.mobile-cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem;
  border-top: 2px solid #7BC4B8;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.mobile-cta-fixed .btn {
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
}
.mobile-cta-fixed .btn:hover {
  background: linear-gradient(135deg, #5A9B8E, rgb(71.2653061224, 122.7346938776, 112.4408163265));
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 80px;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #5A9B8E, #7BC4B8);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(90, 155, 142, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, rgb(80.6326530612, 138.8673469388, 127.2204081633), rgb(105.3769633508, 188.1230366492, 174.5209424084));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(90, 155, 142, 0.4);
}
.back-to-top:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(90, 155, 142, 0.5);
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid rgba(123, 196, 184, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  opacity: 0;
}
.back-to-top:hover::before {
  animation: none;
  opacity: 0;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 100px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #7BC4B8;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  text-align: left;
}
.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 1rem 0 1.5rem 0;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.testimonial-author strong {
  color: #5A9B8E;
  font-size: 0.95rem;
}
.testimonial-author small {
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.pricing-card.popular {
  border-color: #7BC4B8;
  border-width: 3px;
  box-shadow: 0 15px 40px rgba(123, 196, 184, 0.2);
}
.pricing-card.popular:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(123, 196, 184, 0.3);
}
.pricing-card.popular .pricing-header {
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  color: white;
}
.pricing-card.popular .pricing-header h3 {
  color: white;
}
.pricing-card.popular .price .amount {
  color: white;
}
.pricing-card.popular .price .period {
  color: rgba(255, 255, 255, 0.8);
}
.pricing-card.popular .plan-desc {
  color: rgba(255, 255, 255, 0.9);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.price {
  margin-bottom: 1rem;
}
.price .currency {
  font-size: 1.2rem;
  font-weight: 500;
  vertical-align: top;
}
.price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: #7BC4B8;
}
.price .period {
  font-size: 1rem;
  color: #666;
}

.plan-desc {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.pricing-features {
  padding: 1.5rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.feature-item i {
  margin-right: 0.8rem;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.feature-item.disabled {
  opacity: 0.5;
}
.feature-item.exclusive {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  padding: 0.5rem;
  border-radius: 8px;
  border-left: 3px solid #f39c12;
}

.pricing-card .btn {
  margin: 0 auto 1.2rem auto;
  padding: 0.8rem;
  font-weight: 600;
  border-radius: 12px;
  width: 90%;
}

.pricing-notes {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
}
.pricing-notes h4 {
  color: #5A9B8E;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.notes-list {
  list-style: none;
  padding: 0;
}
.notes-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #dee2e6;
  font-size: 0.95rem;
  line-height: 1.5;
}
.notes-list li:last-child {
  border-bottom: none;
}
.notes-list li strong {
  color: #5A9B8E;
}

#faq .accordion {
  max-width: 900px;
  margin: 0 auto;
}
#faq .accordion-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
}
#faq .accordion-item:hover {
  border-color: rgba(123, 196, 184, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
#faq .accordion-header .accordion-button {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: none;
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  border-radius: 15px;
  box-shadow: none;
}
#faq .accordion-header .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #B8E6D9, #7BC4B8);
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
#faq .accordion-header .accordion-button:focus {
  border: none;
  box-shadow: 0 0 0 3px rgba(123, 196, 184, 0.2);
}
#faq .accordion-header .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.5rem;
  font-weight: 600;
  color: #5A9B8E;
  transform: none;
  transition: transform 0.3s ease;
}
#faq .accordion-header .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: rotate(180deg);
}
#faq .accordion-header .accordion-button i {
  color: #7BC4B8;
  font-size: 1.2rem;
}
#faq .accordion-body {
  padding: 2rem;
  background: white;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(123, 196, 184, 0.2);
}

.feature-status {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature-status.developing {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  color: #856404;
  border: 1px solid #f39c12;
}
.feature-status.developing i {
  color: #f39c12;
}
.feature-status .status-text {
  margin-left: 0.3rem;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
@keyframes gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.final-cta-section {
  background: #ffffff;
  border-top: 3px solid #7BC4B8;
  border-bottom: 3px solid #7BC4B8;
  padding: 4rem 0;
  position: relative;
  margin-top: 6rem;
}
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(123, 196, 184, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(90, 155, 142, 0.05) 0%, transparent 50%);
  z-index: 0;
}
.final-cta-section .cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}
.final-cta-section .cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 8px 25px rgba(90, 155, 142, 0.2);
}
.final-cta-section .cta-icon:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.final-cta-section .cta-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 600;
  color: rgb(52.5306122449, 90.4693877551, 82.8816326531);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.final-cta-section .cta-subtitle {
  font-size: 1.1rem;
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}
.final-cta-section .cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.final-cta-section .cta-benefits .benefit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(123, 196, 184, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(123, 196, 184, 0.2);
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-weight: 500;
  transition: all 0.3s ease;
}
.final-cta-section .cta-benefits .benefit:hover {
  background: rgba(123, 196, 184, 0.15);
  border-color: rgba(123, 196, 184, 0.4);
  transform: translateY(-2px);
}
.final-cta-section .cta-benefits .benefit i {
  color: #7BC4B8;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .final-cta-section .cta-benefits {
    gap: 1rem;
    font-size: 0.9rem;
  }
  .final-cta-section .cta-benefits .benefit {
    padding: 0.8rem 1.2rem;
  }
}
.final-cta-section .final-cta-btn {
  background: linear-gradient(135deg, #5A9B8E, rgb(71.2653061224, 122.7346938776, 112.4408163265));
  color: white;
  border: 3px solid #7BC4B8;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(90, 155, 142, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.final-cta-section .final-cta-btn:hover {
  background: linear-gradient(135deg, rgb(80.6326530612, 138.8673469388, 127.2204081633), rgb(61.8979591837, 106.6020408163, 97.6612244898));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(90, 155, 142, 0.4);
  border-color: rgb(105.3769633508, 188.1230366492, 174.5209424084);
  color: white;
}
.final-cta-section .final-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.final-cta-section .final-cta-btn:hover::before {
  left: 100%;
}
.final-cta-section .final-cta-btn i, .final-cta-section .final-cta-btn span:not(.btn-shimmer) {
  position: relative;
  z-index: 2;
}
.final-cta-section .final-cta-btn .btn-shimmer {
  display: none;
}
.final-cta-section .cta-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(123, 196, 184, 0.08);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(123, 196, 184, 0.15);
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  font-size: 0.85rem;
  margin: 0 auto;
  max-width: 350px;
}
.final-cta-section .cta-security i {
  color: #7BC4B8;
  font-size: 1rem;
}
.final-cta-section .cta-bg-animation {
  display: none;
}
@media (max-width: 768px) {
  .final-cta-section {
    padding: 3rem 0;
  }
  .final-cta-section .cta-benefits {
    flex-direction: column;
    align-items: center;
  }
}

.promotional-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  color: white;
}
.promotional-hero .promotional-bg-decoration {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}
.promotional-hero .promotional-bg-decoration-2 {
  position: absolute;
  bottom: -15%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.promotional-floating {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: promotional-float 6s ease-in-out infinite;
  z-index: 1;
}
.promotional-floating.promotional-floating-1 {
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}
.promotional-floating.promotional-floating-2 {
  top: 25%;
  left: 10%;
  animation-delay: 2s;
}
.promotional-floating.promotional-floating-3 {
  bottom: 30%;
  right: 10%;
  animation-delay: 4s;
}
.promotional-floating.promotional-floating-4 {
  bottom: 20%;
  left: 15%;
  animation-delay: 6s;
}
@media (max-width: 768px) {
  .promotional-floating {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}

@keyframes promotional-float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(5deg);
  }
  66% {
    transform: translateY(8px) rotate(-3deg);
  }
}
.promotional-brand-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.promotional-brand-section .promotional-logo {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.promotional-brand-section .promotional-brand-name {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  color: white;
}
@media (max-width: 768px) {
  .promotional-brand-section .promotional-brand-name {
    font-size: 2rem;
  }
}

.promotional-main-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(45deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.promotional-main-title .promotional-highlight {
  background: linear-gradient(45deg, #ffeb3b, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.promotional-main-title .promotional-highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffeb3b, #ffc107);
  border-radius: 2px;
  opacity: 0.8;
}

.promotional-subtitle {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 0 3rem 0;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .promotional-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

.promotional-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .promotional-features {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

.promotional-feature {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}
.promotional-feature .promotional-feature-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.promotional-cta-section {
  margin-bottom: 2rem;
}

.promotional-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: #667eea;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  font-weight: 600;
}
.promotional-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: #667eea;
  text-decoration: none;
}
.promotional-cta-button i {
  font-size: 1.3rem;
}
.promotional-cta-button .promotional-cta-text {
  text-align: left;
}
.promotional-cta-button .promotional-cta-text .promotional-cta-main {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.promotional-cta-button .promotional-cta-text .promotional-cta-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 400;
}

.promotional-trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .promotional-trust-signals {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.promotional-trust-item {
  text-align: center;
}
.promotional-trust-item .promotional-trust-number {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffeb3b;
}
.promotional-trust-item .promotional-trust-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.promotional-divider {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .promotional-divider {
    display: none;
  }
}

.promotional-security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}
.promotional-security-badge i {
  color: #4caf50;
  font-size: 1rem;
}

.promotional-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(52.5306122449, 90.4693877551, 82.8816326531);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .promotional-section-title {
    font-size: 2rem;
  }
}

.promotional-section-subtitle {
  font-size: 1.2rem;
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.promotional-value-props {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.promotional-value-prop {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.promotional-value-prop .promotional-value-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: white;
}
.promotional-value-prop .promotional-value-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  margin-bottom: 0.5rem;
}
.promotional-value-prop .promotional-value-content p {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  margin: 0;
  line-height: 1.5;
}

.promotional-demo-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.promotional-demo-card .promotional-demo-header {
  background: linear-gradient(135deg, #5A9B8E, #7BC4B8);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}
.promotional-demo-card .promotional-demo-header i {
  font-size: 1.2rem;
}
.promotional-demo-card .promotional-demo-content {
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
}

.promotional-demo-message {
  margin-bottom: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  max-width: 80%;
}
.promotional-demo-message.user {
  background: #e3f2fd;
  color: #1976d2;
  margin-left: auto;
  text-align: right;
}
.promotional-demo-message.bot {
  background: #f1f8e9;
  color: #388e3c;
  margin-right: auto;
}

.promotional-feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}
.promotional-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.promotional-feature-card.highlighted {
  border-color: #7BC4B8;
  box-shadow: 0 15px 40px rgba(123, 196, 184, 0.2);
}
.promotional-feature-card.highlighted .promotional-feature-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.promotional-feature-card .promotional-feature-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  color: white;
}
.promotional-feature-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  margin-bottom: 1rem;
}
.promotional-feature-card p {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.promotional-feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.promotional-feature-list li {
  padding: 0.3rem 0;
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  position: relative;
  padding-left: 1.5rem;
}
.promotional-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7BC4B8;
  font-weight: bold;
}

.tone-system-section {
  padding: 4rem 0;
}
.tone-system-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.tone-system-section .section-header h2 {
  color: rgb(52.5306122449, 90.4693877551, 82.8816326531);
  font-weight: 700;
  margin-bottom: 1rem;
}
.tone-system-section .section-header .section-subtitle {
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  font-size: 1.1rem;
  opacity: 0.9;
}

.tone-intro-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.tone-intro-container .tone-intro-content {
  background: rgba(184, 230, 217, 0.2);
  border-radius: 20px;
  padding: 2rem;
}
.tone-intro-container .tone-intro-content h3 {
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tone-intro-container .tone-intro-content p {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
}

.tone-carousel-container {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.tone-carousel-container .carousel-indicators {
  margin-bottom: 2rem;
}
.tone-carousel-container .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(90, 155, 142, 0.3);
}
.tone-carousel-container .carousel-indicators button.active {
  background-color: #5A9B8E;
}
.tone-carousel-container .carousel-control-prev,
.tone-carousel-container .carousel-control-next {
  width: 5%;
  color: #5A9B8E;
}
.tone-carousel-container .carousel-control-prev:hover,
.tone-carousel-container .carousel-control-next:hover {
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
}

.tone-level-slide {
  padding: 2rem;
}
.tone-level-slide .level-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tone-level-slide .level-header .level-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tone-level-slide .level-header .level-badge.free {
  background: linear-gradient(135deg, #7BC4B8, rgb(158.2460732984, 211.7539267016, 202.9581151832));
  color: white;
}
.tone-level-slide .level-header .level-badge.lite {
  background: linear-gradient(135deg, #F59E0B, rgb(247.0078740157, 177.4763779528, 59.9921259843));
  color: white;
}
.tone-level-slide .level-header .level-badge.premium {
  background: linear-gradient(135deg, #5A9B8E, rgb(71.2653061224, 122.7346938776, 112.4408163265));
  color: white;
}
.tone-level-slide .level-header h3 {
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tone-level-slide .level-header p {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  font-size: 1.1rem;
  opacity: 0.8;
}

.tone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.tone-grid.premium-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .tone-grid.premium-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .tone-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.tone-showcase-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}
.tone-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.tone-showcase-card.lite {
  border-color: rgba(245, 158, 11, 0.3);
}
.tone-showcase-card.lite:hover {
  border-color: #F59E0B;
}
.tone-showcase-card.premium {
  border-color: rgba(90, 155, 142, 0.4);
  background: linear-gradient(135deg, rgba(90, 155, 142, 0.02), rgba(123, 196, 184, 0.02));
}
.tone-showcase-card.premium:hover {
  border-color: #5A9B8E;
  background: linear-gradient(135deg, rgba(90, 155, 142, 0.05), rgba(123, 196, 184, 0.05));
}
.tone-showcase-card .tone-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tone-showcase-card h4 {
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tone-showcase-card .tone-desc {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.tone-example-box {
  background: rgba(240, 230, 214, 0.8);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}
.tone-example-box strong {
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.tone-example-box .example-text {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  font-style: italic;
  line-height: 1.4;
  background: white;
  padding: 0.8rem;
  border-radius: 8px;
  border-left: 3px solid #7BC4B8;
  margin: 0;
}

.tone-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tone-tags .tag {
  background: rgba(123, 196, 184, 0.15);
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  padding: 0.25rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(123, 196, 184, 0.2);
}

.tone-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tone-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.tone-benefit .benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7BC4B8, #5A9B8E);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.tone-benefit .benefit-content {
  flex: 1;
}
.tone-benefit .benefit-content strong {
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}
.tone-benefit .benefit-content p {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  margin: 0;
  line-height: 1.4;
}

.tone-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .tone-cards-container {
    grid-template-columns: 1fr;
  }
}

.tone-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.tone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.tone-card.tone-card-free {
  border-color: rgba(123, 196, 184, 0.3);
}
.tone-card.tone-card-free:hover {
  border-color: #7BC4B8;
}
.tone-card.tone-card-premium {
  border-color: rgba(90, 155, 142, 0.4);
  background: linear-gradient(135deg, rgba(90, 155, 142, 0.02), rgba(123, 196, 184, 0.02));
}
.tone-card.tone-card-premium:hover {
  border-color: #5A9B8E;
  background: linear-gradient(135deg, rgba(90, 155, 142, 0.05), rgba(123, 196, 184, 0.05));
}

.tone-card-header {
  padding: 1.5rem 1.5rem 1rem;
}
.tone-card-header .tone-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.tone-card-header .tone-badge.free {
  background: linear-gradient(135deg, #7BC4B8, rgb(158.2460732984, 211.7539267016, 202.9581151832));
  color: white;
}
.tone-card-header .tone-badge.premium {
  background: linear-gradient(135deg, #5A9B8E, rgb(71.2653061224, 122.7346938776, 112.4408163265));
  color: white;
}
.tone-card-header h4 {
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.tone-card-body {
  padding: 0 1.5rem 1.5rem;
}

.tone-example {
  background: rgba(240, 230, 214, 0.7);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.tone-example .example-label {
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tone-example .example-text {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  font-style: italic;
  line-height: 1.4;
  background: white;
  padding: 0.8rem;
  border-radius: 8px;
  border-left: 3px solid #7BC4B8;
}

.tone-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(123, 196, 184, 0.15);
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(123, 196, 184, 0.2);
}

.tone-usage-section {
  margin-top: 4rem;
  text-align: center;
}
.tone-usage-section .usage-title {
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.usage-step {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.usage-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.usage-step .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5A9B8E, #7BC4B8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
}
.usage-step .step-number::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(123, 196, 184, 0.3);
  border-radius: 50%;
  top: -5px;
  left: -5px;
  animation: pulse 2s ease-in-out infinite;
}
.usage-step h4 {
  color: rgb(61.8979591837, 106.6020408163, 97.6612244898);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.usage-step p {
  color: rgb(80.6326530612, 138.8673469388, 127.2204081633);
  line-height: 1.5;
  margin: 0;
}
.usage-step p code {
  background: rgba(123, 196, 184, 0.15);
  color: rgb(71.2653061224, 122.7346938776, 112.4408163265);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", "Consolas", monospace;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tone-system-section {
    padding: 2rem 0;
  }
  .tone-system-section .tone-introduction {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .tone-system-section .tone-benefits {
    gap: 1rem;
  }
  .tone-system-section .tone-benefit .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .tone-system-section .tone-cards-container {
    gap: 1rem;
  }
  .tone-system-section .tone-usage-section {
    margin-top: 2rem;
  }
  .tone-system-section .tone-usage-section .usage-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .tone-system-section .usage-step {
    padding: 1.5rem;
  }
  .tone-system-section .usage-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .tone-system-section .usage-step .step-number::before {
    width: 50px;
    height: 50px;
  }
}
.promotional-cta-final {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.promotional-cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.promotional-final-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.promotional-final-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: #ffeb3b;
}

.promotional-final-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .promotional-final-title {
    font-size: 1.8rem;
  }
}

.promotional-final-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.promotional-final-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .promotional-final-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

.promotional-final-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-weight: 500;
}
.promotional-final-benefit i {
  color: #ffeb3b;
  font-size: 1.1rem;
}

.promotional-final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: #667eea;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  font-weight: 600;
}
.promotional-final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  color: #667eea;
  text-decoration: none;
}
.promotional-final-cta-btn i {
  font-size: 1.5rem;
}
.promotional-final-cta-btn .promotional-final-btn-content {
  text-align: left;
}
.promotional-final-cta-btn .promotional-final-btn-content .promotional-final-btn-main {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.promotional-final-cta-btn .promotional-final-btn-content .promotional-final-btn-sub {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 400;
}

.promotional-final-guarantee {
  opacity: 0.8;
  font-size: 0.9rem;
}

/*# sourceMappingURL=style.css.map */
