/* =========================================
   BRAND YOUR AUDIO - ABOUT US PAGE
========================================= */


/* GENERAL */

body{
    background:#f8fafc;
    color:#0B1120;
}


/* HERO */

.about-hero{
    background:#0B1120;
    color:white;
    text-align:center;
    padding:100px 20px;
}


.about-hero h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}


.about-hero > .container > p:first-of-type{
    color:#06B6D4;
    font-size:24px;
    font-weight:bold;
    margin-bottom:25px;
}


.hero-description{
    max-width:800px;
    margin:0 auto;
    font-size:19px;
    line-height:1.7;
    color:#cbd5e1;
}


/* STORY */

.about-story{
    background:white;
    padding:80px 20px;
}


.about-story .container{
    max-width:900px;
    margin:auto;
}


.about-story h2,
.about-what h2,
.about-who h2,
.about-approach h2,
.about-vision h2{
    text-align:center;
    font-size:38px;
    margin-bottom:35px;
    color:#0B1120;
}


.about-story p{
    font-size:18px;
    line-height:1.8;
    color:#374151;
    margin-bottom:20px;
}


/* WHAT WE DO */

.about-what{
    background:#f8fafc;
    padding:80px 20px;
}


.about-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1200px;
    margin:0 auto;
}


.about-card{
    background:white;
    padding:35px 25px;
    border-radius:22px;
    border:1px solid #e5e7eb;
    box-shadow:0 12px 30px rgba(11,17,32,.08);
    text-align:center;
    transition:all .3s ease;
}


.about-card:hover{
    transform:translateY(-8px);
    border-color:#06B6D4;
    box-shadow:0 18px 40px rgba(6,182,212,.18);
}


.about-card h3{
    color:#0B1120;
    font-size:21px;
    margin-bottom:15px;
}


.about-card p{
    color:#4b5563;
    font-size:16px;
    line-height:1.7;
}


/* WHO WE SERVE */

.about-who{
    background:white;
    padding:80px 20px;
    text-align:center;
}


.about-who > .container > p{
    max-width:700px;
    margin:0 auto 40px;
    color:#4b5563;
    font-size:18px;
    line-height:1.7;
}


.industry-list{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    max-width:900px;
    margin:0 auto;
}


.industry-list span{
    background:#f1f5f9;
    color:#0B1120;
    padding:15px 25px;
    border-radius:30px;
    font-weight:600;
    border:1px solid #e5e7eb;
}


/* OUR APPROACH */

.about-approach{
    background:#f8fafc;
    padding:80px 20px;
}


.about-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1200px;
    margin:0 auto;
}


.about-steps > div{
    background:white;
    padding:35px 25px;
    border-radius:22px;
    border:1px solid #e5e7eb;
    text-align:center;
    box-shadow:0 12px 30px rgba(11,17,32,.06);
}


.about-steps h3{
    font-size:42px;
    color:#06B6D4;
    margin-bottom:15px;
}


.about-steps h4{
    font-size:20px;
    color:#0B1120;
    margin-bottom:15px;
}


.about-steps p{
    color:#4b5563;
    line-height:1.7;
}


/* VISION */

.about-vision{
    background:white;
    padding:90px 20px;
    text-align:center;
}


.about-vision p{
    max-width:800px;
    margin:0 auto 20px;
    color:#374151;
    font-size:19px;
    line-height:1.8;
}


/* CTA */

.about-cta{
    background:#0B1120;
    color:white;
    text-align:center;
    padding:90px 20px;
}


.about-cta h2{
    font-size:40px;
    margin-bottom:20px;
}


.about-cta p{
    color:#cbd5e1;
    font-size:18px;
    margin-bottom:35px;
}


.about-cta a{
    display:inline-block;
    background:#06B6D4;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:30px;
    font-weight:bold;
    transition:all .3s ease;
}


.about-cta a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(6,182,212,.35);
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .about-hero{
        padding:70px 20px;
    }


    .about-hero h1{
        font-size:36px;
    }


    .about-hero > .container > p:first-of-type{
        font-size:20px;
    }


    .hero-description{
        font-size:16px;
    }


    .about-story,
    .about-what,
    .about-who,
    .about-approach,
    .about-vision,
    .about-cta{
        padding:60px 20px;
    }


    .about-story h2,
    .about-what h2,
    .about-who h2,
    .about-approach h2,
    .about-vision h2{
        font-size:30px;
    }


    .about-story p{
        font-size:16px;
    }


    .about-cards{
        grid-template-columns:1fr;
    }


    .about-steps{
        grid-template-columns:1fr;
    }


    .about-cta h2{
        font-size:30px;
    }


    .industry-list{
        gap:10px;
    }


    .industry-list span{
        padding:12px 18px;
        font-size:14px;
    }

}


/* =========================================
   MODERN ABOUT HERO
========================================= */

.about-hero{
    position:relative;
    overflow:hidden;
    padding:120px 20px;
    background:
        radial-gradient(circle at 15% 20%, rgba(6,182,212,.16), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(56,189,248,.10), transparent 35%),
        #0B1120;
}


.about-hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-180px;
    top:-180px;
    border:1px solid rgba(6,182,212,.15);
    border-radius:50%;
    box-shadow:
        0 0 0 40px rgba(6,182,212,.03),
        0 0 0 80px rgba(6,182,212,.02);
}


.about-hero .container{
    position:relative;
    z-index:2;
    max-width:950px;
    margin:auto;
}


.about-eyebrow,
.hero-eyebrow{
    display:inline-block;
    color:#06B6D4;
    font-size:13px;
    font-weight:bold;
    letter-spacing:3px;
    margin-bottom:25px;
}


.about-hero h1{
    font-size:64px;
    line-height:1.08;
    letter-spacing:-2px;
    margin-bottom:30px;
}


.about-hero .hero-description{
    max-width:760px;
    font-size:19px;
    line-height:1.8;
    color:#cbd5e1;
}


.about-hero-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:40px;
}


.hero-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:all .3s ease;
}


.hero-btn.primary{
    background:#06B6D4;
    color:white;
}


.hero-btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(6,182,212,.3);
}


.hero-btn.secondary{
    background:transparent;
    color:white;
    border:1px solid rgba(255,255,255,.3);
}


.hero-btn.secondary:hover{
    background:white;
    color:#0B1120;
}


/* MODERN STORY */

.about-story{
    padding:100px 20px;
}


.about-story .container{
    max-width:1000px;
}


.about-story h2{
    font-size:44px;
    line-height:1.2;
    margin-bottom:30px;
}


.about-story p{
    font-size:18px;
    line-height:1.9;
}


/* MOBILE HERO */

@media(max-width:768px){

    .about-hero{
        padding:80px 20px;
    }

    .about-hero h1{
        font-size:40px;
        line-height:1.12;
        letter-spacing:-1px;
    }

    .hero-eyebrow{
        font-size:11px;
        letter-spacing:2px;
    }

    .about-hero .hero-description{
        font-size:16px;
        line-height:1.7;
    }

    .about-hero-actions{
        flex-direction:column;
        width:100%;
    }

    .hero-btn{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    .about-story h2{
        font-size:32px;
    }

}


/* =========================================
   MODERN STORY SECTION
========================================= */

.about-story{
    position:relative;
    padding:110px 20px;
    background:white;
}


.about-story .container{
    max-width:1050px;
}


.story-label{
    color:#06B6D4;
    font-size:13px;
    font-weight:bold;
    letter-spacing:3px;
    margin-bottom:20px;
    text-align:center;
}


.about-story h2{
    font-size:48px;
    line-height:1.2;
    letter-spacing:-1px;
    text-align:center;
    margin-bottom:25px;
}


.story-lead{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
    font-size:21px !important;
    line-height:1.7 !important;
    color:#64748b !important;
}


.story-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:60px;
    align-items:center;
}


.story-main p{
    font-size:18px;
    line-height:1.9;
    color:#374151;
    margin-bottom:20px;
}


.story-highlight{
    background:#0B1120;
    color:white;
    padding:40px;
    border-radius:25px;
    position:relative;
    overflow:hidden;
}


.story-highlight::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    border:1px solid rgba(6,182,212,.25);
    border-radius:50%;
    right:-50px;
    top:-50px;
}


.story-highlight p{
    position:relative;
    z-index:2;
    font-size:19px;
    line-height:1.7;
    color:#cbd5e1;
}


.story-highlight strong{
    color:white;
    font-size:24px;
}


.story-bottom{
    margin-top:55px;
    padding-top:40px;
    border-top:1px solid #e5e7eb;
}


.story-bottom p{
    max-width:850px;
    margin:0 auto;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#475569;
}


/* STORY MOBILE */

@media(max-width:768px){

    .about-story{
        padding:75px 20px;
    }

    .about-story h2{
        font-size:34px;
    }

    .story-lead{
        font-size:18px !important;
        margin-bottom:40px;
    }

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

    .story-main p{
        font-size:16px;
    }

    .story-highlight{
        padding:30px;
    }

    .story-highlight strong{
        font-size:21px;
    }

    .story-bottom{
        margin-top:40px;
    }

    .story-bottom p{
        font-size:16px;
    }

}


/* =========================================
   MODERN WHAT WE DO SECTION
========================================= */

.about-what{
    padding:110px 20px;
    background:#f8fafc;
}


.about-what .container{
    max-width:1200px;
    margin:auto;
}


.section-label{
    text-align:center;
    color:#06B6D4;
    font-size:13px;
    font-weight:bold;
    letter-spacing:3px;
    margin-bottom:20px;
}


.about-what h2{
    font-size:46px;
    line-height:1.2;
    letter-spacing:-1px;
    margin-bottom:25px;
}


.section-intro{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}


.about-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}


.about-card{
    position:relative;
    background:white;
    padding:40px;
    border-radius:25px;
    border:1px solid #e5e7eb;
    text-align:left;
    box-shadow:0 10px 30px rgba(11,17,32,.05);
    transition:all .3s ease;
    overflow:hidden;
}


.about-card:hover{
    transform:translateY(-7px);
    border-color:#06B6D4;
    box-shadow:0 18px 40px rgba(6,182,212,.12);
}


.card-number{
    color:#06B6D4;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
    margin-bottom:25px;
}


.about-card h3{
    font-size:25px;
    color:#0B1120;
    margin-bottom:15px;
}


.about-card > p{
    font-size:16px;
    line-height:1.8;
    color:#475569;
    margin-bottom:25px;
}


.card-benefit{
    padding-top:20px;
    border-top:1px solid #e5e7eb;
    font-size:15px;
    line-height:1.7;
    color:#64748b;
}


.card-benefit strong{
    color:#0B1120;
}


/* WHAT WE DO MOBILE */

@media(max-width:768px){

    .about-what{
        padding:75px 20px;
    }

    .about-what h2{
        font-size:34px;
    }

    .section-intro{
        font-size:16px;
        margin-bottom:40px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .about-card{
        padding:30px;
    }

    .about-card h3{
        font-size:23px;
    }

}


/* =========================================
   WHO WE SERVE
========================================= */

.about-who{
    padding:110px 20px;
    background:white;
}


.about-who .container{
    max-width:1200px;
    margin:auto;
}


.about-who h2{
    font-size:46px;
    line-height:1.2;
    letter-spacing:-1px;
    margin-bottom:25px;
}


.who-intro{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}


.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


.industry-card{
    padding:35px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:25px;
    transition:all .3s ease;
}


.industry-card:hover{
    transform:translateY(-7px);
    background:white;
    border-color:#06B6D4;
    box-shadow:0 18px 40px rgba(6,182,212,.10);
}


.industry-icon{
    color:#06B6D4;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
    margin-bottom:25px;
}


.industry-card h3{
    font-size:24px;
    color:#0B1120;
    margin-bottom:15px;
}


.industry-card p{
    color:#475569;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}


.industry-card a{
    color:#0891B2;
    font-weight:bold;
    text-decoration:none;
    font-size:15px;
}


.industry-card a:hover{
    color:#06B6D4;
}


/* WHO WE SERVE MOBILE */

@media(max-width:768px){

    .about-who{
        padding:75px 20px;
    }

    .about-who h2{
        font-size:34px;
    }

    .who-intro{
        font-size:16px;
        margin-bottom:40px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

    .industry-card{
        padding:30px;
    }

}


/* =========================================
   WHO WE SERVE
========================================= */

.about-who{
    padding:110px 20px;
    background:white;
}


.about-who .container{
    max-width:1200px;
    margin:auto;
}


.about-who h2{
    font-size:46px;
    line-height:1.2;
    letter-spacing:-1px;
    margin-bottom:25px;
}


.who-intro{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}


.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


.industry-card{
    padding:35px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:25px;
    transition:all .3s ease;
}


.industry-card:hover{
    transform:translateY(-7px);
    background:white;
    border-color:#06B6D4;
    box-shadow:0 18px 40px rgba(6,182,212,.10);
}


.industry-icon{
    color:#06B6D4;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
    margin-bottom:25px;
}


.industry-card h3{
    font-size:24px;
    color:#0B1120;
    margin-bottom:15px;
}


.industry-card p{
    color:#475569;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}


.industry-card a{
    color:#0891B2;
    font-weight:bold;
    text-decoration:none;
    font-size:15px;
}


.industry-card a:hover{
    color:#06B6D4;
}


/* WHO WE SERVE MOBILE */

@media(max-width:768px){

    .about-who{
        padding:75px 20px;
    }

    .about-who h2{
        font-size:34px;
    }

    .who-intro{
        font-size:16px;
        margin-bottom:40px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

    .industry-card{
        padding:30px;
    }

}


/* =========================================
   OUR APPROACH - TYPOGRAPHY POLISH
========================================= */

.about-approach h2{
    font-size:40px;
    line-height:1.25;
    letter-spacing:-0.5px;
    margin-bottom:20px;
}


.approach-intro{
    max-width:700px;
    font-size:17px;
    line-height:1.7;
    margin-bottom:50px;
}


.about-steps{
    gap:16px;
}


.approach-step{
    padding:28px 32px;
    gap:25px;
    border-radius:18px;
}


.step-number{
    flex:0 0 54px;
    width:54px;
    height:54px;
    font-size:13px;
}


.step-content h3{
    font-size:21px;
    line-height:1.3;
    margin-bottom:7px;
}


.step-content p{
    font-size:15px;
    line-height:1.7;
    max-width:700px;
}


/* =========================================
   MOBILE TYPOGRAPHY POLISH
========================================= */

@media(max-width:768px){

    .about-approach h2{
        font-size:31px;
        line-height:1.25;
    }


    .approach-intro{
        font-size:16px;
        line-height:1.7;
        margin-bottom:35px;
    }


    .approach-step{
        padding:24px;
        gap:18px;
        border-radius:16px;
    }


    .step-number{
        flex:0 0 46px;
        width:46px;
        height:46px;
        font-size:12px;
    }


    .step-content h3{
        font-size:20px;
        margin-bottom:6px;
    }


    .step-content p{
        font-size:15px;
        line-height:1.65;
    }

}


/* =========================================
   OUR APPROACH - TYPOGRAPHY POLISH
========================================= */

.about-approach h2{
    font-size:40px;
    line-height:1.25;
    letter-spacing:-0.5px;
    margin-bottom:20px;
}


.approach-intro{
    max-width:700px;
    font-size:17px;
    line-height:1.7;
    margin-bottom:50px;
}


.about-steps{
    gap:16px;
}


.approach-step{
    padding:28px 32px;
    gap:25px;
    border-radius:18px;
}


.step-number{
    flex:0 0 54px;
    width:54px;
    height:54px;
    font-size:13px;
}


.step-content h3{
    font-size:21px;
    line-height:1.3;
    margin-bottom:7px;
}


.step-content p{
    font-size:15px;
    line-height:1.7;
    max-width:700px;
}


/* =========================================
   MOBILE TYPOGRAPHY POLISH
========================================= */

@media(max-width:768px){

    .about-approach h2{
        font-size:31px;
        line-height:1.25;
    }


    .approach-intro{
        font-size:16px;
        line-height:1.7;
        margin-bottom:35px;
    }


    .approach-step{
        padding:24px;
        gap:18px;
        border-radius:16px;
    }


    .step-number{
        flex:0 0 46px;
        width:46px;
        height:46px;
        font-size:12px;
    }


    .step-content h3{
        font-size:20px;
        margin-bottom:6px;
    }


    .step-content p{
        font-size:15px;
        line-height:1.65;
    }

}


/* =========================================
   OUR APPROACH - TYPOGRAPHY POLISH
========================================= */

.about-approach h2{
    font-size:40px;
    line-height:1.25;
    letter-spacing:-0.5px;
    margin-bottom:20px;
}


.approach-intro{
    max-width:700px;
    font-size:17px;
    line-height:1.7;
    margin-bottom:50px;
}


.about-steps{
    gap:16px;
}


.approach-step{
    padding:28px 32px;
    gap:25px;
    border-radius:18px;
}


.step-number{
    flex:0 0 54px;
    width:54px;
    height:54px;
    font-size:13px;
}


.step-content h3{
    font-size:21px;
    line-height:1.3;
    margin-bottom:7px;
}


.step-content p{
    font-size:15px;
    line-height:1.7;
    max-width:700px;
}


/* =========================================
   MOBILE TYPOGRAPHY POLISH
========================================= */

@media(max-width:768px){

    .about-approach h2{
        font-size:31px;
        line-height:1.25;
    }


    .approach-intro{
        font-size:16px;
        line-height:1.7;
        margin-bottom:35px;
    }


    .approach-step{
        padding:24px;
        gap:18px;
        border-radius:16px;
    }


    .step-number{
        flex:0 0 46px;
        width:46px;
        height:46px;
        font-size:12px;
    }


    .step-content h3{
        font-size:20px;
        margin-bottom:6px;
    }


    .step-content p{
        font-size:15px;
        line-height:1.65;
    }

}


/* =========================================
   MODERN VISION
========================================= */

.about-vision{
    padding:110px 20px;
    background:white;
}


.about-vision .container{
    max-width:900px;
    margin:auto;
}


.about-vision h2{
    font-size:46px;
    line-height:1.2;
    margin-bottom:25px;
}


.vision-lead{
    font-size:22px !important;
    color:#0B1120 !important;
    font-weight:600;
    margin-bottom:25px !important;
}


.about-vision p{
    font-size:17px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:20px;
}


.vision-statement{
    margin-top:55px;
    padding:45px;
    background:#0B1120;
    border-radius:25px;
    text-align:center;
}


.vision-statement p{
    margin:0;
    color:#cbd5e1;
    font-size:23px;
    line-height:1.7;
}


.vision-statement strong{
    color:#06B6D4;
}


/* =========================================
   MODERN CTA
========================================= */

.about-cta{
    position:relative;
    overflow:hidden;
    padding:100px 20px;
    background:
        radial-gradient(circle at 50% 100%, rgba(6,182,212,.18), transparent 45%),
        #0B1120;
}


.about-cta .container{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}


.about-cta .section-label{
    color:#06B6D4;
}


.about-cta h2{
    font-size:46px;
    line-height:1.2;
    margin-bottom:25px;
}


.about-cta p{
    max-width:650px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.8;
    color:#cbd5e1;
}


.cta-actions{
    display:flex;
    justify-content:center;
    gap:15px;
}


.cta-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:all .3s ease;
}


.cta-btn.primary{
    background:#06B6D4;
    color:white;
}


.cta-btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(6,182,212,.3);
}


.cta-btn.secondary{
    border:1px solid rgba(255,255,255,.3);
    color:white;
}


.cta-btn.secondary:hover{
    background:white;
    color:#0B1120;
}


/* FINAL MOBILE POLISH */

@media(max-width:768px){

    .about-vision{
        padding:75px 20px;
    }

    .about-vision h2{
        font-size:34px;
    }

    .vision-lead{
        font-size:19px !important;
    }

    .vision-statement{
        padding:30px 20px;
        margin-top:40px;
    }

    .vision-statement p{
        font-size:19px;
    }

    .about-cta{
        padding:75px 20px;
    }

    .about-cta h2{
        font-size:34px;
    }

    .about-cta p{
        font-size:16px;
    }

    .cta-actions{
        flex-direction:column;
        align-items:center;
    }

    .cta-btn{
        width:100%;
        max-width:280px;
        text-align:center;
    }

}
