/* css/ueber-uns.css - ByKine About Us Premium Styles */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff !important;
    color: #18181b;
}

/* Global Section Border Reset for Ueber-Uns */
main section,
section.founders-section,
section.about-hero,
section.cta-banner-section {
    border-bottom: none !important;
    border-top: none !important;
    border: none !important;
}

/* Hero Section */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem 1.5rem;
    background: radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    text-align: center;
}

.services-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #18181b;
    margin-bottom: 1.25rem;
    letter-spacing: -1.2px;
    line-height: 1.15;
}

.highlight-gradient {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-hero p {
    font-size: 1.2rem;
    color: #52525b;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.65;
}

/* Stats Row */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 18px;
    padding: 1.35rem 1rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.6);
}

.stat-number {
    font-size: 1.85rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a7f3d0 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Founders Section */
.founders-section {
    max-width: 1100px;
    margin: 5rem auto 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Founder Block */
.founder-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.08);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
}

.founder-block.reverse {
    flex-direction: row-reverse;
}

.founder-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 360px;
    width: 100%;
}

.founder-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: #f1f5f9;
    display: block;
    transition: transform 0.4s ease;
}

.founder-block:hover .founder-image {
    transform: scale(1.02);
}

/* Background Accent behind Images */
.founder-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(37, 99, 235, 0.08));
    border-radius: 24px;
    z-index: 0;
}

.founder-image {
    position: relative;
    z-index: 1;
}

.founder-block.reverse .founder-image-wrapper::before {
    left: 12px;
    right: -12px;
}

/* Text Section */
.founder-text {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.founder-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.founder-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.8px;
}

.founder-role {
    font-size: 0.85rem;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
}

.founder-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem 0;
}

.skill-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
}

.founder-text p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.founder-quote {
    font-style: italic;
    color: #334155;
    background: rgba(124, 58, 237, 0.04);
    border-left: 4px solid #7c3aed;
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Values Section */
.values-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 6rem 1.5rem;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.8px;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #7c3aed;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    background: rgba(124, 58, 237, 0.08);
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 14px;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.6rem 0;
}

.value-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Bottom CTA Banner */
.cta-banner-section {
    padding: 4rem 1.5rem;
    background: #ffffff !important;
    border: none !important;
    border-top: none !important;
}

.cta-banner-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-banner-card h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    letter-spacing: -0.8px;
}

.cta-banner-card p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.cta-banner-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-main {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    padding: 1.1rem 2.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.55);
}

.btn-cta-whatsapp {
    background: #25d366;
    color: white;
    padding: 1.1rem 2.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5.5rem 1.25rem 3rem 1.25rem;
    }
    .about-hero-content {
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    .about-hero h1 {
        font-size: 1.95rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    .hero-br {
        display: none;
    }
    .about-hero p {
        font-size: 1.05rem;
        padding: 0 0.25rem;
    }
    .founder-block, 
    .founder-block.reverse {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.25rem;
        text-align: center;
        align-items: center;
    }
    .founder-image-wrapper {
        margin: 0 auto;
    }
    .founder-text {
        align-items: center;
        text-align: center;
    }
    .founder-header-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }
    .founder-skill-tags {
        justify-content: center;
    }
    .founder-quote {
        border-left: none;
        border-top: 3px solid #7c3aed;
        border-radius: 12px;
        text-align: center;
        margin: 1.25rem auto 0 auto;
        padding: 1rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
    }
    .stat-card {
        padding: 1rem 0.75rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .cta-banner-card {
        padding: 2.5rem 1.25rem;
    }
    .cta-banner-card h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4.5rem 1rem 2.5rem 1rem;
    }
    .about-hero h1 {
        font-size: 1.65rem;
    }
    .about-hero p {
        font-size: 0.98rem;
    }
    .about-badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.9rem;
    }
    .founders-section {
        padding: 0 1rem;
        margin: 3rem auto 1rem auto;
        gap: 3rem;
    }
    .founder-block {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    .founder-text h2 {
        font-size: 1.75rem;
    }
    .founder-text p {
        font-size: 0.98rem;
    }
    .cta-banner-section {
        padding: 2.5rem 1.25rem;
    }
    .cta-banner-card {
        padding: 2.25rem 1.25rem;
        border-radius: 24px;
        box-sizing: border-box;
    }
    .cta-banner-card h2 {
        font-size: 1.5rem;
        line-height: 1.35;
    }
    .cta-banner-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .btn-cta-main,
    .btn-cta-whatsapp {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 1rem 1.25rem !important;
        font-size: 0.95rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}
