/**
 * AI Toolkit page specific styles
 */
 
/* Animated Progress Bar */
.meter {
  box-sizing: content-box;
  height: 20px; /* Can be anything */
  position: relative;
  background: #555;
  border-radius: 25px;
  padding: 10px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: rgb(43, 194, 83);
  background-image: linear-gradient(
    center bottom,
    rgb(43, 194, 83) 37%,
    rgb(84, 240, 84) 69%
  );
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.meter > span:after,
.animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.animate > span:after {
  display: none;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.orange > span {
  background-image: linear-gradient(#f1a165, #f36d0a);
}

.red > span {
  background-image: linear-gradient(#f0a3a3, #f42323);
}

.nostripes > span > span,
.nostripes > span::after {
  background-image: none;
}

/* Base styles */
:root {
    --primary-color: #ff4500;
    --secondary-color: #3498db;
    --highlight-color: #ff4500;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --green-color: #4CAF50;
    --red-color: #ff0000;
    --gold-color: #FFD700;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --spacing-lg: 4rem;
    --spacing-md: 2rem;
}

/* General layout */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {

}

.section-headline {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.highlight {
    color: var(--highlight-color);
    font-weight: 700;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.highlight-text:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 69, 0, 0.3);
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: skewX(-12deg);
}

/* Hero Section - Enhanced */
.hero-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding-top: 40px; 
    padding-bottom: 0px;
}



.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f3c623, #f5d76e);
    color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: pulse-badge 2s infinite;
    margin-top: 20px;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
}

.hero-headline {
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 64px;
    font-family: 'Sora', sans-serif;
}

.hero-countdown-box {
    background-color: rgba(0,0,0,0.7);
    border: 2px solid var(--gold-color);
    border-radius: 10px;
    padding: 12px 20px;
    margin: 30px auto;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.countdown-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--gold-color);
}

.countdown-timer {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    font-family: monospace;
}

.hero-cta-button {
    margin: 2rem 0;
}

.primary-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff4500, #ff6e40);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 69, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-button 2s infinite;
}

.primary-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
    animation: shine 3s infinite;
}

.primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.4);
    background: linear-gradient(45deg, #ff3d00, #ff6333);
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 12px rgba(255, 69, 0, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 16px rgba(255, 69, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 12px rgba(255, 69, 0, 0.3);
    }
}

.arrow-icon {
    display: inline-block;
    margin-left: 8px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.primary-button:hover .arrow-icon {
    transform: translateX(5px);
}

.cta-subtext {
    margin-top: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}


.negative {
    background-color: #f9f9f9;
}

/* Video Section - Enhanced */
.youtube-section {
    padding-top: 5rem;
    position: relative;
    background-color: #fff;
    border-top: 7px dashed #eeeeee;
    border-bottom: 7px dashed #eeeeee;
}

.video-headline-box {
    margin-bottom: 2.5rem;
}

.youtube-headline {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--text-color);
}

.youtube-subheadline {
    font-size: 1.4rem;
    text-align: center;
    margin: 0.5rem 0 2rem;
    color: #555;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: calc(var(--border-radius) - 6px);
}

.video-placeholder:hover .video-overlay {
    opacity: 1;
}

.overlay-text {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
}

.play-instruction {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.confidence-boost {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.social-proof-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 15px 30px;
    border-radius: 10px;
    margin: 3rem auto 0;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.users-count, .rating-stars, .success-stat {
    padding: 10px;
    flex: 1;
    text-align: center;
    font-size: 1.1rem;
    color: #444;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.3rem;
}

.rating-number {
    font-weight: 700;
    color: #444;
}

@media (max-width: 768px) {
    .social-proof-strip {
        flex-direction: column;
        padding: 20px;
    }
    
    .users-count, .rating-stars, .success-stat {
        margin-bottom: 10px;
        padding: 5px;
    }
}

/* Enhanced Problem Section */
.problem-section {
    background-color: var(--light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pain-points-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-subheadline {
    font-size: 1.4rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

.pain-points-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pain-point-stat {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border-radius: 10px;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 20px rgba(255, 82, 82, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto;
}

.pain-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--highlight-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.pain-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    background-color: rgba(255, 69, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-content {
    flex: 1;
}

.pain-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--highlight-color);
    letter-spacing: 0.5px;
}

.pain-content p {
    font-size: 1.1rem;
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.breaking-point-box {
    background-color: #333;
    border-radius: 10px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.breaking-point-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,50 L50,0 L100,50 L50,100 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 40px;
    opacity: 0.4;
    z-index: 1;
}

.breaking-point-content {
    position: relative;
    z-index: 2;
}

.breaking-point-content h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--gold-color);
}

.breaking-point-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--highlight-color);
    border-radius: 5px;
    margin-top: 1.5rem;
    transform: rotate(-1deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Enhanced Solution Intro */
.solution-intro {
    padding-top: 5rem;
}

.pattern-interrupt {
    font-size: 3rem;
    font-weight: 800;

    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
}

.pattern-interrupt:after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.solution-intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #444;
}

.trinity-box {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trinity-item {
    flex: 1 1 300px;
    min-width: 300px;
    max-width: 350px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #d3d3d3;
}

.trinity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trinity-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.trinity-item img {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trinity-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--green-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.trinity-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.trinity-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.unified-solution {
    margin-top: 4rem;
    text-align: center;
}

.unified-solution h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.separator-line {
    flex: 1;
    height: 2px;
    background-color: #ddd;
    max-width: 200px;
}

.separator-text {
    padding: 0 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 2px;
}

/* Enhanced Benefits Section */
.benefits-section {
    background-color: #fff;
    padding: 5rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-subheadline {
    font-size: 1.4rem;
    color: #444;
    max-width: 800px;
    margin: 1rem auto 0;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
}

.benefit-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 300px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-row:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-img-col {
    flex: 1 1 40%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-width: 300px;
    max-width: 450px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.benefit-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease;
}

.benefit-row:hover .benefit-img-col img {
    transform: scale(1.05);
}

.benefit-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), #ff6e40);
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    font-size: 0.9rem;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
    border-radius: 4px 0 0 4px;
    letter-spacing: 1px;
}

.benefit-text-col {
    flex: 2 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    text-align: left;
}

.benefit-text-col h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--highlight-color);
}

.benefit-text-col p {
    font-size: 1.15rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.benefit-highlight {
    color: var(--text-color);
    font-weight: 700;
    font-style: italic;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.benefit-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--green-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-calculator {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.calculator-prompt {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.calculator-result {
    font-size: 1.2rem;
    font-weight: 500;
}

.calculator-value, .calculator-total {
    font-weight: 700;
    color: var(--highlight-color);
    font-size: 1.3rem;
}

.time-savings-box {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.time-item {
    flex: 1;
}

.time-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.time-value {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
}

.time-value.negative {
    background-color: rgba(255, 0, 0, 0.1);
    color: #d32f2f;
}

.time-value.positive {
    background-color: rgba(76, 175, 80, 0.1);
    color: #388e3c;
}

.revenue-boost-container {
    margin-top: 1.5rem;
}

.revenue-boost-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.revenue-bar {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.revenue-bar.before {
    background-color: #f5f5f5;
    height: 100px;
}

.revenue-bar.after {
    background-color: rgba(76, 175, 80, 0.15);
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.revenue-arrow {
    font-size: 2rem;
    color: var(--highlight-color);
}

.revenue-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.revenue-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.after .revenue-amount {
    color: var(--green-color);
}

.revenue-caption {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    color: #666;
}

.benefits-conclusion {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.conclusion-statement {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.conclusion-question {
    margin-bottom: 2rem;
}

.conclusion-question p {
    font-size: 1.5rem;
    font-weight: 500;
}

.conclusion-cta {
    margin-top: 2rem;
}

.scroll-to-video-btn {
    display: inline-block;
    background: linear-gradient(45deg, #333, #555);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-video-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #222, #444);
}

.scroll-to-video-btn .arrow-icon {
    display: inline-block;
    margin-left: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}


/* Decision Accelerator Section */
.decision-accelerator-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #0a2540 0%, #1a3c61 100%);
    color: #fff;
    position: relative;
}

.decision-accelerator-content {
    max-width: 100%;
    margin: 0 auto;
}

.urgent-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 34, 0.9);
    padding: 0.8rem 1rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    animation: pulse 2s infinite;
}

.urgent-banner svg {
    margin-right: 0.8rem;
}

.urgent-banner span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.decision-accelerator-content .section-headline {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #fff;
}

.risk-reversal-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.risk-reversal-header {
    background: rgba(76, 175, 80, 0.2);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
}

.risk-reversal-header svg {
    color: #4CAF50;
    margin-right: 0.8rem;
}

.risk-reversal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #4CAF50;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.risk-reversal-body {
    padding: 1.5rem;
    text-align: center;
}

.risk-reversal-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.two-paths-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.path-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.path-column {
    border-radius: 10px;
    overflow: hidden;
}

.path-column.success {
    border: 1px solid rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.05);
}

.path-column.negative {
    border: 1px solid rgba(244, 67, 54, 0.3);
    background: rgba(244, 67, 54, 0.05);
}

.path-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.path-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.path-icon.positive {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.path-icon.negative {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.path-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.path-benefits,
.path-consequences {
    padding: 1.5rem;
    margin: 0;
    list-style-type: none;
}

.path-benefits li,
.path-consequences li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.path-benefits li:last-child,
.path-consequences li:last-child {
    margin-bottom: 0;
}

.path-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.path-consequences li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #F44336;
    font-weight: bold;
}

.final-offer-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.final-price-tag {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF5722;
    margin-bottom: 0.5rem;
}

.price-savings {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.final-timer {
    margin-bottom: 2rem;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
}

.final-timer p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

#countdown-final {
    color: #FF5722;
    background: rgba(255, 87, 34, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.25rem;
    animation: countdown-blink 1s infinite;
    display: inline-block;
}

.final-cta {
    margin-bottom: 1.5rem;
}

.cta-button.jumbo {
    font-size: 1.2rem;
    padding: 1.2rem 1rem;
    width: 100%;
}

.payment-options {
    margin-top: 1rem;
}

.payment-options img {
    max-width: 200px;
    opacity: 0.8;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.security-badge {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.security-badge svg {
    margin-right: 0.4rem;
}

.decline-option {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.decline-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.decline-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Tablet Styles for Decision Accelerator */
@media (min-width: 768px) {
    .decision-accelerator-content {
        max-width: 90%;
    }
    
    .decision-accelerator-content .section-headline {
        font-size: 2.2rem;
    }
    
    .two-paths-container {
        flex-direction: row;
    }
    
    .path-column {
        width: 50%;
    }
    
    .path-separator {
        padding: 0 1rem;
    }
    
    .cta-button.jumbo {
        width: auto;
        padding: 1.2rem 3rem;
    }
}

/* Desktop Styles for Decision Accelerator */
@media (min-width: 992px) {
    .decision-accelerator-content {
        max-width: 80%;
    }
    
    .decision-accelerator-content .section-headline {
        font-size: 2.6rem;
    }
    
    .final-offer-box {
        padding: 3rem;
    }
}


/* Progress Bar hero section*/

.checkout-progress {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

/* Custom hero meter styling */
.checkout-progress .meter {
    margin-top: 0;
    margin-bottom: 10px;
    height: 15px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.checkout-progress .meter > span {
    background-image: linear-gradient(#f42323, #f0a3a3);
}

.progress-percentage {
    color: #ff0000;
}

.progress-label {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

@media (max-width: 768px) {
    .progress-label {
        font-size: 14px;

    }
}
/* Choice Comparison Section */
.choice-comparison-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.choice-comparison-content {
    max-width: 1000px;
    margin: 0 auto;

}

.section-headline {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
}

.critical-elements-box {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-subheadline-1 {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.warning-indicator {
    display: flex;
    align-items: flex-start;
    background-color: #FFF5F5;
    border-left: 4px solid #d32f2f;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
}

.warning-indicator svg {
    color: #d32f2f;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.warning-indicator p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.critical-elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.critical-element {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.critical-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.element-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
}

.critical-element h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 5px;
    margin-bottom: 15px;
}

.critical-element p {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.testing-importance-box {
    margin-bottom: 40px;
    text-align: center;
}

.testing-headline {

    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    display: inline-block;
}

.testing-headline:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.testing-formula {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.formula-element {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 10px;
    gap: 15px;
}

.formula-element.success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.formula-element.failure {
    background-color: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.formula-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
}

.formula-element.success .formula-icon {
    background-color: #4CAF50;
    color: white;
}

.formula-element.failure .formula-icon {
    background-color: var(--primary-color);
    color: white;
}

.formula-text {
    display: flex;
    flex-direction: column;
}

.formula-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.formula-result {
    font-size: 1.4rem;
    font-weight: 700;
}

.formula-element.success .formula-result {
    color: #4CAF50;
}

.formula-element.failure .formula-result {
    color: var(--primary-color);
}

.testing-explanation {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.testing-options-comparison {
    margin-bottom: 40px;
}

.comparison-headline {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.option-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.option-card.negative {
    border: 1px solid #e0e0e0;
}

.option-card.positive {
    border: 2px solid #4CAF50;
    transform: scale(1.05);
    z-index: 1;
}

.option-header {
    background-color: #f5f5f5;
    padding: 15px;
    text-align: center;
    position: relative;
}

.option-header.highlight {
    background-color: #4CAF50;
    color: white;
}

.option-header h4 {
    font-size: 1.2rem;
    margin: 0 0 5px;
}

.recommended-badge {
    font-size: 0.8rem;
    background-color: #fff;
    color: #4CAF50;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-top: 5px;
}

.option-chart {
    padding: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: white;
}

.chart-bar {
    width: 60px;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.bar-label {
    position: absolute;
    top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    z-index: 1;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #ddd;
    transition: height 1s ease;
}

.time-cost .bar-fill {
    background-color: #ff9800;
}

.money-cost .bar-fill {
    background-color: #e91e63;
}

.bar-value {
    position: absolute;
    bottom: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 0 5px;
}

.option-impact {
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.option-impact p {
    margin: 0;
    font-size: 1rem;
}

.impact-negative {
    color: var(--primary-color);
    font-weight: 600;
}

.impact-positive {
    color: #4CAF50;
    font-weight: 700;
}

.momentum-insight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #f0f7ff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid #2196F3;
}

.insight-icon {
    color: #2196F3;
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.2);
}

.insight-content h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #2196F3;
    margin-bottom: 10px;
}

.insight-content p {
    margin: 0;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
}

.success-equation {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.equation-headline {
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.equation-visual, .equation-visual-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.equation-element-wrong {
    background-color: rgb(255, 198, 198);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgb(255, 133, 133);
}

.equation-element-correct {
    background-color: rgb(209, 255, 198);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgb(0, 175, 3);
}

.element-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.element-type {
    font-size: 0.9rem;
    color: #666;
}

.equation-plus, .equation-equals {
    font-size: 2rem;
    font-weight: 700;
    color: #888;
}

.equation-result {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.equation-result-1 {
    background-color: #bd1313;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}
.result-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.action-prompt {
    text-align: center;
    margin-top: 40px;
}

.action-prompt h3 {

    margin-bottom: 25px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary-color), #ff6e40);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 69, 0, 0.3);
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 69, 0, 0.4);
}

.action-button svg {
    transition: transform 0.3s ease;
}

.action-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .testing-formula {
        flex-direction: column;
        gap: 15px;
    }
    
    .equation-visual, .equation-visual-1 {
        flex-direction: column;
    }
    
    .equation-plus, .equation-equals {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .section-headline {
        font-size: 2rem;
    }
    
    .critical-elements-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card.positive {
        transform: scale(1);
    }
    
    .momentum-insight {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ... existing code ... */

/* Enhanced Special Offer Section */
.special-offer {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.special-offer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f5f5f5' fill-opacity='0.4' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.offer-headline-container {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 3rem;
}

.limited-offer-badge {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulsate-red 2s infinite;
}

@keyframes pulsate-red {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(231, 76, 60, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
    }
}

.offer-subheadline {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1rem auto 0;
    color: #555;
}

.regular-price {
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.regular-price-intro {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.price-display {
    margin: 1.5rem 0;
}

.price-display .price {
    font-size: 3.5rem;
    color: #888;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.price-display .period {
    font-size: 1.6rem;
    color: #888;
    display: inline-block;
    vertical-align: middle;
}

.annual-calculation {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.yearly-price {
    font-weight: 700;
    text-decoration: line-through;
    color: #d32f2f;
}

.testimonial-mini {
    background-color: #f9f9f9;
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: left;
    border-radius: 0 10px 10px 0;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
    text-align: right;
}

.pattern-interrupt-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 36px;
    background-color: #f8f9fa;
}

.flame-container {
    display: inline-block;
    margin-bottom: 1rem;
}

.flame-icon {
    font-size: 3rem;
    animation: flame-flicker 1.5s infinite alternate;
}

@keyframes flame-flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

.pattern-interrupt h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    letter-spacing: -1px;
}

.special-offer-box {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
    overflow: hidden;
}


.exclusive-intro {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.personal-message {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.special-price-comparison {
    margin: 3rem 0;
}

.old-prices {
    margin-bottom: 2rem;
    text-align: center;
}

.price-cross-out {
    font-size: 1.3rem;
    color: #666;
    position: relative;
    display: inline-block;
    margin: 0 1rem;
}

.price-cross-out:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e74c3c;
    left: 0;
    top: 50%;
    transform: rotate(-8deg);
}

.strike {
    text-decoration: line-through;
    font-weight: 700;
    color: #d32f2f;
}

.new-price-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff9f4, #fff5f0);
    border-radius: 15px;
    border: 2px dashed var(--primary-color);
    position: relative;
    overflow: hidden;
}

.new-price-box:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,69,0,0.1) 0%, transparent 50%, rgba(255,69,0,0.1) 100%);
    animation: shine-bg 3s infinite linear;
    top: -50%;
    left: -50%;
    z-index: 0;
}

@keyframes shine-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.price-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.final-price {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1.1;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.05);
}

.price-period {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.savings-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.price-breakdown {
    margin-top: 3rem;
}

.price-confirmation {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 1.5rem;
}

.guarantee-stamp {
    flex-shrink: 0;
    max-width: 120px;
    height: auto;
    animation: slight-rotate 6s infinite alternate;
}

@keyframes slight-rotate {
    0% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

.confirmation-text p {
    font-size: 1.2rem;
    margin: 0 0 0.8rem;
    color: #444;
}

.guarantee-text {
    font-weight: 700;
    color: #4CAF50 !important;
}

.daily-cost-intro {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #444;
}

.calculation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.calc-item {
    padding: 1rem 1.5rem;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 120px;
}

.calc-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.calc-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.calc-divider {
    font-size: 1.5rem;
    color: #aaa;
}

.decision-prompt {
    margin-top: 2.5rem;
    text-align: center;
}

.highlight-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    display: inline-block;
    background-color: #fff9f0;
    padding: 1rem 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.urgency-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.urgency-warning {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.warning-icon {
    font-size: 2.5rem;
    animation: warning-pulse 1.5s infinite;
}

@keyframes warning-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.warning-text p {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    color: #856404;
}

.warning-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Enhanced Annual Benefits */
.annual-benefits {
    padding: 5rem 0;
    background-color: #fff;
}

.total-package-box {
    max-width: 1000px;
    margin: 3rem auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), #ff6e40);
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.package-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1rem;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.package-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.what-you-get {
    padding: 3rem;
}

.core-features {
    margin-bottom: 3rem;
}

.features-heading {
    font-size: 1.5rem;
    margin: 0 0 2rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item-expanded {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item-expanded:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon-large {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 69, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary-color);
}

.feature-details {
    flex: 1;
}

.feature-title {
    font-size: 1.3rem;
    margin: 0 0 0.8rem;
    color: var(--text-color);
}

.feature-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0 0 1rem;
    color: #555;
}

.feature-value {
    font-size: 1rem;
    color: #777;
}

.value-label {
    margin-right: 0.5rem;
}

.value-price {
    font-weight: 700;
    color: #d32f2f;
}

.feature-grid-remaining {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mini-feature:hover {
    transform: translateY(-3px);
}

.mini-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 700;
}

.mini-feature-text h6 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
    color: #444;
}

.mini-value {
    font-size: 0.9rem;
    color: #d32f2f;
    font-weight: 600;
}

.total-value-container {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.value-bar, .your-price-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-bar {
    background-color: white;
}

.your-price-bar {
    background-color: #f1f8e9;
    border: 2px solid #4CAF50;
}

.your-price-bar .value-label {
    font-weight: 700;
    color: #333;
}

.your-price-bar .value-price.special {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: 800;
}

.discount-badge {
    text-align: center;
    margin-top: 1.5rem;
}

.discount-badge span {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.future-enhancements {
    padding: 3rem;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.future-enhancements h4 {
    font-size: 1.4rem;
    margin: 0 0 1.5rem;
    color: #444;
}

.enhancements-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.enhancements-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #444;
}

.enhancement-icon {
    font-size: 1.5rem;
}

.upsell-teaser {
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 0 10px 10px 0;
}

.upsell-teaser p {
    margin: 0 0 0.8rem;
    font-size: 1.1rem;
    color: #856404;
}

.upsell-teaser p:last-child {
    margin-bottom: 0;
}

.upsell-hint {
    font-weight: 600;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f9f9f9, #f5f5f5);
    padding: 5rem 0;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e0e0e0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.final-decision-box {
    padding: 0;
}

.final-decision-headline {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #333;
    margin: 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    border-bottom: 1px solid #eee;
}

.decision-paths {
    padding: 3rem;
}

.decision-path-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .decision-path-container {
        grid-template-columns: 3fr 2fr;
    }
}

.decision-path {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.decision-path.success {
    border: 2px solid #4CAF50;
}

.decision-path.negative {
    border: 2px solid #e0e0e0;
}

.path-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.decision-path.success .path-header {
    background-color: #4CAF50;
    color: white;
}

.decision-path.negative .path-header {
    background-color: #f5f5f5;
    color: #666;
}

.path-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.decision-path.success .path-icon {
    background-color: white;
    color: #4CAF50;
}

.decision-path.negative .path-icon {
    background-color: white;
    color: #999;
    border: 2px solid #ccc;
}

.path-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.path-benefits, .path-consequences {
    padding: 2rem;

}

.benefit-checklist, .consequences-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.benefit-checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.benefit-checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: 700;
}

.consequences-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #666;
}

.consequences-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 0;
    color: #d32f2f;
    font-weight: 700;
}

.countdown-reminder {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.reminder-icon {
    font-size: 1.8rem;
    animation: pulse 1.5s infinite;
}

.reminder-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #856404;
}

.primary-cta-button {
    display: block;
    background: linear-gradient(45deg, #4CAF50, #43a047);
    color: white;
    text-align: center;
    padding: 1.5rem;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.primary-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine-button 3s infinite;
}

@keyframes shine-button {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

.primary-cta-button:hover {
    background: linear-gradient(45deg, #43a047, #388e3c);
    transform: translateY(-2px);
}

.main-cta-text {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sub-cta-text {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: bounce-right 1.5s infinite;
}

@keyframes bounce-right {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translate(5px, -50%);
    }
}

.payment-methods-container {
    padding: 1rem;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.secure-badge {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.secure-icon {
    color: #4CAF50;
}

.payment-methods {
    max-width: 240px;
    height: auto;
    margin: 0.5rem 0;
}

.guarantee-mini {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4CAF50;
}

.negative-cta-button {
    display: block;
    background-color: #f5f5f5;
    color: #666;
    text-align: center;
    padding: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.negative-cta-button:hover {
    background-color: #e8e8e8;
    color: #333;
}

.path-consequences p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0;
    margin-bottom: 1rem;
}

.regret-warning {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-left: 3px solid #d32f2f;
    border-radius: 0 5px 5px 0;
}

.regret-warning p {
    margin: 0;
    color: #666;
    font-weight: 600;
    font-style: italic;
}

.final-trust-elements {
    padding: 3rem;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.customer-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-stat {
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-text {
    font-size: 1rem;
    color: #fff;
}

.final-faq {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #333;
}

.faq-answer {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .final-decision-headline {
        font-size: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .decision-paths {
        padding: 2rem 1.5rem;
    }
    
    .path-header {
        padding: 1.2rem;
    }
    
    .path-title {
        font-size: 1.2rem;
    }
    
    .path-benefits, .path-consequences {
        padding: 1.5rem;
    }
    
    .main-cta-text {
        font-size: 1.3rem;
    }
    
    .cta-arrow {
        display: none;
    }
    
    .final-trust-elements {
        padding: 2rem 1.5rem;
    }
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.4rem;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .play-icon {
        border-width: 20px 0 20px 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 1rem 0rem 1rem;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.3rem;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-icon {
        border-width: 15px 0 15px 24px;
    }
    
    .section-divider {
        scale: 2;
    }
}

.ai-toolkit-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a3c61 100%);
}
.ai-toolkit-hero,
.ai-toolkit-hero .hero-headline,
.ai-toolkit-hero .hero-subheadline,
.ai-toolkit-hero .hero-intro,
.ai-toolkit-hero .hero-intro p,
.ai-toolkit-hero .scroll-indicator svg {
    color: #fff !important;
} 

/* Additional Mobile Responsive Styles for Choice Comparison Section */
@media (max-width: 768px) {
    .section-headline {
        font-size: 2.2rem;
    }
    
    .critical-elements-box, 
    .testing-importance-box,
    .testing-options-comparison,
    .momentum-insight,
    .success-equation {
        padding: 20px 0; /* Vertical padding 20px, horizontal padding 0 to respect parent container */
    }
    
    .formula-element {
        width: 100%;
        justify-content: center;
    }
    
    .options-grid {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .option-card.positive {
        order: -1;
        margin-bottom: 15px;
    }
    
    .option-chart {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .equation-visual {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .equation-element {
        width: 100%;
    }
    
    .action-prompt h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .section-headline {
        font-size: 1.8rem;
    }
    
    .critical-element {
        padding: 20px 15px;
    }
    
    .element-number {
        left: 15px;
    }
    
    .testing-headline {
        font-size: 1.5rem;
    }
    
    .testing-explanation {
        font-size: 1.1rem;
    }
    
    .comparison-headline {
        font-size: 1.3rem;
    }
    
    .chart-bar {
        height: 150px;
    }
    
    .insight-icon {
        width: 50px;
        height: 50px;
    }
    
    .insight-content h3 {
        font-size: 1.2rem;
    }
    
    .equation-headline {
        font-size: 1.3rem;
    }
    
    .action-button {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    /* Additional timeline adjustments for very small screens */
    .timeline-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }
    
    .timeline-step-text {
        font-size: 15px;
    }
    
    .timeline-step {
        margin-bottom: 25px;
    }
}

/* Animation for Chart Bars */
@keyframes fill-bar {
    from { height: 0; }
    to { height: var(--bar-height); }
}

.chart-bar .bar-fill {
    animation: fill-bar 1.5s ease-out forwards;
}

/* Timeline Progress Bar */
.progress-timeline {
    margin: 0;
    padding: 60px 0;


}



.progress-headline {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.progress-headline h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: #1a3c61;
    position: relative;
    display: inline-block;
}

.progress-headline h3:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #4CAF50;
    margin: 15px auto 0;
    border-radius: 2px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    position: relative;
}

/* Remove the horizontal line */
.timeline:before {
    display: none; /* Hide the timeline line */
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    z-index: 2;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border: 3px solid #ddd;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Lucide icons styling */
.timeline-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.timeline-connector {
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 0;
}

.timeline-step:last-child .timeline-connector {
    display: none;
}

.timeline-label {
    text-align: center;
    width: 100%;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.timeline-step-number {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
    color: #1a3c61;
    background: #f0f0f0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-step-text {
    font-size: 17px;
    white-space: nowrap;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.timeline-completion {
    background-color: #4CAF50;
    color: white;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0 2px 5px rgba(76,175,80,0.3);
    transform: scale(1);
    animation: pulse-scale 1.5s infinite ease-in-out;
}

.timeline-eta {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 15px;
}

/* Completed step styling */
.timeline-step-completed .timeline-icon {
    background-color: #4CAF50; /* Green background */
    color: white;
    border-color: #388E3C;
    box-shadow: 0 4px 15px rgba(76,175,80,0.4);
}

.timeline-step-completed .timeline-icon svg {
    color: white;
}

.timeline-step-completed .timeline-step-number {
    background: #4CAF50;
    color: white;
}

.timeline-step-completed:before {
    display: none;
}

/* Current step styling */
.timeline-step-current .timeline-icon {
    background-color: #2196F3; /* Blue background */
    color: white; /* White icon color */
    border-color: #1976D2; /* Darker blue border */
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.7);
    animation: pulse-border 2s infinite ease-in-out;
    transform: scale(1.1);
}

.timeline-step-current .timeline-icon svg {
    color: white !important; /* Ensure icon is white */
    animation: pulse-scale 2s infinite ease-in-out;
}

.timeline-step-current .timeline-step-number {
    background: #2196F3;
    color: white;
    animation: pulse-scale 2s infinite ease-in-out;
}

.timeline-current-label {
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    background-color: #2196F3;
    padding: 5px 12px;
    border-radius: 20px;
    animation: pulse-opacity 2s infinite ease-in-out;
    box-shadow: 0 3px 8px rgba(33,150,243,0.4);
}

.timeline-step-current .timeline-label {
    color: #2196F3;
    font-weight: 700;
}

.timeline-split-option {
    display: flex;
    align-items: center;
    margin-top: 15px;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.option-diy {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: line-through;
    padding: 3px 6px;
    background: rgba(211,47,47,0.1);
    border-radius: 4px;
}

.option-vs {
    margin: 0 10px;
    color: #666;
    font-weight: 700;
}

.option-service {
    color: #4CAF50;
    font-weight: 700;
    padding: 3px 6px;
    background: rgba(76,175,80,0.1);
    border-radius: 4px;
}

/* Future step styling */
.timeline-step-future .timeline-icon {
    background-color: #FFF9C4; /* Light yellow background for future steps */
    color: #795548; /* Darker color for icon for contrast */
    border-color: #FFEB3B; /* Yellow border */
    opacity: 0.85;
}

.timeline-step-future .timeline-label {
    color: #888;
}

.timeline-step-future .timeline-step-number {
    background: #ddd;
    color: #888;
}

.timeline-cta {
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(135deg, #e1f5fe 0%, #f3fdff 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #b3e5fc;
    box-shadow: 0 8px 25px rgba(33,150,243,0.1);
    transition: all 0.3s ease;
}

.timeline-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(33,150,243,0.2);
}

.timeline-cta-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0277bd;
}

.highlight-text {
    background-color: #fff176;
    padding: 3px 8px;
    border-radius: 6px;
    color: #333;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(255,241,118,0.5);
}

.timeline-cta-button {
    display: inline-block;
    background: linear-gradient(to right, #2196F3, #1976D2);
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(33,150,243,0.4);
    position: relative;
    overflow: hidden;
}

.timeline-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    animation: shine 3s infinite;
}

.timeline-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.42);
}

.timeline-cta-button:hover:before {
    left: 100%;
}

/* Animations */
@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
        border-color: #2196F3;
    }
    50% {
        box-shadow: 0 0 25px rgba(33, 150, 243, 0.8);
        border-color: #1976D2;
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse-opacity {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design for Timeline */
@media (max-width: 900px) {
    .timeline {
        padding: 20px;
    }
    
    .timeline:before {
        left: 20px;
        right: 20px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .timeline-step-completed:before {
        top: 55px;
    }
    
    .testimonials-carousel {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .proof-headline h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .progress-timeline {
       
    }
    
    .progress-headline h3 {
        font-size: 22px;
    }
    
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px 10px 10px;
        width: 100%;
    }
    
    .timeline:before {
        width: 4px;
        height: calc(100% - 20px);
        top: 10px;
        left: 28px;
        right: auto;
    }
    
    .timeline-step {
        flex-direction: row;
        width: 100%;
        margin-bottom: 30px;
        align-items: flex-start;
    }
    
    .timeline-step:last-child {
        margin-bottom: 0;
    }
    
    .timeline-step-completed:before {
        width: 4px;
        height: 100%;
        top: 0;
        right: auto;
        left: -18px;
    }
    
    .timeline-icon {
        margin-bottom: 0;
        margin-right: 15px;
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-connector {
        position: absolute;
        width: 4px;
        height: 100%;
        left: 25px;
        top: 50px;
        display: none;
    }
    
    .timeline-label {
        text-align: left;
        align-items: flex-start;
        padding-top: 5px;
    }
    
    .timeline-step-number {
        position: absolute;
        top: -5px;
        left: -5px;
        width: 24px;
        height: 24px;
        font-size: 14px;
        z-index: 2;
    }
    
    .timeline-current-label {
        display: inline-block;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .timeline-split-option {
        margin-left: 0;
        padding: 8px 10px;
        justify-content: flex-start;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .timeline-cta-text {
        font-size: 18px;
    }
    
    .timeline-cta {
        padding: 20px 15px;
    }
    
    .timeline-cta-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Additional improvements for timeline mobile view */
    .timeline-step-text {
        font-size: 16px;
    }
}
/* Price Comparison */
.comparison-table {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.comparison-col {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.traditional {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    position: relative;
}

.new-way {
    border: 2px solid var(--primary-color);
    background-color: #fff;
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.comparison-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.old-price {
    color: var(--red-color);
    position: relative;
}

.new-price {
    color: var(--green-color);
}

.comparison-col ul {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-col li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.difference {
    text-align: center;
    margin-top: 2rem;
}

.difference h3 {
    font-size: 1.8rem;
}

/* Detailed comparison table */
.detailed-comparison {
    margin-top: 4rem;
    overflow-x: auto;
}

.detailed-comparison h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.detailed-comparison h3:after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: var(--primary-color);
    margin: 0.5rem auto 0;
    border-radius: 3px;
}

.comparison-detail-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #dddddd;
}

.comparison-detail-table th,
.comparison-detail-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.comparison-detail-table th {
    background-color: #f5f5f5;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-detail-table th:last-child {
    background-color: rgba(39, 174, 96, 0.1);
}

.comparison-detail-table th:first-child {
    text-align: left;
    width: 40%;
}

.comparison-detail-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-detail-table tr:last-child td {
    border-bottom: none;
}

.comparison-detail-table .category-row {
    background-color: #f9f9f9;
    font-weight: 700;
}

.comparison-detail-table .category-row td {
    padding-top: 1.5rem;
    text-align: left;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.comparison-detail-table .subitem {
    padding-left: 1.5rem;
    font-weight: normal;
    font-style: italic;
    color: #555;
}

.comparison-detail-table .traditional-price {
    color: #e74c3c;
    font-weight: 700;
    position: relative;
}

.comparison-detail-table .tool-price {
    color: #27ae60;
    font-weight: 700;
    position: relative;
    background-color: rgba(39, 174, 96, 0.05);
}

.comparison-detail-table .traditional-price:after {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.8rem;
}

.comparison-detail-table .tool-price:after {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.8rem;
}

.comparison-detail-table .total-row {
    background-color: #f5f9ff;
    font-weight: 700;
}

.comparison-detail-table .total-row td {
    border-top: 2px solid #3498db;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
}

.comparison-detail-table .total-row .tool-price {
    background-color: rgba(39, 174, 96, 0.15);
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

.comparison-detail-table .savings-row {
    background-color: #e8f7ee;
}

.comparison-detail-table .savings-row td {
    color: #27ae60;
    font-weight: 700;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: 1.2rem;
}

.comparison-detail-table .savings-row td:last-child {
    color: #fff;
    background-color: #27ae60;
    font-size: 1.3rem;
}

.comparison-detail-table tr:not(.category-row):not(.savings-row):hover {
    background-color: #f8f8f8;
    transition: background-color 0.2s ease;
}

@media (max-width: 768px) {
    .comparison-detail-table th,
    .comparison-detail-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .comparison-detail-table th:first-child,
    .comparison-detail-table td:first-child {
        min-width: 180px;
    }
    
    .comparison-detail-table .traditional-price:after,
    .comparison-detail-table .tool-price:after {
        display: none;
    }
    
    .timeline {
        flex-direction: column;
        align-items: center;
 
    }
    
    .timeline-step {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline-connector {
        position: absolute;
        top: auto;
        bottom: -20px;
        right: auto;
        width: 4px;
        height: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Missing animation keyframes for timeline */
@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 10px rgba(33, 150, 243, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(33, 150, 243, 0.8);
    }
}

@keyframes pulse-opacity {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Enhanced Features Section */
.features-section {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    padding: 5rem 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2381c784' fill-opacity='0.2' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

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

.features-section .section-headline {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.5rem;
    font-size: 2.6rem;
    color: #2E7D32;
}

.features-section .section-headline::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4CAF50;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.features-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #000000;
}

.features-grid {
    display: grid;
    gap: 1.8rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.2rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8F5E9;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 12px 12px 0 0;
    opacity: 0.8;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.15);
}

.feature-icon {
    flex: 0 0 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(76,175,80,0.1), rgba(129,199,132,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-size: 1.3rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5px;
}

.feature-content {
    flex: 1;
}

.feature-content p {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #2E7D32;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
}

.feature-content span {
    display: block;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.5;
}

.value-summary {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 0;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.1);
    border: 1px dashed rgba(76, 175, 80, 0.4);
}

.value-summary p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.value-summary p.highlight {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #388E3C, #66BB6A);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .features-section .section-headline {
        font-size: 2.2rem;
    }
    
    .features-section .section-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item {
        padding: 1.8rem;
    }
    
    .feature-icon {
        flex: 0 0 42px;
        height: 42px;
    }
    
    .feature-content p {
        font-size: 1.05rem;
    }
    
    .value-summary {
        padding: 2rem;
    }
    
    .value-summary p {
        font-size: 1.2rem;
    }
    
    .value-summary p.highlight {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .feature-item:hover {
        transform: translateY(-5px);
    }
}

/* Responsive improvements for benefit items */
.benefit-item.benefit-row {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Responsive styles for benefits section */
@media (max-width: 992px) {
    .benefit-row, 
    .benefit-row.reverse {
        flex-direction: column;
    }
    
    .benefit-img-col {
        width: 100%;
        max-width: 100%;
        min-height: 250px;
    }
    
    .benefit-text-col {
        padding: 2rem 1.5rem;
    }
    
    .benefit-calculator, 
    .time-savings-box, 
    .revenue-boost-container {
        margin-top: 1rem;
    }
    
    .calculator-result,
    .time-value,
    .revenue-amount {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        gap: 2.5rem;
    }
    
    .benefit-row {
        min-height: auto;
    }
    
    .benefit-img-col {
        min-height: 200px;
    }
    
    .benefit-text-col h3 {
        font-size: 1.5rem;
    }
    
    .benefit-text-col p {
        font-size: 1.05rem;
    }
    
    .benefit-feature {
        font-size: 1rem;
    }
    
    .benefit-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .benefit-row:hover {
        transform: none;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .benefit-img-col {
        min-height: 180px;
    }
    
    .benefit-text-col {
        padding: 1.5rem 1.2rem;
    }
    
    .benefit-text-col h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-text-col p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .time-savings-box,
    .revenue-boost-visual {
        flex-direction: column;
        gap: 1rem;
    }
    
    .time-item,
    .revenue-bar {
        width: 100%;
    }
    
    .revenue-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

/* Final CTA Section styling */
.final-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.final-cta-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.final-cta-headline::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #4CAF50;
    margin: 15px auto 0;
    border-radius: 2px;
}

.final-price-container {
    margin-bottom: 30px;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.price-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.price-label {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 10px;
}

.regular-price-cta {
    text-decoration: line-through;
    color: #d32f2f;
    font-weight: 500;
    margin-left: 5px;
}

.price-discount {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.price-value {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #4CAF50;
    margin: 15px 0;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.price-tagline {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-top: 5px;
}

.szybki-start-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    gap: 25px;
}

.start-button {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-blend-mode: overlay, screen, normal;
    padding: 5px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    animation: brilho 2s ease-in-out 0s infinite, pulse 2s ease-in-out 0s infinite;
    width: 600px;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.button-content {
    padding: 18px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.button-main {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.button-sub {
    font-size: 14px;
    opacity: 0.9;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.42);
}

.start-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.no-thanks-button {
    color: #ff0000;
    text-decoration: none;
    font-size: 16px;
    padding: 8px;
    transition: color 0.3s;
    text-decoration: underline;
    font-weight: 500;
    line-height: 2;
}

.no-thanks-button:hover {
    color: #ff0000;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
}

.final-guarantee .guarantee-icon {
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-guarantee p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 40px 0;
    }
    
    .final-cta-content {
        padding: 30px 20px;
    }
    
    .price-value {
        font-size: 56px;
    }
    
    .price-label {
        font-size: 16px;
    }
    
    .price-discount {
        font-size: 12px;
    }
    
    .button-content {
        padding: 15px 20px;
    }
    
    .button-main {
        font-size: 18px;
    }
    
    .button-sub {
        font-size: 12px;
    }
} 

/* Key Challenges Section Styles */
.key-challenges-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    position: relative;
}

.challenges-content {
    max-width: 100%;
    margin: 0 auto;
}

.eye-grabber {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.eye-grabber-badge {
    background: #e74c3c;
    color: white;
    font-weight: 700;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: pulse-scale 2s infinite;
}

.challenges-content .section-headline {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a3c61;
    line-height: 1.2;
}

.text-highlight {
    color: #e74c3c;
    font-weight: 800;
    position: relative;
    white-space: nowrap;
}

.text-highlight:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e74c3c;
}

.challenges-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #333;
    line-height: 1.6;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.challenge-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.challenge-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.challenge-number {
    background: #e74c3c;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.challenge-time-cost {
    background: rgba(231, 76, 60, 0.1);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cost-label {
    font-size: 0.75rem;
    color: #666;
}

.cost-value {
    font-weight: 700;
    color: #e74c3c;
}

.challenge-content h3 {
    color: #1a3c61;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.challenge-content p {
    color: #555;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.consequence-tag {
    background: rgba(231, 76, 60, 0.08);
    border-left: 3px solid #e74c3c;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.opportunity-box {
    background: linear-gradient(135deg, #fff, #f0f7ff);
    border: 2px dashed #3a6ea5;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.opportunity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a3c61;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.opportunity-badge svg {
    color: #fff;
}

.opportunity-headline {
    margin: 0;
    font-size: 1.5rem;
    color: #1a3c61;
    line-height: 1.4;
}

.solution-transition {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.5rem;
    position: relative;
    margin-top: 3rem;
}

.solution-banner {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 8px;
    color: #fff;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #90CAF9;
}

.solution-banner svg {
    flex-shrink: 0;
}

.solution-banner h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.premium-badge {
    background: #f8d12f;
    color: #1a3c61;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
}

.sales-proof {
    background: rgba(40, 167, 69, 0.08);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.proof-icon {
    background: #28a745;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.sales-proof p {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.components-preview {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.component-preview-item {
    border: 2px solid #1a3c61;
    flex: 1;
    min-width: 220px;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.component-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.component-preview-item.primary {
    background: rgba(26, 60, 97, 0.03);
    border: 2px solid #1a3c61;
    box-shadow: 0 4px 16px rgba(26, 60, 97, 0.1);
}

.hot-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(5deg);
    z-index: 1;
}

.component-icon {
    background: #1a3c61;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.component-icon svg {
    color: #fff;
}

.component-details {
    flex: 1;
}

.component-details h4 {
    margin: 0 0 0.5rem;
    color: #1a3c61;
    font-weight: 600;
    font-size: 1.2rem;
}

.component-details p {
    margin: 0 0 0.5rem;
    color: #555;
    font-size: 1.2rem;
}

.component-value {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 600;
}

.total-value {
    margin: 2rem 0;
    text-align: center;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.value-label {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.value-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3c61;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.value-amount:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 3px;
    background-color: #e74c3c;
    transform: rotate(-5deg);
}

.special-offer-label {
    font-size: 1.2rem;
    color: #333;
}

.special-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #28a745;
}

.action-prompt {
    text-align: center;
    margin-top: 2rem;
}

.action-prompt p {
    font-size: 1.2rem;
    color: #1a3c61;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.arrow-down {
    animation: bounce 2s infinite;
    color: #1a3c61;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-content .section-headline {
        font-size: 1.8rem;
    }
    
    .components-preview {
        flex-direction: column;
    }
    
    .component-preview-item {
        width: 100%;
    }
    
    .component-icon {
        width: 40px;
        height: 40px;
    }
    
    .opportunity-headline {
        font-size: 1.3rem;
    }
    
    .value-amount {
        font-size: 1.8rem;
    }
    
    .special-price {
        font-size: 1.4rem;
    }
}

/* Workshops Section Styles */
.workshops-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    position: relative;
}



.workshops-content {
    max-width: 100%;
    margin: 0 auto;
}

.workshops-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    background-color: #1a3c61;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(26, 60, 97, 0.15);
}

.exclusive-badge svg {
    margin-right: 6px;
}

.workshops-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3c61;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.workshops-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #505050;
    margin-bottom: 1rem;
}

.key-question {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.key-question svg {
    color: #e74c3c;
    margin-right: 10px;
}

.key-question h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.workshops-description {
    font-size: 1.1rem;
    color: #505050;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.importance-note {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff7e6;
    border-radius: 10px;
    padding: 1.2rem 2rem;
    margin: 0 auto 2rem;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.note-icon {
    margin-right: 15px;
    color: #f39c12;
}

.importance-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.details-header {
    text-align: center;
    margin-bottom: 2rem;
}

.details-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3c61;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.details-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1a3c61 0%, #3a6fa0 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.detail-icon {
    background-color: #e6f2ff;
    color: #1a3c61;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3c61;
    margin-bottom: 10px;
}

.detail-content p {
    font-size: 1rem;
    color: #505050;
    margin: 0;
    line-height: 1.5;
}

.workshop-schedule {
    margin-bottom: 3rem;
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.schedule-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3c61;
    margin: 0;
}

.schedule-badge {
    background-color: #e74c3c;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 50px;
    margin-right: 25px;
    position: relative;
    z-index: 1;
}

.week-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 40px;
    background-color: #1a3c61;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(26, 60, 97, 0.2);
}

.timeline-content {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a3c61;
    margin-top: 0;
    margin-bottom: 1rem;
}

.workshop-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.workshop-topics li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.workshop-topics li:last-child {
    margin-bottom: 0;
}

.workshop-topics li svg {
    color: #2ecc71;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

.workshop-topics li span {
    color: #505050;
    line-height: 1.4;
}

.workshop-bonus {
    display: flex;
    align-items: center;
    background-color: #fff7e6;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.bonus-badge {
    background-color: #f39c12;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 10px;
}

.workshop-bonus span {
    font-weight: 600;
    color: #333;
}

.workshops-benefits {
    margin-top: 3rem;
}

.workshops-benefits .benefits-header {
    text-align: center;
    margin-bottom: 2rem;
}

.workshops-benefits .benefits-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3c61;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.workshops-benefits .benefits-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1a3c61 0%, #3a6fa0 100%);
}

.workshops-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.workshops-benefits .benefit-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshops-benefits .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.workshops-benefits .benefit-icon {
    background-color: #fff7e6;
    color: #f39c12;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.workshops-benefits .benefit-content {
    flex: 1;
}

.workshops-benefits .benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3c61;
    margin-bottom: 10px;
}

.workshops-benefits .benefit-content p {
    font-size: 1rem;
    color: #505050;
    margin: 0;
    line-height: 1.5;
}

.workshops-presenter {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.presenter-photo {
    width: 30%;
    flex-shrink: 0;
    padding: 1rem;
}

.expert-image {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.presenter-info {
    flex: 1;
    padding: 2rem;
}

.presenter-role {
    display: inline-block;
    background-color: #1a3c61;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.presenter-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 1rem;
}

.presenter-info p {
    font-size: 1rem;
    color: #505050;
    margin: 0;
    line-height: 1.5;
}

.workshops-value {
    margin-bottom: 3rem;
}

.value-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.value-badge {
    display: inline-block;
    background-color: #1a3c61;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.pricing-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.original-price-section {
    text-align: center;
}

.original-price-label {
    font-size: 1.1rem;
    color: #505050;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #777;
    text-decoration: line-through;
}

.special-offer-arrow {
    font-size: 2.5rem;
    color: #1a3c61;
    font-weight: 700;
}

.special-offer-box {
    background-color: #e6f2ff;
    border: 2px solid #1a3c61;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 6px 15px rgba(26, 60, 97, 0.12);
}

.special-offer-box:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
    border-radius: 10px 10px 0 0;
}

.special-offer-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.special-offer-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.special-offer-note {
    font-size: 0.9rem;
    color: #505050;
    margin: 0;
}

.workshops-cta {
    text-align: center;
}

.cta-arrow-down {
    margin-bottom: 1rem;
    color: #1a3c61;
    animation: bounce 2s infinite;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a3c61;
    margin: 0;
}

@media (max-width: 992px) {
    .pricing-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .special-offer-arrow {
        transform: rotate(90deg);
    }
    
    .workshops-presenter {
        flex-direction: column;
    }
    
    .presenter-photo {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .presenter-info {
        padding: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .workshops-headline {
        font-size: 2rem;
    }
    
    .key-question h3 {
        font-size: 1.3rem;
    }
    
    .timeline-container:before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
    }
    
    .week-number {
        width: 17px;
        height: 34px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    .workshops-section .detail-item,
    .workshops-benefits .benefit-item {
        flex-direction: column;
    }
    
    .workshops-section .detail-icon,
    .workshops-benefits .benefit-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .workshops-benefits .benefits-grid,
    .workshops-section .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .workshops-headline {
        font-size: 1.8rem;
    }
    
    .workshops-description {
        font-size: 1rem;
    }
    
    .importance-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .note-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .workshop-topics li span {
        font-size: 0.95rem;
    }
    
    .original-price {
        font-size: 1.8rem;
    }
    
    .special-offer-price {
        font-size: 2.2rem;
    }
}

/* Video placeholder pulsate animation */
@keyframes video-pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.video-placeholder {
    animation: video-pulsate 2.5s infinite ease-in-out;
}

/* Installation steps styling for comparison */
.installation-steps {
    margin: 15px 0;
    padding: 0 5px;
}

.installation-steps ol {
    counter-reset: step-counter;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.installation-steps ol li {
    position: relative;
    padding: 8px 0 8px 35px;
    margin-bottom: 5px;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #333;
}

.installation-steps ol li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-color: #e0e0e0;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-a .installation-steps ol li:nth-child(12):before {
    background-color: #4CAF50;
    color: white;
}

.option-b .installation-steps ol li:nth-child(1):before,
.option-b .installation-steps ol li:nth-child(11):before {
    background-color: #4CAF50;
    color: white;
}

.option-b .installation-steps ol li:nth-child(n+2):nth-child(-n+10):before {
    background-color: rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.2);
}

.option-summary.positive {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-color: #4CAF50;
}

.option-summary.positive svg {
    color: #4CAF50;
}

/* Make the comparison more appealing */
.comparison-grid {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 25px;
}

.comparison-row {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .comparison-row {
        flex-direction: column;
    }
    
    .installation-steps ol li {
        font-size: 13px;
        padding: 6px 0 6px 30px;
    }
    
    .installation-steps ol li:before {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

/* Section Header */
.section-header-main {
    background: rgba(255, 87, 34, 0.9);
    padding: 30px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header-main h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-header-main::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgba(255, 87, 34, 0.9);
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-header-main h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header-main h2 {
        font-size: 1.5rem;
    }
    
    .section-header-main {
        padding: 20px 0;
    }
}

/* Component Value Summary Section */
.component-value-summary {
    background-color: #f8f9fa;
    padding: 3rem 0;

}

.value-summary-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

/* Value tag styles removed as they're no longer used */

.value-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.value-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-icon {
    color: var(--highlight-color);
    background-color: rgba(255, 69, 0, 0.1);
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.value-price-summary {
    background: linear-gradient(135deg, #ff4500, #ff7043);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.value-price-label {
    font-size: 1rem;
    white-space: nowrap;
}

.value-price-amount {
    font-size: 1.2rem;
    font-weight: 800;
    white-space: nowrap;
}

.value-summary-divider {
    margin-top: 2rem;
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .value-features {
        grid-template-columns: 1fr;
    }
    
    .value-price-summary {
        width: 100%;
        margin-bottom: 1rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .value-summary-content {
        padding: 1.5rem;
    }
}

/* Summary AI Toolkit Section */
.summary-ai-toolkit {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.summary-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffe4da;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid #ff4500;
}

.summary-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.summary-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #0a2540, #1a3c61);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 8px;
}

.summary-headline {
    font-size: 28px;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.price-highlight {
    color: #ff4500;
    font-weight: 800;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.summary-point {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ff4500;
}

.summary-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.summary-point.highlight {
    border: 2px solid #ff4500;
    background: #ffffff;
}

.point-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(26, 60, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #1a3c61;
    position: relative;
}

.point-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #ff4500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.point-content {
    flex: 1;
}

.point-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1a3c61;
    font-weight: 700;
}

.point-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #505050;
    line-height: 1.5;
}

.point-value {
    display: inline-block;
    background: rgba(255, 69, 0, 0.1);
    color: #ff4500;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}

.hot-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff4500;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
    transform: rotate(2deg);
}

.summary-total {
    background: linear-gradient(45deg, #0a2540, #1a3c61);
    color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.3);
}

.total-label {
    font-size: 18px;
    margin-bottom: 5px;
}

.total-value {
    font-size: 36px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: line-through;
    opacity: 0.7;
}

.total-price {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    min-width: 250px;
}

.your-price {
    font-size: 16px;
    margin-bottom: 8px;
}

.final-price {
    font-size: 42px;
    font-weight: 800;
    color: #ff4500;
    margin-bottom: 10px;
}

.savings {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.summary-guarantee {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.guarantee-icon {
    color: #4CAF50;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee-content h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
    color: #4CAF50;
}

.guarantee-content p {
    margin: 0;
    font-size: 14px;
    color: #505050;
}

.summary-urgency {
    display: flex;
    align-items: center;
    background: #FFF3E0;
    border-radius: 12px;
    padding: 20px;
    border: 1px dashed #FF9800;
}

.urgency-icon {
    font-size: 24px;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.summary-urgency p {
    margin: 0;
    font-size: 16px;
    color: #E65100;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .summary-content {
        padding: 25px;
    }
    
    .summary-point {
        flex-direction: column;
        padding: 20px;
    }
    
    .point-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .hot-badge {
        right: 10px;
    }
    
    .summary-total {
        padding: 20px;
    }
    
    .total-value, .final-price {
        font-size: 28px;
    }
    
    .guarantee-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
}

/* Marketplace Usage Section Styles */
.marketplace-usage-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    position: relative;
}

.marketplace-content {
    max-width: 1000px;
    margin: 0 auto;
}

.marketplace-benefit-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.marketplace-icon {
    margin-right: 25px;
    min-width: 50px;
    color: var(--primary-color);
}

.marketplace-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

.marketplace-platforms {
    margin: 40px 0;
}

.marketplace-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.marketplace-box {
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.marketplace-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.marketplace-box span {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.marketplace-box.allegro {
    background-color: #FF5B00;
}

.marketplace-box.empik {
    background-color: #000000;
}

.marketplace-box.erli {
    background-color: #0397BC;
}

.marketplace-box.amazon {
    background-color: #CEA968;
}

.marketplace-description {
    background-color: white;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.marketplace-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.marketplace-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item.highlight {
    background-color: #1a3c61;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item.highlight .stat-number {
    color: #ffc107;
}

.stat-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.stat-item.highlight .stat-description {
    color: rgba(255, 255, 255, 0.9);
}

.strategy-box {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.strategy-header {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a3c61;
    margin-bottom: 25px;
    text-align: center;
}

.strategy-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-point {
    display: flex;
    align-items: flex-start;
}

.point-icon {
    background-color: rgba(76, 175, 80, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #4CAF50;
}

.point-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.client-case {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.case-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: #FF5722;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(255, 87, 34, 0.3);
}

.quote-icon {
    font-size: 4rem;
    color: rgba(26, 60, 97, 0.1);
    line-height: 0.5;
    margin-bottom: 15px;
}

.client-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin-right: 15px;
    background-image: url('../images/optimized/client-avatar.webp');
    background-size: cover;
    background-position: center;
}

.client-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3c61;
}

.marketplace-prompt {
    text-align: center;
    margin: 40px 0 20px;
}

.marketplace-prompt h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 15px;
}

.marketplace-prompt p {
    font-size: 1.2rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .marketplace-benefit-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .marketplace-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .marketplace-highlight {
        font-size: 1.2rem;
    }
    
    .marketplace-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketplace-description p {
        font-size: 1rem;
    }
    
    .marketplace-stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .strategy-point {
        align-items: center;
    }
    
    .client-case {
        padding: 20px;
    }
    
    .case-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .marketplace-prompt h3 {
        font-size: 1.5rem;
    }
    
    .marketplace-prompt p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .marketplace-boxes {
        grid-template-columns: 1fr;
    }
}