/* Gift Cards Hero Section */
.gift-hero {
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gift-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.gift-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.gift-hero .hero-description {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.stat-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 16px;
    font-weight: 700;
}

/* Why Gift Section */
.why-gift-section {
    padding: var(--section-padding);
    background: #fafbfc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    align-items: stretch;
}

.why-card {
    background: white;
    border: none;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.why-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    flex-grow: 1;
}

/* Gift Options Section */
.gift-options-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.gift-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gift-card {
    background: white;
    border: none;
    border-radius: 32px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: visible;
    z-index: 1;
}

.gift-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gift-card.featured {
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.3);
    z-index: 2;
}

.gift-card.featured:hover {
    transform: translateY(-8px);
    z-index: 10;
}

.recommended-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
    z-index: 100;
    animation: pulse-badge 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

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

.gift-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 48px 32px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gift-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gift-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.gift-badge.pro {
    background: rgba(245, 158, 11, 0.35);
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.gift-card-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.gift-price {
    margin-bottom: 12px;
}

.gift-price .price-amount {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 72px);
    font-weight: 900;
    color: white;
    display: block;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.gift-price .price-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-top: 12px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.gift-card-body {
    padding: 32px;
    flex-grow: 1;
}

.gift-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
}

.gift-card-body h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.gift-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.gift-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 500;
}

.gift-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* PROFY Explainer Box */
.profy-explainer {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border: 2px solid #8b5cf6;
    border-left: 5px solid #a78bfa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.profy-explainer p {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

.profy-explainer strong {
    color: #fde68a;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.profy-explainer .profy-description {
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
}

.profy-explainer .profy-tagline {
    color: #fde68a;
    font-style: italic;
    font-weight: 600;
}

.bulk-pricing {
    background: #fef3c7;
    border: 2px solid #fde68a;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

.bulk-pricing p {
    margin: 0;
    font-size: 15px;
    color: #92400e;
}

.btn-gift {
    width: calc(100% - 64px);
    margin: 0 32px 32px;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-gift:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

/* Value Comparison Section */
.value-comparison-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-column {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

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

.comparison-column.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.25);
}

.value-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.comparison-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px 24px;
    text-align: center;
    color: white;
}

.comparison-column.featured .comparison-header {
    background: linear-gradient(135deg, var(--primary) 0%, #5847eb 100%);
}

.comparison-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-price {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.comparison-term {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 600;
}

.comparison-body {
    padding: 32px 24px;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
}

.value-row:last-of-type {
    border-bottom: none;
}

.value-row.highlight {
    background: #f8fafc;
    margin: 16px -24px;
    padding: 16px 24px;
    border: none;
    font-weight: 700;
    font-size: 16px;
}

.value-row.savings {
    border: none;
    padding-top: 16px;
    font-weight: 700;
    color: #059669;
}

.value-label {
    color: #64748b;
    font-weight: 500;
}

.value-amount {
    color: var(--text-primary);
    font-weight: 700;
    font-family: var(--font-display);
}

.value-amount.success {
    color: #059669;
}

.value-strike {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.value-note {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-top: 20px;
    font-style: italic;
    font-weight: 500;
}

.comparison-footnote {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why This Gift Works Section (formerly Testimonials) */
.gift-testimonials-section {
    padding: var(--section-padding);
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    align-items: stretch;
}

.testimonial-card {
    background: white;
    border: none;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

/* Icon styling for value cards */
.testimonial-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

/* Value title styling */
.value-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    min-height: 60px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    text-align: center;
    flex-grow: 1;
}

/* Legacy testimonial styles (kept for backwards compatibility) */
.testimonial-rating {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 24px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--text-primary);
}

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

/* How It Works Section */
.gift-how-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.gift-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.gift-step {
    text-align: center;
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.gift-step h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gift-step p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

/* FAQ Section */
.gift-faq-section {
    padding: var(--section-padding);
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    align-items: stretch;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    min-height: 54px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    flex-grow: 1;
}

/* Final CTA Section */
.gift-final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
}

.gift-final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.gift-final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gift-final-cta-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.gift-final-cta-content .btn-primary {
    background: white;
    color: var(--primary);
}

.gift-final-cta-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.gift-final-cta-content .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.gift-final-cta-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-note {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-card,
.testimonial-card,
.faq-item,
.gift-step {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.gift-step:nth-child(1) { animation-delay: 0.1s; }
.gift-step:nth-child(2) { animation-delay: 0.2s; }
.gift-step:nth-child(3) { animation-delay: 0.3s; }
.gift-step:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 968px) {
    .gift-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gift-hero {
        padding: 120px 20px 60px;
    }
    
    .gift-hero h1 {
        font-size: 40px;
    }
    
    .hero-stats {
        gap: 16px;
    }

    .gift-card-header {
        padding: 32px 24px;
    }
    
    .gift-price .price-amount {
        font-size: 48px;
    }
    
    .gift-card-body {
        padding: 24px;
    }
    
    .btn-gift {
        width: calc(100% - 48px);
        margin: 0 24px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}
/* Cache buster: 1730477000 */
