@import './reset.css';
@import './variables.css';

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    /* Changed to Orange */
    color: white;
    border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Utility classes for sections */
section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.section-title span {
    color: var(--color-primary);
    /* Changed from Cyan to Orange for legibility */
    background: linear-gradient(transparent 70%, rgba(249, 115, 22, 0.2) 70%);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-bg-light);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: calc(var(--header-height) + var(--spacing-xl));
    /* Image background with overlay */
    background: linear-gradient(rgba(255, 251, 235, 0.9), rgba(255, 251, 235, 0.85)), url('../assets/hero_bg_startup.png');
    background-size: cover;
    background-position: center;
    color: var(--color-text-main);
    overflow: hidden;
    position: relative;
    min-height: 80vh;
    /* Taller hero */
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    /* Changed from grid to flex */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-sub {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    /* Orange text */
    text-shadow: 3px 3px 0px #FFF, -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.hero-main-text {
    font-size: 2rem;
    /* Reduced from 3.5rem */
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0.9;
}

.line-break {
    display: block;
}

.hero-sub-text {
    font-size: 3rem;
    /* Increased from 2rem (Was smaller, now Main) */
    font-weight: 900;
    /* Added weight */
    background: linear-gradient(transparent 60%, rgba(6, 182, 212, 0.2) 60%);
    padding: 0 0.5rem;
    display: inline-block;
    line-height: 1.3;
}

/* Remove old text-accent as it is replaced by hero-sub-text styles */
/* .text-accent { ... } */

@media (min-width: 768px) {
    .hero-main-text {
        font-size: 2.5rem;
        /* Reduced from 5rem */
        flex-direction: column;
    }

    .hero-sub-text {
        font-size: 5rem;
        /* Increased from 3rem (Massive) */
    }
}

.hero-desc {
    color: var(--color-text-main);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    /* Bolder */
    font-size: 1.1rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.9);
    /* More solid */
    backdrop-filter: blur(8px);
    /* Blur effect */
    display: inline-block;
    padding: 2rem 3rem;
    /* Much larger padding */
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    /* Floating shadow */
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    max-width: 90%;
}

/* Add a subtle accent top border */
.hero-desc::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    /* Cyan accent */
    border-radius: 0 0 4px 4px;
}

.hero-cta {
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #22D3EE 0%, #06B6D4 100%);
    /* Cyan Gradient */
    color: white;
    font-size: 1.4rem;
    /* Larger button */
    padding: 1.2rem 4rem;
    box-shadow: 0 4px 14px 0 rgba(6, 182, 212, 0.39);
    border: 3px solid white;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.23);
    background: linear-gradient(90deg, #06B6D4 0%, #0891B2 100%);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
        /* Bigger title on desktop */
    }

    .hero-cta {
        width: auto;
    }
}

/* Hide old visual elements as we are centering text */
.hero-visual {
    display: none;
}

/* Visual Placeholder (Hidden) */
/* .hero-visual { ... } */
/* .visual-card { ... } */

/* --- Problem Section --- */
/* --- Problem Section --- */
.problem-section {
    background-color: #E5E7EB;
    /* Vertical blocks background */
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.4) 15%,
            transparent 15%,
            transparent 35%,
            rgba(255, 255, 255, 0.4) 35%,
            rgba(255, 255, 255, 0.4) 55%,
            transparent 55%,
            transparent 80%,
            rgba(255, 255, 255, 0.4) 80%,
            rgba(255, 255, 255, 0.4) 100%);
    background-size: 100% 100%;
    text-align: center;
}

.text-danger {
    color: var(--color-danger);
    font-weight: 900;
    /* No underline - was causing issues */
}

.problem-lead {
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
    margin: var(--spacing-xl) auto;
    max-width: 800px;
    line-height: 1.8;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Removed 3-column media query */

.problem-item {
    background: #9CA3AF;
    /* Dark Grey matching reference */
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
    /* Align text left like reference */
}

.problem-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

/* Quote Decoration */
.problem-item::before {
    content: '“';
    position: absolute;
    top: 0rem;
    left: 1rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.problem-item .icon {
    display: none;
    /* Reference image has no icons, just quotes */
}

/* --- Solution Section --- */
.solution-section {
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.solution-section .section-title {
    color: white;
}

.solution-box {
    background: white;
    /* Changed from transparent to white */
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Added shadow for depth */
}

/* Solution Box Polish */
.price-display {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    /* Center vertically for mobile */
    margin: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .price-display {
        flex-direction: row;
        align-items: flex-start;
        /* Align tops (Labels) */
        gap: 2rem;
    }
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.price-item .label {
    font-size: 1.1rem;
    color: #78350F;
    /* Dark Brown (Image match) */
    font-weight: 700;
    margin-bottom: 0.5rem;
    height: 1.5rem;
    /* Fixed height for alignment safety */
    display: flex;
    align-items: center;
}

.price-item .value {
    font-size: 4.5rem;
    /* Unified large size */
    font-weight: 900;
    color: #F97316;
    line-height: 1;
}

.price-item small {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 0.2rem;
}

/* Highlight "3,300" */
.price-item.highlight .value {
    color: #EF4444;
    /* Size is now unified */
}

.solution-desc {
    color: var(--color-text-main);
    /* Dark text */
    font-weight: 700;
}

.solution-desc strong {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Plus Signs */
.price-plus {
    font-size: 2.5rem;
    color: #78350F;
    /* Dark Brown */
    font-weight: 700;
    margin-top: 1.8rem;
    /* Adjusted up slightly (was 2.2rem) */
}

/* --- Comparison Section --- */
.comparison-section {
    background: var(--color-bg-light);
}

.scroll-hint {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--spacing-md);
    padding-bottom: 1rem;
    /* For scrollbar space */
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    /* Force scroll on small screens */
    border-collapse: separate;
    border-spacing: 2px;
    /* Gap for grid lines */
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
}

/* Header Row */
.comparison-table thead th {
    color: white;
    font-weight: 700;
    padding: 1.5rem 1rem;
}

.comparison-table .th-empty {
    background: white;
    /* Top-left empty cell */
}

.comparison-table .th-our {
    background: #F97316;
    /* Orange */
    font-size: 1.3rem;
    width: 35%;
}

.comparison-table .th-other {
    background: #78716c;
    /* Grey */
    font-size: 1rem;
    width: 25%;
}

/* Row Headers (Left Column) */
.comparison-table .th-row {
    background: #FFD700;
    /* Yellow */
    color: #333;
    font-weight: 700;
    width: 15%;
}

/* Cells */
.comparison-table td {
    background: #F3F4F6;
    /* Light Grey Default */
    color: #333;
    font-weight: 500;
}

/* Our Cells */
.comparison-table .td-our {
    background: white;
    border: 2px solid #F97316;
    /* Orange Border */
    color: #F97316;
    font-weight: 700;
}

.comparison-table .highlight {
    font-size: 1.3rem;
    /* Larger font for our prices */
}

.comparison-table .note {
    font-size: 0.8rem;
    font-weight: normal;
    color: #4B5563;
    display: block;
    margin-top: 0.2rem;
}

.comparison-note {
    text-align: center;
    font-weight: 700;
    margin-top: var(--spacing-md);
    color: var(--color-danger);
    /* Make it stand out a bit */
}

/* --- Reason Section --- */
.reason-section {
    background: white;
    text-align: center;
}

.reason-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .reason-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reason-card {
    padding: var(--spacing-lg);
    background: white;
    border: 1px solid var(--color-bg-light);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-bg-light);
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.reason-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-sm);
}

.reason-card p {
    position: relative;
    z-index: 1;
}

/* --- Speed Section --- */
.speed-section {
    background: var(--color-bg-light);
    text-align: center;
}

.timeline-container {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.timeline-label {
    width: 60px;
    font-weight: 700;
    text-align: right;
    font-size: 1.1rem;
}

.timeline-bar {
    flex: 1;
    display: flex;
    height: 60px;
    border-radius: 50px;
    /* Fully rounded */
    overflow: hidden;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    /* Stack text */
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #475569;
    /* Slate 600 */
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
}

.timeline-row.other .timeline-bar {
    background: #dae2ed;
    /* Light Blue Grey (Image match) */
}

.timeline-row.our .timeline-bar {
    background: #06B6D4;
    /* Cyan (Image match) */
}

/* Steps inside Our Bar */
.timeline-step.highlight {
    background: transparent;
    /* Background is on parent */
    color: white;
    /* Changed from Orange to White for better contrast on Cyan */
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.total-time {
    width: 100px;
    font-weight: 700;
    text-align: left;
    font-size: 1.1rem;
}

.total-time.highlight {
    color: var(--color-danger);
    /* Red */
    font-size: 1.8rem;
    /* Larger */
}

/* --- Features Section --- */
.features-section {
    background: white;
    text-align: center;
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    gap: var(--spacing-sm);
}

.features-list li {
    background: #f8fafc;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.features-list .check {
    font-size: 1.5rem;
}

/* --- Works Section --- */
.works-section {
    background: var(--color-bg-white);
    text-align: center;
}

.works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.work-item {
    text-align: left;
}

.work-thumb {
    height: 250px;
    background: #e2e8f0;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-light);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.work-thumb.corp {
    background: linear-gradient(45deg, #1e293b, #334155);
    color: white;
}

.work-thumb.beauty {
    background: linear-gradient(45deg, #fbc2eb, #a6c1ee);
    color: white;
}

.work-thumb.food {
    background: linear-gradient(45deg, #fbbf24, #d97706);
    color: white;
}

.work-cat {
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Offer Section --- */
.offer-section {
    background: #F97316;
    /* Solid Orange */
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.offer-box.ticket-style {
    background: white;
    /* Changed to White */
    border: 3px solid #06B6D4;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl) var(--spacing-xl);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Softer shadow */
    color: #333;
    /* Dark Text */
}

.offer-tag {
    position: absolute;
    top: -1.8rem;
    left: 50%;
    transform: translateX(-50%);
    background: #06B6D4;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 2.5rem;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .offer-price {
        flex-direction: row;
        align-items: baseline;
    }
}

.price-strikethrough {
    font-size: 1.1rem;
    color: #64748B;
    /* Darker Slate Grey for visibility on white */
    text-decoration: line-through;
}

.arrow-icon {
    color: #EF4444;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 1rem;
}

.price-huge {
    font-size: 2.8rem;
    font-weight: 900;
    color: #EF4444;
    /* Changed to Red */
    animation: pulse-red 2s infinite;
    /* Hardware acceleration hints to prevent blur */
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.offer-conditions {
    color: #4B5563;
    /* Dark Grey */
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.urgency-counter {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1F2937;
    /* Very Dark Grey/Black */
}

.count-animate {
    color: #EF4444;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0.5rem;
}



.offer-cta {
    background: #F97316;
    /* Orange Button */
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.2rem 4rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: transform 0.2s;
    display: inline-block;
}

.offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

@media (min-width: 768px) {
    .offer-cta {
        width: auto;
    }
}

/* --- Voices Section --- */
.voices-section {
    background: var(--color-bg-light);
}

.voices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

@media (min-width: 768px) {
    .voices-grid {
        grid-template-columns: 1fr;
        /* Force single column on desktop */
        max-width: 700px;
        /* Limit width */
    }
}

.voice-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.voice-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--color-bg-light);
    font-family: serif;
    line-height: 1;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}



.voice-meta {
    display: flex;
    flex-direction: column;
}

.voice-meta strong {
    font-size: 1.1rem;
}

.voice-meta span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* --- FAQ Section --- */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: white;
    border: 1px solid var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-accent);
}

.faq-item dt {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: 1.5rem;
}

.faq-item dt::before {
    content: "Q.";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.faq-cta {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 1rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.faq-item dd {
    padding-left: 1.5rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

/* --- Flow Section --- */
.flow-section {
    background: var(--color-bg-light);
    text-align: center;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .flow-steps {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
}

.flow-step {
    background: white;
    padding: var(--spacing-xl);
    /* Increased padding */
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 320px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Clean subtle shadow */
}

.step-num {
    background: #06B6D4;
    /* Cyan */
    color: white;
    /* White text */
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto var(--spacing-md);
}

.payment-notice {
    background: #f0fdf4;
    /* Light Green */
    border: 1px solid #22c55e;
    color: #15803d;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-md);
    padding: var(--spacing-lg);
    font-size: 1.3rem;
}

.step-body h3 {
    margin-bottom: var(--spacing-xs);
    color: #F97316;
    /* Orange Headline */
    font-size: 1.3rem;
    font-weight: 800;
}

.step-arrow {
    font-size: 2.5rem;
    color: #4B2E20;
    /* Dark Brown Arrow */
    transform: rotate(90deg);
    margin: 0 1rem;
}

@media (min-width: 768px) {
    .step-arrow {
        transform: rotate(0);
    }
}

/* --- Contact Section --- */
.contact-section {
    background: linear-gradient(to bottom, var(--color-bg-white) 50%, var(--color-primary) 50%);
    padding-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .contact-section {
        background: linear-gradient(to bottom, var(--color-bg-white) 40%, var(--color-primary) 40%);
    }
}

.form-container {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: left;
}

.form-group label {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.radio-plan {
    border: 1px solid var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.radio-plan:hover {
    background: var(--color-bg-light);
}

.radio-plan input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.radio-plan label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
}

.radio-plan label strong {
    font-size: 1.1rem;
    color: var(--color-primary);
}

.radio-plan label span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.plan-note {
    font-size: 0.8rem;
    color: var(--color-danger);
    /* Red */
    margin-top: 0.2rem;
    display: block;
}

.required {
    background: var(--color-danger);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.form-group input {
    padding: 1rem;
    border: 1px solid var(--color-text-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.form-group input:focus {
    outline: 2px solid var(--color-accent);
    border-color: transparent;
}

.radio-plan {
    border: 2px solid var(--color-accent);
    background: #fffbef;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.radio-plan label {
    display: flex;
    flex-direction: column;
}

.credit-dummy {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: var(--radius-md);
    color: var(--color-text-light);
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.2rem;
    margin-top: var(--spacing-md);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-sm);
}

/* =================================
   ANIMATIONS
================================= */

/* Keyframe Definitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Scroll Animation Classes (activated by JS) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* Hero Entrance Animations */
.hero-sub {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-main-text {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-sub-text {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-desc {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 1s both, pulse 2s ease-in-out 2s infinite;
}

/* Card Hover Animations */
.problem-item,
.reason-card,
.work-item,
.voice-card,
.faq-item,
.flow-step {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover,
.reason-card:hover,
.work-item:hover,
.voice-card:hover,
.flow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Section Title Animation */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: var(--color-accent);
    margin: var(--spacing-sm) auto 0;
    transition: width 0.6s ease;
    border-radius: var(--radius-full);
}

.section-title.visible::after {
    width: 80px;
}

/* Floating Animation for Visual Elements */
.offer-box {
    animation: float 4s ease-in-out infinite;
}

/* Timeline Step Animation */
.timeline-step {
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-row:hover .timeline-step.highlight {
    transform: scale(1.02);
}

/* FAQ Accordion-style hover */
.faq-item {
    cursor: pointer;
}

.faq-item:hover dt {
    color: var(--color-accent);
}

/* Features List Item Animation */
.features-list li {
    transition: transform 0.3s ease, background 0.3s ease;
}

.features-list li:hover {
    transform: translateX(10px);
    background: rgba(6, 182, 212, 0.1);
}

/* Price Display Pulse */
.price-item.highlight .value {
    animation: pulse 2s ease-in-out infinite;
}

/* Comparison Table Row Hover */
.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(6, 182, 212, 0.05);
}

/* Form Input Focus Animation */
.form-group input:focus {
    transform: scale(1.01);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

/* Submit Button Special Effect */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 60%);
    animation: shimmer 3s infinite;
}

/* Urgency Counter Pulse */
.urgency-counter .count {
    animation: pulse 1.5s ease-in-out infinite;
    display: inline-block;
}

/* Hero Price Comparison */
.hero-price-compare {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.original-price {
    text-decoration: line-through;
    color: var(--color-text-light);
    opacity: 0.8;
}

.price-arrow {
    color: var(--color-danger);
    font-size: 1.5rem;
    animation: pulse 1s ease-in-out infinite;
}

.campaign-price {
    color: var(--color-danger);
    font-size: 1.3rem;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-danger);
}

@media (min-width: 768px) {
    .hero-price-compare {
        font-size: 1.3rem;
    }

    .campaign-price {
        font-size: 1.5rem;
    }
}

/* Price Sentence in Hero Desc */
.price-sentence {
    display: block;
    margin-top: var(--spacing-sm);
    font-size: 1rem;
}

.price-sentence s {
    color: var(--color-text-light);
    text-decoration: line-through;
}

.highlight-price {
    color: var(--color-danger);
    font-size: 1.2rem;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .price-sentence {
        font-size: 1.1rem;
    }

    .highlight-price {
        font-size: 1.3rem;
    }
}

/* Price Note Below CTA */
.price-note {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    color: var(--color-text-main);
    text-align: center;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.price-note s {
    color: var(--color-text-light);
}

.price-note strong {
    color: var(--color-danger);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .price-note {
        font-size: 1.1rem;
    }

    .price-note strong {
        font-size: 1.2rem;
    }
}

/* Enhanced Price Note */
.price-note {
    margin-top: var(--spacing-lg);
    text-align: center;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.price-note-text {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: var(--spacing-sm);
}

.price-note-text s {
    color: var(--color-text-light);
}

.price-highlight-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-danger);
    margin-bottom: var(--spacing-sm);
}

.price-only {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.price-big {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-danger);
    text-shadow: 2px 2px 0 white;
    animation: pulse 2s ease-in-out infinite;
}

.price-note-sub {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .price-big {
        font-size: 3.5rem;
    }

    .price-only {
        font-size: 1.5rem;
    }
}

/* Hero Badge - Enhanced Emphasis */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #EA580C 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    margin: 0.3rem;
    box-shadow: 0 8px 20px -5px rgba(249, 115, 22, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out both, pulse 3s ease-in-out 2s infinite;
    border: 3px solid white;
}

.hero-badge:first-child {
    animation-delay: 0.3s, 2s;
}

.hero-badge:last-child {
    animation-delay: 0.5s, 2.5s;
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 0.8rem 2rem;
        font-size: 2.5rem;
        margin: 0.5rem;
    }
}

/* Pokiri Highlight - Animated Price Text */
.pokiri-highlight {
    display: inline-block;
    color: var(--color-danger);
    font-weight: 900;
    font-size: 1.3em;
    background: linear-gradient(transparent 60%, rgba(239, 68, 68, 0.2) 60%);
    padding: 0 0.3rem;
    animation: pokiri-bounce 2s ease-in-out infinite;
    position: relative;
}

.pokiri-highlight::before {
    content: '✨';
    position: absolute;
    left: -1.2rem;
    animation: sparkle 1s ease-in-out infinite;
}

.pokiri-highlight::after {
    content: '✨';
    position: absolute;
    right: -1.2rem;
    animation: sparkle 1s ease-in-out 0.5s infinite;
}

@keyframes pokiri-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Fix sparkle overlap */
.pokiri-highlight {
    margin: 0 1.5rem;
    /* Add space for sparkles */
}

/* Campaign Section */
.campaign-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.campaign-box {
    background: white;
    padding: var(--spacing-xl);
    /* Standard padding */
    border-radius: 30px;
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.3);
    text-align: center;
    border: 4px dashed #F97316;
    /* Orange dashed border */
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    /* Contain inner elements */
}

/* Inner golden border for premium look */
.campaign-box::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #FCD34D;
    /* Gold solid inner border */
    border-radius: 22px;
    pointer-events: none;
    z-index: 1;
}

.campaign-label {
    display: inline-block;
    /* Natural flow */
    margin-bottom: var(--spacing-lg);
    /* Space below */
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    /* Red Ribbon */
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    border: 4px solid white;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    /* Above border */
}

.campaign-price-compare {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.price-before,
.price-after {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-before .label,
.price-after .label {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.price-before .price {
    font-size: 1.8rem;
    color: var(--color-text-light);
}

.price-before .price s {
    text-decoration: line-through;
}

.price-after .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-danger);
    animation: pulse 2s ease-in-out infinite;
}

.campaign-price-compare .arrow {
    font-size: 2rem;
    color: var(--color-primary);
    animation: bounce-right 1s ease-in-out infinite;
}

@keyframes bounce-right {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.campaign-note {
    font-size: 1.1rem;
    font-weight: 700;
    color: #78350F;
    /* Dark brown for better contrast */
    margin-top: var(--spacing-sm);
}

@media (min-width: 768px) {
    .campaign-label {
        font-size: 2rem;
    }

    .price-after .price {
        font-size: 3.5rem;
    }
}

/* Remaining Slots Counter */
.remaining-slots {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.3rem;
    background: linear-gradient(135deg, #78350F 0%, #92400E 100%);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) auto;
    max-width: fit-content;
}

.remaining-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.remaining-count {
    color: #EF4444;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    animation: pulse 1s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.remaining-unit {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

@media (min-width: 768px) {

    .remaining-label,
    .remaining-unit {
        font-size: 1.5rem;
    }

    .remaining-count {
        font-size: 4rem;
    }
}

/* Remaining Slots - Friendly Yellow Design */
.remaining-slots {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%) !important;
    border: 3px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.remaining-label,
.remaining-unit {
    color: var(--color-text-main) !important;
}

.remaining-count {
    color: var(--color-primary) !important;
    text-shadow: 2px 2px 0 white !important;
}

/* Remove underline from problem section title */
.problem-section .section-title::after {
    display: none;
}

/* Prominent Problem Footer Card (White/Orange Accent) */
.problem-footer {
    background: white;
    color: var(--color-text-main);
    padding: 2rem;
    margin: 2rem auto 0;
    max-width: 800px;
    /* Match grid width */
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 10;
    line-height: 1.6;
    border-left: 5px solid var(--color-primary);
    /* Restored Accent */
}

.speed-copy {
    text-align: center;
    font-weight: 700;
    /* Bold */
    margin-top: var(--spacing-lg);
    font-size: 1.2rem;
    color: black;
    /* Black */
}