/* Premium Personal Story Section - $25K Design */
.personal-story-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.personal-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 60% 40%, rgba(34, 197, 94, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Single Column Layout */
.story-single-column {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Credentials Showcase within Single Column */
.credentials-showcase {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.credentials-showcase .credentials-card {
    max-width: 600px;
    width: 100%;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow:
        0 20px 40px -12px rgba(0, 0, 0, 0.08),
        0 8px 16px -8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(16, 185, 129, 0.06);
    position: relative;
    overflow: hidden;
}

.story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
}

.story-text::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.story-paragraph {
    margin-bottom: 32px;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-paragraph p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2d3748;
    margin: 0;
    font-weight: 400;
}

.story-paragraph strong {
    font-weight: 700;
    color: #1a202c;
}

.story-paragraph a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.story-paragraph a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: width 0.3s ease;
}

.story-paragraph a:hover::after {
    width: 100%;
}

.story-cta {
    margin-top: 48px;
    text-align: left;
}

.story-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 20px -8px rgba(16, 185, 129, 0.4),
        0 6px 12px -6px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.story-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 40px -8px rgba(16, 185, 129, 0.5),
        0 12px 24px -6px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

.story-button i {
    transition: transform 0.3s ease;
}

.story-button:hover i {
    transform: translateX(4px);
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.credentials-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow:
        0 24px 48px -12px rgba(0, 0, 0, 0.1),
        0 12px 24px -8px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(16, 185, 129, 0.08);
    position: relative;
    overflow: hidden;
}

.credentials-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.credentials-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f7fafc;
    position: relative;
}

.credentials-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.credentials-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.credentials-header p {
    font-size: 1rem;
    color: #059669;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.credentials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f7fee7 100%);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.credentials-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    transform: translateX(4px);
}

.highlight-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    flex: 1;
}

.transformation-quote {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.transformation-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(16, 185, 129, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1;
    z-index: 1;
}

.transformation-quote::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.transformation-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    font-weight: 500;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
}

.transformation-quote cite {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
    font-style: normal;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .story-grid {
        gap: 60px;
    }

    .story-text {
        padding: 48px;
    }

    .credentials-card {
        padding: 40px;
    }
}

@media (max-width: 968px) {
    .personal-story-section {
        padding: 80px 0;
    }

    .story-content {
        padding: 0 24px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-text {
        padding: 40px;
    }

    .credentials-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .credentials-card {
        padding: 32px;
    }

    .transformation-quote {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .personal-story-section {
        padding: 60px 0;
    }

    .story-header {
        margin-bottom: 60px;
    }

    .story-text {
        padding: 32px;
    }

    .story-paragraph p {
        font-size: 1.1rem;
    }

    .credentials-card {
        padding: 24px;
    }

    .transformation-quote {
        padding: 24px;
    }

    .transformation-quote blockquote {
        font-size: 1.1rem;
    }
}