

:root {

    --navy: #06172d;
    --navy-2: #0b1f3a;
    --blue: #123b68;

    --yellow: #f5b400;
    --yellow-dark: #d89d00;

    --green: #148a58;

    --white: #ffffff;

    --bg: #f5f7fa;
    --soft: #f8fafc;

    --text: #182737;
    --muted: #657486;
    --light: #8a98a8;

    --border: #e1e7ed;

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

    scroll-padding-top: 100px;

}

body {

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background:
        var(--bg);

    color:
        var(--text);

    line-height:
        1.7;

}

a {

    color: inherit;

    text-decoration: none;

}

button {

    font: inherit;

}

.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin-inline: auto;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(12px);

}

.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 22px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    min-width: 190px;

    display: flex;

    align-items: center;

    gap: 10px;

}

.logo-mark {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--navy);

    color:
        var(--yellow);

    font-size: 20px;

}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.logo-text strong {

    color:
        var(--navy);

    font-size: 18px;

    letter-spacing: .8px;

}

.logo-text small {

    margin-top: 5px;

    color:
        var(--yellow-dark);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

}

.desktop-nav a {

    color:
        #596879;

    font-size: 11px;

    font-weight: 750;

    white-space: nowrap;

    transition:
        color .2s ease;

}

.desktop-nav a:hover,
.desktop-nav a.active {

    color:
        var(--navy);

}


/* =========================================================
   HEADER PHONE
========================================================= */

.header-phone {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    border-radius: 10px;

    background:
        var(--navy);

    color:
        var(--white);

    font-size: 11px;

    font-weight: 900;

    white-space: nowrap;

}

.phone-symbol {

    color:
        var(--yellow);

    font-size: 17px;

}

.phone-content small {

    display: block;

    margin-bottom: 2px;

    color:
        #a7b6c6;

    font-size: 7px;

    letter-spacing: 1px;

}


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

.mobile-menu-btn {

    display: none;

    width: 43px;

    height: 43px;

    margin-left: auto;

    border: 0;

    border-radius: 10px;

    background:
        var(--navy);

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}

.mobile-menu-btn span {

    width: 23px;

    height: 2px;

    border-radius: 4px;

    background:
        var(--white);

    transition:
        transform .25s ease,
        opacity .2s ease;

}

.mobile-menu-btn.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}

.mobile-menu-btn.active span:nth-child(2) {

    opacity: 0;

}

.mobile-menu-btn.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


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

.mobile-menu {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background:
        var(--white);

    border-top:
        1px solid var(--border);

    box-shadow:
        0 18px 35px
        rgba(7,26,49,.15);

}

.mobile-menu.open {

    display: block;

}

.mobile-menu nav {

    width:
        min(
            calc(100% - 28px),
            620px
        );

    margin-inline: auto;

    padding:
        8px 0 18px;

    display: flex;

    flex-direction: column;

}

.mobile-menu nav a {

    padding:
        12px 7px;

    border-bottom:
        1px solid #edf0f3;

    color:
        var(--navy);

    font-size: 13px;

    font-weight: 750;

}

.mobile-menu nav a.active {

    color:
        var(--yellow-dark);

}

.mobile-menu .mobile-call {

    margin-top: 12px;

    border: 0;

    border-radius: 9px;

    background:
        var(--yellow);

    color:
        var(--navy);

    text-align: center;

}


/* =========================================================
   HERO
========================================================= */

.about-hero {

    position: relative;

    overflow: hidden;

    padding:
        75px 0 80px;

    background:
        linear-gradient(
            135deg,
            #06172d 0%,
            #0b1f3a 58%,
            #123b68 100%
        );

    color:
        var(--white);

}

.hero-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}

.hero-glow-one {

    width: 520px;

    height: 520px;

    right: -270px;

    top: -300px;

    border:
        80px solid
        rgba(245,180,0,.055);

}

.hero-glow-two {

    width: 330px;

    height: 330px;

    left: -230px;

    bottom: -240px;

    border:
        60px solid
        rgba(255,255,255,.035);

}

.hero-inner {

    position: relative;

    z-index: 2;

}

.breadcrumb {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 26px;

    color:
        #9aabbd;

    font-size: 11px;

}

.breadcrumb a {

    color:
        var(--yellow);

    font-weight: 850;

}

.hero-kicker {

    display: inline-block;

    margin-bottom: 10px;

    color:
        var(--yellow);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.5px;

}

.about-hero h1 {

    max-width: 900px;

    margin-bottom: 18px;

    font-size:
        clamp(40px,6vw,64px);

    line-height: 1.05;

    letter-spacing: -1.5px;

}

.about-hero h1 strong {

    display: block;

    color:
        var(--yellow);

}

.about-hero p {

    max-width: 780px;

    color:
        #c0ccda;

    font-size: 15px;

}

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;

}

.btn-primary,
.btn-secondary {

    min-height: 47px;

    display: inline-flex;


    align-items: center;

    justify-content: center;

    padding:
        0 18px;

    border-radius: 9px;

    font-size: 11px;

    font-weight: 900;

}

.btn-primary {

    background:
        var(--yellow);

    color:
        var(--navy);

}

.btn-secondary {

    border:
        1px solid
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.06);

    color:
        var(--white);

}

.hero-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 1px;

    margin-top: 40px;

}

.hero-stats > div {

    min-width: 150px;

    padding:
        14px 20px;

    border-left:
        1px solid
        rgba(255,255,255,.12);

}

.hero-stats strong {

    display: block;

    color:
        var(--white);

    font-size: 17px;

}

.hero-stats span {

    display: block;

    margin-top: 2px;

    color:
        #8fa3b7;

    font-size: 9px;

}


/* =========================================================
   INTRO
========================================================= */

.about-intro {

    padding:
        85px 0;

    background:
        var(--white);

}

.intro-grid {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 70px;

    align-items: center;

}

.section-kicker {

    display: inline-block;

    margin-bottom: 9px;

    color:
        var(--yellow-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}

.intro-content h2,
.section-heading h2,
.values-content h2,
.why-header h2 {

    margin-bottom: 17px;

    color:
        var(--navy);

    font-size:
        clamp(28px,4vw,41px);

    line-height: 1.15;

    letter-spacing: -.7px;

}

.intro-content p {

    margin-bottom: 15px;

    color:
        var(--muted);

    font-size: 13px;

}

.intro-card {

    position: relative;

    overflow: hidden;

    padding:
        32px;

    border-radius:
        18px;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--blue)
        );

    color:
        var(--white);

    box-shadow:
        0 20px 45px
        rgba(7,26,49,.15);

}

.intro-card::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -90px;

    bottom: -90px;

    border-radius: 50%;

    border:
        30px solid
        rgba(245,180,0,.08);

}

.intro-card-top {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color:
        var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}

.intro-icon {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.08);

    font-size: 18px;

}

.intro-card h3 {

    margin-bottom: 13px;

    font-size: 27px;

    line-height: 1.2;

}

.intro-card p {

    color:
        #b5c3d1;

    font-size: 11px;

}

.intro-contact {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 23px;

}

.intro-contact a {

    padding:
        11px 13px;

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);

    color:
        var(--white);

    font-size: 10px;

    font-weight: 850;

}

.intro-contact a:first-child {

    background:
        var(--yellow);

    color:
        var(--navy);

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 750px;

    margin-bottom: 42px;

}

.section-heading.center {

    margin-inline: auto;

    text-align: center;

}

.section-heading p {

    color:
        var(--muted);

    font-size: 13px;


}


/* =========================================================
   MISSION
========================================================= */

.mission-section {

    padding:
        85px 0;

    background:
        var(--bg);

}

.mission-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 16px;

}

.mission-card {

    position: relative;

    padding:
        28px;

    border:
        1px solid var(--border);

    border-radius:
        15px;

    background:
        var(--white);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.mission-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(7,26,49,.08);

}

.mission-number {

    position: absolute;

    right: 20px;

    top: 20px;

    color:
        #e6ebf0;

    font-size: 28px;

    font-weight: 900;

}

.mission-icon {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background:
        #fff5d5;

    font-size: 21px;

}

.mission-card h3 {

    margin-bottom: 9px;

    color:
        var(--navy);

    font-size: 17px;

}

.mission-card p {

    color:
        var(--muted);

    font-size: 11px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    padding:
        90px 0;

    background:
        var(--white);

}

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;

}

.service-card {

    position: relative;

    padding:
        25px;

    border:
        1px solid var(--border);

    border-radius:
        15px;

    background:
        var(--white);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.service-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 38px
        rgba(7,26,49,.08);

}

.service-card.featured {

    background:
        var(--navy);

    border-color:
        var(--navy);

    color:
        var(--white);

}

.service-icon {

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    margin-bottom: 18px;

    border-radius: 11px;

    background:
        #fff5d5;

    color:
        var(--navy);

    font-size: 20px;

}

.featured .service-icon {

    background:
        var(--yellow);

}

.service-label {

    display: block;

    margin-bottom: 6px;

    color:
        var(--yellow-dark);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.4px;

}

.featured .service-label {

    color:
        var(--yellow);

}

.service-card h3 {

    margin-bottom: 8px;

    color:
        var(--navy);

    font-size: 19px;

}

.featured h3 {

    color:
        var(--white);

}

.service-card p {

    min-height: 70px;

    color:
        var(--muted);

    font-size: 11px;

}

.featured p {

    color:
        #aebdcb;

}

.service-card a {

    display: inline-block;

    margin-top: 13px;

    color:
        var(--yellow-dark);

    font-size: 10px;

    font-weight: 900;

}

.featured a {

    color:
        var(--yellow);

}


/* =========================================================
   VALUES
========================================================= */

.values-section {

    padding:
        90px 0;

    background:
        var(--bg);

}

.values-grid {

    display: grid;

    grid-template-columns:
        1fr .85fr;

    gap: 70px;

    align-items: center;

}

.values-content > p {

    max-width: 650px;

    margin-bottom: 25px;

    color:
        var(--muted);

    font-size: 13px;

}

.value-list {

    display: flex;

    flex-direction: column;

    gap: 13px;

}

.value-item {

    display: flex;

    gap: 12px;

}

.value-item > span {

    width: 28px;

    height: 28px;

    flex: 0 0 28px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size: 11px;

    font-weight: 900;

}

.value-item strong {

    display: block;

    margin-bottom: 2px;

    color:
        var(--navy);

    font-size: 12px;

}

.value-item p {

    color:
        var(--muted);

    font-size: 10px;

}

.values-panel {

    padding:
        29px;

    border-radius:
        18px;

    background:
        var(--navy);

    color:
        var(--white);

    box-shadow:
        0 20px 45px
        rgba(7,26,49,.12);

}

.panel-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid
        rgba(255,255,255,.1);

}

.panel-top span {

    color:
        var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}

.panel-top strong {

    font-size: 10px;

}

.route-visual {

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        32px 0;

}

.route-point {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

}

.point {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size: 12px;

    font-weight: 900;

}

.point.destination {

    background:
        var(--white);

}

.route-point small {

    color:
        #8195aa;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

}

.route-line {

    position: relative;

    flex: 1;

    height: 2px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background:
        rgba(255,255,255,.15);

}

.route-line i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        #60778e;

}

.route-line span {

    position: absolute;

    left: 50%;

    transform:
        translateX(-50%);

    padding:
        7px;

    border-radius: 50%;

    background:
        var(--blue);

    color:
        var(--yellow);

    font-size: 17px;

}

.panel-text h3 {

    margin-bottom: 6px;

    font-size: 19px;

}

.panel-text p {

    color:
        #aebdcb;

    font-size: 10px;

}

.panel-button {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 43px;

    margin-top: 20px;

    border-radius: 8px;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size: 10px;

    font-weight: 900;

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    padding:
        90px 0;

    background:
        var(--white);

}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}

.process-item {

    position: relative;

    padding:
        27px 22px;

    border:
        1px solid var(--border);

    border-radius:
        14px;

    background:
        var(--soft);

    text-align: center;

}

.process-number {

    position: absolute;

    top: 13px;

    right: 15px;

    color:
        #d9e0e7;

    font-size: 19px;

    font-weight: 900;

}

.process-icon {

    width: 49px;

    height: 49px;

    display: grid;

    place-items: center;

    margin:
        0 auto 17px;

    border-radius: 12px;

    background:
        #fff5d5;

    font-size: 19px;

}

.process-item h3 {

    margin-bottom: 7px;

    color:
        var(--navy);

    font-size: 15px;

}

.process-item p {

    color:
        var(--muted);

    font-size: 10px;

}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {

    padding:
        90px 0;

    background:
        var(--bg);

}

.audience-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 12px;

}

.audience-grid article {

    padding:
        23px;

    border:
        1px solid var(--border);

    border-radius:
        13px;

    background:
        var(--white);

}

.audience-grid article > span {

    display: block;

    margin-bottom: 12px;

    font-size: 23px;

}

.audience-grid h3 {

    margin-bottom: 6px;

    color:
        var(--navy);

    font-size: 15px;

}

.audience-grid p {

    color:
        var(--muted);

    font-size: 10px;

}


/* =========================================================
   WHY
========================================================= */

.why-section {

    padding:
        90px 0;

    background:
        var(--navy);

    color:
        var(--white);

}

.why-header {

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 35px;

}

.why-header h2 {

    margin-bottom: 0;

    color:
        var(--white);

}

.why-header p {

    color:
        #aebdcb;

    font-size: 12px;

}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 1px;

    background:
        rgba(255,255,255,.1);

}

.why-grid > div {

    min-height: 210px;

    padding:
        25px;

    background:
        var(--navy);

}

.why-grid strong {

    display: block;

    margin-bottom: 28px;

    color:
        var(--yellow);

    font-size: 11px;

}

.why-grid h3 {

    margin-bottom: 9px;

    font-size: 16px;

}

.why-grid p {

    color:
        #94a9bc;

    font-size: 10px;

}


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

.about-cta {

    padding:
        75px 0;

    background:
        linear-gradient(
            135deg,
            #123b68,
            #06172d
        );

    color:
        var(--white);

}

.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}

.cta-content > span {

    color:
        var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}

.cta-content h2 {

    max-width: 700px;

    margin:
        8px 0 10px;

    font-size:
        clamp(28px,4vw,43px);

    line-height: 1.1;

}

.cta-content p {

    max-width: 680px;

    color:
        #b7c6d4;

    font-size: 12px;

}

.cta-actions {

    display: flex;

    flex-direction: column;

    gap: 9px;

    min-width: 190px;

}

.cta-phone,
.cta-whatsapp {

    min-height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        0 17px;

    border-radius: 9px;

    font-size: 10px;

    font-weight: 900;

    white-space: nowrap;

}

.cta-phone {

    background:
        var(--yellow);

    color:
        var(--navy);

}

.cta-whatsapp {

    border:
        1px solid
        rgba(255,255,255,.17);

    color:
        var(--white);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background:
        #051326;

    color:
        #91a4b8;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;

    padding:
        60px 0 45px;

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

}

.footer-logo .logo-mark {

    width: 42px;

    height: 42px;

}

.footer-logo > span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.footer-logo strong {

    color:
        var(--white);

    font-size: 16px;

}

.footer-logo small {

    margin-top: 4px;

    color:
        var(--yellow);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.7px;

}

.footer-brand p {

    max-width: 350px;

    margin-bottom: 15px;

    color:
        #8194a8;

    font-size: 10px;

}

.footer-phone {

    color:
        var(--yellow);

    font-size: 17px;

    font-weight: 900;

}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 7px;

}

.footer-column h3 {

    margin-bottom: 7px;

    color:
        var(--white);

    font-size: 13px;

}

.footer-column a,
.footer-column p {

    color:
        #8194a8;

    font-size: 10px;

    transition:
        color .2s ease;

}

.footer-column a:hover {

    color:
        var(--yellow);

}

.footer-whatsapp {

    color:
        var(--yellow) !important;

    font-weight: 900;

}

.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.07);

}

.footer-bottom-inner {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p,
.footer-bottom a {

    color:
        #687d92;

    font-size: 9px;

}

.footer-bottom-inner > div {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 2000;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        10px 15px;

    border-radius:
        50px;

    background:
        var(--green);

    color:
        var(--white);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.22);

}

.whatsapp-float span {

    font-size: 17px;

}

.whatsapp-float small {

    font-size: 9px;

    font-weight: 900;

}


/* =========================================================
   1050px
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {

        gap: 10px;

    }

    .desktop-nav a {

        font-size: 9px;

    }

    .intro-grid,
    .values-grid {

        gap: 40px;

    }

    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   850px
========================================================= */

@media (max-width: 850px) {

    .desktop-nav {

        display: none;

    }

    .mobile-menu-btn {

        display: flex;

    }

    .header-phone {

        margin-left: auto;

    }

    .intro-grid,
    .values-grid {

        grid-template-columns:
            1fr;

    }

    .mission-grid,
    .service-grid,
    .audience-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .process-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .why-header {

        grid-template-columns:
            1fr;

        gap: 20px;

    }

    .why-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

    .cta-actions {

        width: 100%;

        flex-direction: row;

    }


}


/* =========================================================
   600px
========================================================= */

@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }

    .header-inner {

        min-height: 70px;

        gap: 7px;

    }

    .logo {

        min-width: auto;

    }

    .logo-mark {

        width: 41px;

        height: 41px;

    }

    .logo-text strong {

        font-size: 15px;

    }

    .logo-text small {

        font-size: 7px;

    }

    .header-phone {

        padding: 8px;

        font-size: 9px;

    }

    .phone-content small {

        display: none;

    }

    .phone-symbol {

        font-size: 14px;

    }

    .about-hero {

        padding:
            55px 0 60px;

    }

    .about-hero h1 {

        font-size: 38px;

    }

    .about-hero p {

        font-size: 13px;

    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }

    .btn-primary,
    .btn-secondary {

        width: 100%;

    }

    .hero-stats {

        flex-direction: column;

        gap: 0;

    }

    .hero-stats > div {

        border-left: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.1);

    }

    .about-intro,
    .mission-section,
    .services-section,
    .values-section,
    .process-section,
    .audience-section,
    .why-section {

        padding:
            60px 0;

    }

    .intro-card {

        padding:
            25px;

    }

    .mission-grid,
    .service-grid,
    .audience-grid,
    .process-grid,
    .why-grid {

        grid-template-columns:
            1fr;

    }

    .why-grid > div {

        min-height: auto;

    }

    .cta-actions {

        width: 100%;

        flex-direction: column;

    }

    .cta-phone,
    .cta-whatsapp {

        width: 100%;

    }

    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 30px;

        padding:
            45px 0;

    }

    .footer-bottom-inner {

        min-height: auto;

        padding:
            18px 0;

        flex-direction: column;

        text-align: center;

    }

    .footer-bottom-inner > div {

        justify-content: center;

    }

    .whatsapp-float {

        right: 12px;

        bottom: 12px;

    }

}


/* =========================================================
   390px
========================================================= */

@media (max-width: 390px) {

    .logo-text {

        display: none;

    }

    .about-hero h1 {

        font-size: 34px;

    }

    .intro-card h3 {

        font-size: 23px;

    }

}

