/* ========================================
   VERTEX ABOUT PAGE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #06402b;
    overflow-x: hidden;
}

/* ========================================
   HERO SECTION
   ======================================== */

.about-hero {
    min-height: 60vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 119, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 120, 122, 0.185) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(6, 64, 43, 0.199) 1px, transparent 1px),
        linear-gradient(0deg, rgba(6, 64, 43, 0.185) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 119, 122, 0.12);
    animation: float 15s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.shape:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation-delay: 9s;
    animation-duration: 22s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) scale(1);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) scale(0.95);
        opacity: 0.7;
    }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 122, 0.3), transparent);
    animation: lineMove 4s ease-in-out infinite;
}

.line:nth-child(1) {
    width: 40%;
    top: 20%;
    left: -40%;
    animation-delay: 0s;
}

.line:nth-child(2) {
    width: 50%;
    top: 50%;
    right: -50%;
    animation-delay: 1.5s;
}

.line:nth-child(3) {
    width: 35%;
    bottom: 30%;
    left: -35%;
    animation-delay: 3s;
}

@keyframes lineMove {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

.hero-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: #06402b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(6, 64, 43, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00777a;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.about-hero .section-label {
    color: #00777a;
}

/* ========================================
   PURPOSE SECTION
   ======================================== */

.purpose-section {
    background: white;
    padding: 80px 20px;
}

.purpose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.purpose-content {
    color: #06402b;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #06402b;
}

.purpose-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(6, 64, 43, 0.8);
    margin-bottom: 1.2rem;
}

.purpose-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #f8faf9 0%, #eef5f3 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 119, 122, 0.1);
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(0, 119, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00777a;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #06402b;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(6, 64, 43, 0.7);
    line-height: 1.5;
}

/* ========================================
   APPROACH SECTION
   ======================================== */

.approach-section {
    background: linear-gradient(135deg, #f8faf9 0%, #eef5f3 100%);
    padding: 80px 20px;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.approach-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(6, 64, 43, 0.8);
    margin-top: 1rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 119, 122, 0.08);
    border: 1px solid rgba(0, 119, 122, 0.1);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 119, 122, 0.15);
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 119, 122, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00777a;
    margin-bottom: 1.2rem;
}

.approach-icon svg {
    width: 26px;
    height: 26px;
}

.approach-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #06402b;
    margin-bottom: 0.8rem;
}

.approach-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(6, 64, 43, 0.75);
}

/* ========================================
   WHY VERTEX SECTION
   ======================================== */

.why-section {
    background: white;
    padding: 80px 20px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content {
    text-align: center;
}

.why-statement {
    background: rgba(0, 119, 122, 0.08);
    border-left: 4px solid #00777a;
    border-radius: 4px;
    padding: 1.5rem 2rem;
    margin: 2rem 0 3rem;
}

.why-statement p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #06402b;
    font-weight: 400;
    margin: 0;
}

.why-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.why-point {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.point-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 119, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00777a;
}

.point-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #06402b;
    margin-bottom: 0.5rem;
}

.point-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(6, 64, 43, 0.75);
}

/* ========================================
   FOUNDER SECTION
   ======================================== */

.founder-section {
    background: linear-gradient(135deg, #f8faf9 0%, #eef5f3 100%);
    padding: 80px 20px;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.founder-subtitle {
    font-size: 1.1rem;
    color: #00777a;
    font-weight: 500;
    margin-top: 0.5rem;
}

.founder-content-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.founder-bio {
    color: #06402b;
}

.founder-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(6, 64, 43, 0.8);
    margin-bottom: 1.2rem;
}

.founder-strengths {
    margin-top: 2.5rem;
}

.strengths-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #06402b;
    margin-bottom: 1.5rem;
}

.strengths-grid {
    display: grid;
    gap: 1rem;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 119, 122, 0.1);
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateX(4px);
    border-color: rgba(0, 119, 122, 0.2);
    box-shadow: 0 2px 8px rgba(0, 119, 122, 0.08);
}

.strength-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #00777a;
}

.strength-icon svg {
    width: 100%;
    height: 100%;
}

.strength-item span {
    font-size: 0.98rem;
    color: rgba(6, 64, 43, 0.85);
    line-height: 1.5;
}

.founder-credentials {
    position: sticky;
    top: 100px;
    margin-top: 80px;
}

.credentials-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 119, 122, 0.08);
    border: 1px solid rgba(0, 119, 122, 0.1);
}

.credentials-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #06402b;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 119, 122, 0.15);
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
}

.credential-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(0, 119, 122, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00777a;
    margin-top: 2px;
}

.credential-icon svg {
    width: 16px;
    height: 16px;
}

.credentials-list li span {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(6, 64, 43, 0.8);
    flex: 1;
}

/* ========================================
   ACCREDITATION & COMPLIANCE SECTION
   ======================================== */

.accreditation-section {
    background: white;
    padding: 80px 20px;
}

.accreditation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.accreditation-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.accreditation-card {
    background: linear-gradient(135deg, #f8faf9 0%, #eef5f3 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 119, 122, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.accreditation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 119, 122, 0.15);
    border-color: rgba(0, 119, 122, 0.2);
}

.accreditation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: rgba(0, 119, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00777a;
    transition: all 0.3s ease;
}

.accreditation-card:hover .accreditation-icon {
    background: #00777a;
    color: white;
    transform: scale(1.1);
}

.accreditation-icon svg {
    width: 30px;
    height: 30px;
}

.accreditation-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #06402b;
    margin-bottom: 0.8rem;
}

.accreditation-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(6, 64, 43, 0.75);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .purpose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-points {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-credentials {
        position: static;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .purpose-section,
    .approach-section,
    .why-section,
    .founder-section,
    .accreditation-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .purpose-text {
        font-size: 1rem;
    }

    .purpose-visual {
        grid-template-columns: 1fr;
    }

    .approach-header {
        margin-bottom: 3rem;
    }

    .approach-intro {
        font-size: 1rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .why-statement {
        padding: 1.2rem 1.5rem;
    }

    .why-statement p {
        font-size: 1.1rem;
    }

    .why-point {
        gap: 1.5rem;
    }

    .point-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .point-content h4 {
        font-size: 1.1rem;
    }

    .point-content p {
        font-size: 0.95rem;
    }

    .founder-header {
        margin-bottom: 2.5rem;
    }

    .founder-subtitle {
        font-size: 1rem;
    }

    .founder-text {
        font-size: 1rem;
    }

    .strengths-title {
        font-size: 1.1rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .credentials-card {
        padding: 2rem;
    }

    .credentials-title {
        font-size: 1.2rem;
    }

    .accreditation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 15px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-label {
        font-size: 0.72rem;
    }

    .purpose-section,
    .approach-section,
    .why-section,
    .founder-section,
    .accreditation-section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .purpose-text {
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .approach-icon {
        width: 45px;
        height: 45px;
    }

    .approach-icon svg {
        width: 22px;
        height: 22px;
    }

    .approach-title {
        font-size: 1.05rem;
    }

    .approach-description {
        font-size: 0.9rem;
    }

    .why-statement {
        padding: 1rem;
        margin: 1.5rem 0 2rem;
    }

    .why-statement p {
        font-size: 1rem;
    }

    .why-points {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .why-point {
        gap: 1rem;
    }

    .point-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .point-content h4 {
        font-size: 1rem;
    }

    .point-content p {
        font-size: 0.9rem;
    }

    .founder-section {
        padding: 50px 15px;
    }

    .founder-header {
        margin-bottom: 2rem;
    }

    .founder-subtitle {
        font-size: 0.95rem;
    }

    .founder-text {
        font-size: 0.95rem;
    }

    .founder-strengths {
        margin-top: 2rem;
    }

    .strengths-title {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }

    .strength-item {
        padding: 0.7rem 1rem;
    }

    .strength-icon {
        width: 20px;
        height: 20px;
    }

    .strength-item span {
        font-size: 0.9rem;
    }

    .credentials-card {
        padding: 1.5rem;
    }

    .credentials-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .credentials-list {
        gap: 1rem;
    }

    .credential-icon {
        width: 24px;
        height: 24px;
    }

    .credential-icon svg {
        width: 14px;
        height: 14px;
    }

    .credentials-list li span {
        font-size: 0.9rem;
    }

    .accreditation-icon {
        width: 50px;
        height: 50px;
    }

    .accreditation-icon svg {
        width: 24px;
        height: 24px;
    }

    .accreditation-title {
        font-size: 1.05rem;
    }

    .accreditation-description {
        font-size: 0.9rem;
    }
}