/* ===== About Hero (short, centered) ===== */
.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 20px 160px;
    background-color: #032550;
    background-image: linear-gradient(160deg, rgba(3,37,80,0.92) 30%, rgba(3,37,80,0.85) 100%),
                      url('../assets/images/About-Header.jpg');
    background-size: cover;
    background-position: center 30%;
    text-align: center;
}
.about-hero .container {
    position: relative;
    z-index: 1;
}
.about-hero-content {
    max-width: 750px;
    margin: 0 auto;
}
.about-hero-content h1 {
    color: var(--color-white);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.about-hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.about-hero-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ===== Pressure Section (white, 2-column) ===== */
.about-pressure {
    padding: 80px 0 100px;
    background: var(--color-white);
}
.about-pressure-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.about-pressure-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-pressure-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 420px;
}
.about-pressure-text h2 {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-pressure-text p {
    color: var(--color-gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-pressure-bold {
    font-weight: 700;
    color: var(--color-navy) !important;
    font-family: var(--font-heading);
    font-size: 1.15rem !important;
}
/* ===== Who We Are Section (dark navy) ===== */
.about-who-section {
    position: relative;
    padding: 100px 0 120px;
    margin-top: -1px;
    background: var(--color-navy);
    text-align: center;
}
.about-who-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.about-who-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}
.about-who-content {
    max-width: 750px;
    margin: 0 auto;
}
.about-who-content h2 {
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin-bottom: 24px;
}
.about-who-lead {
    color: var(--color-teal-light);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}
.about-who-body {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.about-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 550px;
    text-align: left;
}
.about-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}
.about-benefits-list li::before {
    content: "\2713";
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.about-who-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.about-who-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ===== Testimonials (shared styles — duplicated from home for about page) ===== */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    background-color: #032550;
    background-image: linear-gradient(180deg, rgba(3,37,80,0.9) 0%, rgba(3,37,80,0.8) 100%),
                      url('../assets/images/Testimonials-Studio.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

/* Testimonials wave dividers */
.testimonials-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.testimonials-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}
.testimonials-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateY(180deg);
}
.testimonials-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

.testimonials-section .section-header h2 { color: var(--color-white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: #02152c;
    padding: 40px 32px;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-portrait {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.testimonial-portrait img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    display: none;
}
.quote {
    font-style: normal;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 18px;
}
.quote strong {
    color: #FFFFFF;
}
.testimonial-author strong {
    display: block;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-top: 10px;
}
.testimonial-author span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===== Founder Bio ===== */
.founder-section {
    padding: 100px 0;
    background: var(--color-white);
}
.founder-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}
.founder-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}
.founder-content h2 {
    color: var(--color-navy);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin-bottom: 20px;
}
.founder-content p {
    color: var(--color-gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.founder-experience {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.founder-experience li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
}
.founder-experience li::before {
    content: "\2713";
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== Process (shared styles — duplicated from home for about page) ===== */
.process-section {
    position: relative;
    padding: 100px 0;
    background-color: #032550;
    background-image: linear-gradient(160deg, rgba(4,37,80,0.95) 30%, #3084ab 150%),
                      url('../assets/images/Videography-Background-4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

/* Process wave dividers */
.process-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateX(180deg);
}
.process-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}
.process-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateY(180deg);
}
.process-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

.process-section .section-header h2 { color: var(--color-gold); }
.process-section .section-header p { color: var(--color-white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(2,21,44,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
}
.step-icon { margin-bottom: 16px; }
.step-icon img { height: 100px; width: auto; margin: 0 auto; }
.step-label {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.process-step h3 { color: var(--color-white); margin-bottom: 14px; font-size: 24px; }
.process-step p { color: rgba(255,255,255,0.8); }

.process-urgency {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1rem;
}
.process-cta-heading {
    color: var(--color-gold) !important;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* ===== Closing CTA + Lead Magnet (shared from home) ===== */
.closing-cta {
    position: relative;
    padding: 1px 0 100px;
    background-color: #032550;
    background-image: linear-gradient(150deg, rgba(3,37,80,0.86) 20%, rgba(3,37,80,0.9) 130%),
                      url('../assets/images/CS_OrthofixProductSizzle.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Closing CTA wave dividers */
.closing-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.closing-wave-top svg {
    display: block;
    width: 100%;
    height: 90px;
}
.closing-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
    transform: rotateY(180deg);
}
.closing-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* Lead Magnet */
.lead-magnet-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 40px;
    text-align: left;
}
.lead-magnet-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lead-magnet-text h2 { color: var(--color-white); margin-bottom: 6px; font-size: 38px; font-weight: 600; }
.lead-magnet-text h3 { color: var(--color-white); margin-bottom: 20px; font-size: 1.3rem; }
.lead-magnet-text p { color: #FFFFFF; margin-bottom: 10px; }
.lead-magnet-text p em { font-style: italic; }
.lead-magnet-text p strong { font-weight: 700; }
.lead-magnet-subhead { font-weight: 700; }
.lead-magnet-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    max-width: 550px;
}
.lead-magnet-text li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 700;
    color: #FFFFFF;
}
.lead-magnet-text li::before {
    content: "\2713";
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.lead-magnet-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lead-magnet-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.lead-magnet-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lead-magnet-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-200);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-white);
    transition: var(--transition);
}
.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--color-teal);
}
.lead-magnet-form .btn {
    grid-column: 1 / 2;
}

/* ===== Responsive (About-specific) ===== */
@media (max-width: 980px) {
    .testimonials-section,
    .process-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .about-hero { padding: 140px 20px 120px; }

    .about-pressure-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-pressure-illustration img {
        max-height: 280px;
    }

    .founder-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-image {
        display: flex;
        justify-content: center;
    }
    .founder-image img {
        max-width: 250px;
    }
    .founder-experience li {
        text-align: left;
    }

    .testimonials-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-section { padding: 90px 0; }

    .lead-magnet-content { grid-template-columns: 1fr; gap: 40px; }
}
