/* ============================================================
   css/about.css - COMPLETELY REDESIGNED
   Creative hero (no full-width image), premium timeline, image-free team cards
   ============================================================ */

/* ===== CREATIVE HERO — editorial split, no full-width background image ===== */
.about-hero {
    position: relative;
    margin-top: 50px;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f7fafa 0%, #edf8f9 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 154, 156, 0.04), rgba(44, 154, 156, 0.08));
    z-index: 0;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Left */
.hero-badge-stack {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(44, 154, 156, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2c9a9c;
    border: 1px solid rgba(44, 154, 156, 0.2);
}

.hero-badge--gold {
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
    border-color: rgba(201, 169, 110, 0.2);
}

.about-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 600;
    color: #0a2c2f;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.about-hero-title em {
    font-style: italic;
    color: #2c9a9c;
}

.about-hero-lead {
    font-size: 1rem;
    color: #5a7a7d;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2rem;
}

.about-hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2e5a5e;
    transition: all 0.3s ease;
}

.btn-scroll i {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(44, 154, 156, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.btn-scroll:hover {
    color: #2c9a9c;
}

.btn-scroll:hover i {
    border-color: #2c9a9c;
    background: rgba(44, 154, 156, 0.1);
}

/* Hero Right Stats */
.hero-stat-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-stat-card {
    background: white;
    border: 1px solid rgba(44, 154, 156, 0.12);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 31, 33, 0.03);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(5, 31, 33, 0.08);
    border-color: rgba(44, 154, 156, 0.25);
}

.hero-stat-card--accent {
    background: linear-gradient(135deg, #2c9a9c, #1b6264);
    border-color: transparent;
}

.hero-stat-card--accent strong,
.hero-stat-card--accent span {
    color: white;
}

.hero-stat-card--gold {
    background: linear-gradient(135deg, #c9a96e, #b8864e);
    border-color: transparent;
}

.hero-stat-card--gold strong,
.hero-stat-card--gold span {
    color: white;
}

.hero-stat-card--gold i {
    font-size: 0.8rem;
    margin-left: 2px;
}

.hero-stat-card strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a2c2f;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hero-stat-card span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5a7a7d;
}

/* Hero Wave */
.about-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.about-hero-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ===== OUR STORY — PREMIUM TIMELINE ===== */
.story-section {
    padding: 7rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
}

.story-label-col {
    position: sticky;
    top: 140px;
}

.story-label-inner {
    padding-right: 1rem;
}

.story-description {
    font-size: 0.95rem;
    color: #5a7a7d;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.story-founder-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #2c9a9c, transparent);
    margin-bottom: 0.75rem;
}

.story-signature strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0a2c2f;
}

.story-signature span {
    font-size: 0.75rem;
    color: #8fa8ab;
    letter-spacing: 0.5px;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px 90px 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: #2c9a9c;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #2c9a9c;
    z-index: 2;
}

.marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, #2c9a9c, #d4eef0);
    margin-top: 8px;
    min-height: 60px;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-year {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #c9a96e;
    letter-spacing: -0.02em;
    padding-top: 2px;
}

.timeline-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a2c2f;
    margin-bottom: 0.5rem;
}

.timeline-body p {
    font-size: 0.9rem;
    color: #5a7a7d;
    line-height: 1.7;
}

/* ===== VALUES SECTION (unchanged, keep as is) ===== */
.values-section {
    padding: 7rem 0;
    background: #edf8f9;
    position: relative;
    overflow: hidden;
}

.values-bg-strip {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 154, 156, 0.04), rgba(10, 44, 47, 0.06));
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 154, 156, 0.07);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(5, 31, 33, 0.08);
}

.value-card--large {
    grid-column: span 2;
}

.value-card--accent {
    background: linear-gradient(135deg, #0a2c2f, #051f21);
    border-color: transparent;
}

.value-card.value-card--accent h3,
.value-card.value-card--accent p {
    color: rgba(255, 255, 255, 0.9);
}


.value-card.value-card--accent .value-number {
    color: rgba(255, 255, 255, 0.1);
}

.value-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(44, 154, 156, 0.08);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.value-icon {
    width: 52px;
    height: 52px;
    background: #edf8f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.value-card--accent .value-icon {
    background: rgba(255, 255, 255, 0.1);
}

.value-icon i {
    font-size: 1.3rem;
    color: #2c9a9c;
}

.value-card--accent .value-icon i {
    color: #70cfcf;
}

.value-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a2c2f;
    margin-bottom: 0.65rem;
}

.value-card p {
    font-size: 0.9rem;
    color: #5a7a7d;
    line-height: 1.7;
}

/* ===== TEAM SECTION — IMAGE-FREE PREMIUM CARDS ===== */
.team-section {
    padding: 7rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.team-card {
    background: #f7fafa;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 154, 156, 0.08);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(5, 31, 33, 0.06);
    border-color: rgba(44, 154, 156, 0.15);
}

.team-avatar {
    margin-bottom: 1.25rem;
}

.avatar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(44, 154, 156, 0.15), rgba(44, 154, 156, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-card:hover .avatar-icon {
    background: linear-gradient(135deg, #2c9a9c, #1b6264);
}

.avatar-icon i {
    font-size: 2rem;
    color: #2c9a9c;
    transition: all 0.3s ease;
}

.team-card:hover .avatar-icon i {
    color: white;
}

.team-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a2c2f;
    margin-bottom: 0.25rem;
}

.team-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2c9a9c;
    background: rgba(44, 154, 156, 0.1);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.team-info p {
    font-size: 0.85rem;
    color: #5a7a7d;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #c9a96e;
    background: rgba(201, 169, 110, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
}

.team-badge i {
    font-size: 0.6rem;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
    padding: 7rem 0;
    background: #edf8f9;
}

.certs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.certs-description {
    font-size: 0.95rem;
    color: #5a7a7d;
    line-height: 1.7;
    margin: 1rem 0 2rem;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(5, 31, 33, 0.06);
}

.cert-icon {
    width: 44px;
    height: 44px;
    background: #edf8f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon i {
    font-size: 1.1rem;
    color: #2c9a9c;
}

.cert-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a2c2f;
    margin-bottom: 0.2rem;
}

.cert-item span {
    font-size: 0.78rem;
    color: #8fa8ab;
}

.certs-image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: 14px;
    border-radius: 28px;
    overflow: hidden;
}

.mosaic-img {
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.mosaic-img:hover {
    transform: scale(1.02);
}

.mosaic-img--large {
    grid-column: span 2;
    grid-row: 1;
}

.mosaic-img--small {
    grid-row: 2;
}

/* ===== NUMBERS SECTION ===== */
.numbers-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.numbers-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.numbers-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 31, 33, 0.88), rgba(10, 44, 47, 0.82));
}

.numbers-section .container {
    position: relative;
    z-index: 2;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.number-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.number-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.number-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    display: inline-block;
}

.number-plus {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #70cfcf;
    vertical-align: top;
    margin-top: 0.3rem;
}

.number-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

/* ===== PRESS SECTION ===== */
.press-section {
    padding: 6rem 0;
    background: white;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.press-item {
    background: #f7fafa;
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.press-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(5, 31, 33, 0.05);
}

.press-logo-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2c2f;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(44, 154, 156, 0.15);
    margin-bottom: 0.75rem;
}

.press-quote {
    font-size: 0.85rem;
    font-style: italic;
    color: #5a7a7d;
    line-height: 1.65;
}

/* ===== CTA SECTION ===== */
.about-cta-section {
    padding: 3rem 0 6rem;
    background: #edf8f9;
}

.about-cta-card {
    background: linear-gradient(135deg, #0a2c2f, #051f21);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 154, 156, 0.15), transparent 70%);
    pointer-events: none;
}

.about-cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-cta-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: white;
    margin: 1rem 0;
}

.about-cta-content h2 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.about-cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(37, 211, 102, 0.15);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.about-cta-deco {
    flex-shrink: 0;
    position: relative;
    width: 200px;
    height: 200px;
}

.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.deco-ring--1 {
    inset: 0;
    animation: rotateSlow 20s linear infinite;
}

.deco-ring--2 {
    inset: 25px;
    border-color: rgba(44, 154, 156, 0.2);
    animation: rotateSlow 28s linear infinite reverse;
}

.deco-ring--3 {
    inset: 50px;
    border-color: rgba(201, 169, 110, 0.15);
    animation: rotateSlow 35s linear infinite;
}

.deco-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .story-label-col {
        position: static;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .certs-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 110px 0 70px;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .timeline-marker {
        display: none;
    }
    .timeline-year {
        margin-bottom: 0.25rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-card--large {
        grid-column: span 1;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .press-grid {
        grid-template-columns: 1fr;
    }
    .about-cta-card {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }
    .about-cta-deco {
        display: none;
    }
    .about-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stat-stack {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stat-card {
        padding: 1rem;
    }
    .hero-stat-card strong {
        font-size: 1.5rem;
    }
    .numbers-grid {
        gap: 1rem;
    }
    .number-card {
        padding: 1rem;
    }
}

.site-header.legal-page-header {
    background: rgba(255, 255, 255, 0.97);
}