/* ========================================
   Reset & Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #F5655A;
    --primary-hover: #e04f44;
    --text-primary: #111111;
    --text-secondary: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F7F7F7;
    --border-color: #E5E5E5;
    
    /* Typography */
    --font-title: 'IBM Plex Sans KR', sans-serif;
    --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-label: 'Georgia', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 40px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: white;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   Real-time Notification
   ======================================== */

.realtime-notification {
    position: fixed;
    bottom: 120px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.realtime-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 20px;
}

.notification-text {
    font-size: 14px;
    color: var(--text-primary);
}

/* ========================================
   Typography
   ======================================== */

.section-label {
    font-family: var(--font-label);
    font-style: italic;
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'IBM Plex Sans KR', var(--font-title);
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* ========================================
   CTA Button
   ======================================== */

.cta-button {
    background: var(--primary-color);
    color: var(--bg-white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 101, 90, 0.3);
}

.cta-button.large {
    font-size: 20px;
    padding: 22px 50px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    padding: 140px 0 100px;
    background: transparent;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero-title {
    font-family: 'IBM Plex Sans KR', var(--font-title);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-price {
    margin-bottom: 24px;
}

.price-amount {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 48px;
    color: var(--primary-color);
}

.hero-trust-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.trust-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.5;
}

.hero-trust-text {
    margin-bottom: 30px;
}

.hero-trust-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-channels {
    margin-top: 30px;
}

.channels-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-align: left;
}

.channels-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.channel-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    border: 2px solid white;
}

.channel-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: white;
    border: 3px solid white;
    position: relative;
    transition: all 0.3s ease;
}

.channel-logo:not(:first-child) {
    margin-left: -10px; /* 20% overlap */
}

.channel-logo.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    z-index: 4;
}

.channel-logo.facebook {
    background: #1877f2;
    z-index: 3;
}

.channel-logo.tiktok {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    z-index: 2;
}

.channel-logo.linkedin {
    background: #0077b5;
    z-index: 1;
}

.channel-logo:hover {
    /* Hover effect removed */
}

.channel-logo span {
    filter: brightness(0) invert(1);
}

/* Hero Visual - Card Slider */

.hero-visual {
    position: relative;
    height: 600px;
}

.card-slider {
    position: relative;
    height: 100%;
}

.feed-card {
    position: absolute;
    width: 100%;
    height: 500px;
    background: white;
    border-radius: 15px;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
}

.feed-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

.feed-card:nth-child(2) {
    opacity: 0.7;
    transform: translateX(20px) translateY(20px) scale(0.95);
    z-index: 2;
}

.feed-card:nth-child(3) {
    opacity: 0.4;
    transform: translateX(40px) translateY(40px) scale(0.9);
    z-index: 1;
}

.feed-card.active:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE5E2 0%, #FFD1CC 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

/* ========================================
   Pricing Section - SaaS Style
   ======================================== */

.pricing-section-saas {
    padding: var(--section-padding);
    background: #FAFBFC;
}

/* 2컬럼 레이아웃: 좌측 메인 / 우측 애드온 2분할 */
.pricing-layout-two-column {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

/* 좌측: 메인 서비스 카드 (상하 전체 높이) */
.pricing-card-main {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card-main:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* 우측: 애드온 컬럼 (상하 2분할) */
.pricing-addons-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 애드온 카드 */
.pricing-card-addon {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
}

.pricing-card-addon:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Add-on 뱃지 */
.addon-badge-label {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #F5655A 0%, #FF8E53 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
}

/* 1️⃣ 카테고리 라벨 (작은 pill) */
.category-pill {
    display: inline-block;
    background: #F3F4F6;
    color: #6B7280;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 15px;
    margin-bottom: 16px;
    width: fit-content;
}

.category-pill.addon-pill {
    background: #FFE5E2;
    color: #F5655A;
}

/* 2️⃣ 서비스명 (타이틀) */
.service-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-card-addon .service-title {
    font-size: 22px;
}

/* 3️⃣ 한 줄 설명 (보조 텍스트) */
.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.pricing-card-addon .service-description {
    font-size: 14px;
    margin-bottom: 24px;
}

/* 4️⃣ 가격 (가장 크게 강조) */
.price-display {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 48px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-card-addon .price-display {
    font-size: 36px;
}

/* 5️⃣ 가격 단위 텍스트 (작게) */
.price-unit-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-card-addon .price-unit-text {
    font-size: 13px;
    margin-bottom: 24px;
}

/* 6️⃣ 옵션 선택 드롭다운 */
.option-selector {
    margin-bottom: 24px;
}

.option-label-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: left;
}

.select-dropdown {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-primary);
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.select-dropdown:hover {
    border-color: var(--primary-color);
}

.select-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 101, 90, 0.1);
}

/* 7️⃣ Primary CTA 버튼 */
.btn-primary-cta {
    width: 100%;
    background: #F5655A;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 101, 90, 0.3);
    margin-bottom: 16px;
}

.btn-primary-cta:hover {
    background: #E04E43;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 101, 90, 0.4);
}

.btn-primary-cta:active {
    transform: translateY(0);
}

/* 8️⃣ Secondary 링크 */
.link-secondary-cta {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.link-secondary-cta:hover {
    color: #E04E43;
    text-decoration: underline;
}

.discount-timer {
    max-width: 600px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.timer-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.timer-text {
    font-size: 16px;
    font-weight: 500;
}

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

.timer-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 10px;
    min-width: 70px;
    text-align: center;
}

.timer-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

.timer-colon {
    font-size: 28px;
    font-weight: 700;
    opacity: 0.7;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.package-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.package-price {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-original {
    font-size: 20px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 52px;
    color: var(--primary-color);
}

.price-save {
    background: #FFE5E2;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-primary);
}

.guarantee-icon {
    font-size: 16px;
    color: var(--primary-color);
}

.guarantee-text {
    font-weight: 500;
}

.package-includes {
    text-align: left;
    margin-bottom: 40px;
}

.package-includes h4 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.includes-list {
    list-style: none;
}

.includes-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.includes-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.package-addons {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.addon-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.addon-item {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 6px 0;
}

/* ========================================
   Gallery Section
   ======================================== */

.gallery-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.feed-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.feed-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE5E2 0%, #FFD1CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.feed-item:hover .feed-placeholder {
    transform: scale(1.05);
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.overall-rating {
    text-align: center;
    margin-bottom: 50px;
}

.rating-stars {
    font-size: 32px;
    margin-bottom: 10px;
}

.rating-info {
    font-size: 18px;
    color: var(--text-secondary);
}

.rating-info strong {
    color: var(--text-primary);
    font-size: 22px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-date {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 15px;
    font-style: italic;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8A82 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info h4 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
}

/* ========================================
   Before/After Section
   ======================================== */

.before-after-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.comparison-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.comparison-image {
    width: 350px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.empty-feed {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
}

.complete-feed {
    width: 100%;
    height: 100%;
    background: white;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mini-feed {
    background: linear-gradient(135deg, #FFE5E2 0%, #FFD1CC 100%);
    border-radius: 6px;
}

.comparison-caption {
    font-size: 16px;
    color: var(--text-primary);
}

.comparison-arrow {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   Support Bar Section
   ======================================== */

.support-bar {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    padding: 30px 0;
    text-align: center;
}

.support-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-text {
    color: white;
    font-size: 18px;
    margin: 0;
}

.support-text strong {
    font-weight: 700;
}

.support-btn {
    background: white;
    color: #4A90E2;
    padding: 12px 30px;
    border-radius: 15px;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ========================================
   Process Section
   ======================================== */

.process-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.process-content {
    margin-top: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.process-detail {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.process-visual {
    position: sticky;
    top: 100px;
}

.visual-placeholder {
    background: white;
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    font-size: 24px;
    color: var(--text-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-text h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-primary);
}

.process-text h3:first-child {
    margin-top: 0;
}

.process-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}

.process-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Results Section
   ======================================== */

.results-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.result-item {
    text-align: center;
    padding: 30px;
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.result-item h3 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
}

.result-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.faq-container {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 50px;
    align-items: start;
}

.faq-left .section-label,
.faq-left .section-title,
.faq-left .section-description {
    text-align: left;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 17px;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 18px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    /* Push buttons below by using larger margin-top */
    margin-top: calc(40px + 180px); /* Push below section header + description */
}

.faq-cta-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.faq-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-cta-btn.primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-cta-btn.primary:hover {
    background: var(--primary-hover);
}

.faq-cta-icon {
    font-size: 36px;
}

.faq-cta-text {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-cta-btn.primary .faq-cta-text {
    color: white;
}

/* ========================================
   Final CTA Section
   ======================================== */

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8A82 100%);
    color: white;
    text-align: center;
}

.final-cta-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-section .cta-button {
    background: white;
    color: var(--primary-color);
}

.final-cta-section .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.final-cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   Mobile Sticky CTA
   ======================================== */

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.mobile-sticky-cta .cta-button {
    width: 100%;
    font-size: 16px;
    padding: 16px 30px;
}

/* Show mobile sticky CTA on mobile */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

/* ========================================
   Payment Modal
   ======================================== */

.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.modal-header h3 {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-price-original {
    font-size: 18px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.modal-price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.payment-form {
    padding: 30px 40px 40px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h4 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 101, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.order-summary {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.summary-row.discount {
    color: var(--primary-color);
    font-weight: 600;
}

.summary-row.total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--border-color);
    font-size: 18px;
    font-weight: 700;
}

.line-through {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.form-checkbox {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 101, 90, 0.3);
}

.submit-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 101, 90, 0.4);
}

.payment-notice {
    margin-top: 20px;
    padding: 20px;
    background: #F0F9FF;
    border-radius: 10px;
    border-left: 4px solid #3B82F6;
}

.payment-notice p {
    font-size: 13px;
    color: var(--text-primary);
    margin: 5px 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-info {
    margin-top: 10px;
}

/* Show mobile sticky CTA on mobile */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}