/* Product Pages Common Styles */

.product-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: clamp(7rem, 10vw, 9rem) 2rem clamp(4.5rem, 8vw, 6.5rem);
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
      radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.18), transparent 38%),
      radial-gradient(circle at 86% 80%, rgba(255, 255, 255, 0.1), transparent 40%);
    opacity: 1;
}

.product-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.35rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.03;
    max-width: 16ch;
}

@media (min-width: 1024px) {
    .product-hero h1 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1280px) {
    .product-hero h1 {
        font-size: 5rem;
    }
}

.product-hero p {
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    opacity: 0.95;
    margin-bottom: 2.25rem;
    max-width: 48rem;
    line-height: 1.65;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-white {
    padding: 0.9rem 1.5rem;
    background: white;
    color: #111827;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.product-hero .btn-outline {
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.features-section {
    padding: 100px 2rem;
    background: #fafafa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.12;
    letter-spacing: -0.022em;
}

.section-header p {
    font-size: clamp(1.03rem, 1.6vw, 1.24rem);
    color: #6b7280;
    line-height: 1.72;
    max-width: 64ch;
    margin-inline: auto;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: clamp(1.22rem, 1.6vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    line-height: 1.28;
    letter-spacing: -0.012em;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.74;
    font-size: 1rem;
}

.screenshot-section {
    padding: 100px 2rem;
    background: white;
}

.screenshot-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
}


.cta-final {
    padding: clamp(5rem, 8vw, 7rem) 2rem;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 42%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.06;
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Color variants for different products */
.product-hero.setacademy {
    background: linear-gradient(135deg, #5B6BFF 0%, #4F46E5 100%);
}

.product-hero.setmassage {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.product-hero.setpos {
    background: linear-gradient(135deg, #644EF3 0%, #503ec2 100%);
}

.product-hero.settogrow {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-hero.vision {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Update button colors for each product */
.setacademy .btn-white { color: #5B6BFF; }
.setmassage .btn-white { color: #a855f7; }
.setpos .btn-white { color: #644EF3; }
.settogrow .btn-white { color: #059669; }
.vision .btn-white { color: #f59e0b; }

/* Update feature icon colors */
.setacademy .feature-icon { background: linear-gradient(135deg, #5B6BFF, #4F46E5); }
.setmassage .feature-icon { background: linear-gradient(135deg, #a855f7, #9333ea); }
.setpos .feature-icon { background: linear-gradient(135deg, #644EF3, #503ec2); }
.settogrow .feature-icon { background: linear-gradient(135deg, #10b981, #059669); }
.vision .feature-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }


/* ============================================
   NEW SECTIONS FOR SETTOGROW
   ============================================ */


.btn-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.problem-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.problem-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 4rem;
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: #ef4444;
    transform: translateY(-4px);
}

.problem-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ef4444;
    font-size: 1.5rem;
}

.problem-item p {
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
}

.problem-result {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #fecaca;
}

.problem-result p {
    font-size: 1.25rem;
    color: #374151;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stats-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: white;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.vision-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.vision-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.vision-description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.vision-step {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    padding: 2rem;
    border-radius: 16px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.vision-step:hover {
    border-color: #ef4444;
    transform: translateY(-4px);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    color: #374151;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    
    .problem-section h2,
    .stats-section h2,
    .vision-section h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .vision-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .product-hero h1 {
        max-width: 100%;
    }
    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-group .btn-white,
    .cta-group .btn-outline {
        justify-content: center;
    }
    .section-header h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
}
