:root{
    --gm-primary:#302283;
    --gm-primary-dark:#24196b;
    --gm-secondary:#5f56d8;
    --gm-accent:#f3efff;
    --gm-light:#f5f6fb;
    --gm-white:#ffffff;
    --gm-text:#12131a;
    --gm-muted:#5d6473;
    --gm-border:#e4e7f0;
    --gm-shadow:0 18px 50px rgba(17, 24, 39, 0.08);
}

.about-page-main{
    background:
        radial-gradient(circle at top left, rgba(48,34,131,0.06) 0, transparent 28%),
        radial-gradient(circle at bottom right, rgba(95,86,216,0.07) 0, transparent 25%),
        linear-gradient(180deg, #f7f8fc 0%, #ffffff 45%, #f8f9fd 100%);
    overflow:hidden;
    position:relative;
}

.about-page-main section{
    position:relative;
}

.about-mini-title,
.section-kicker{
    display:inline-block;
    font-size:13px;
    line-height:1.6;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2.5px;
    color:var(--gm-primary);
    margin-bottom:14px;
}

.section-head{
    margin-bottom:42px;
}

.center-head{
    text-align:center;
}

.center-head p{
    max-width:820px;
    margin-left:auto;
    margin-right:auto;
}

.light-head h2,
.light-head p,
.light-head .section-kicker{
    color:#fff;
}

.section-head h2{
    font-size:44px;
    line-height:1.14;
    font-weight:800;
    color:var(--gm-text);
    margin:0 0 14px;
}

.section-head p{
    font-size:18px;
    line-height:1.9;
    color:var(--gm-muted);
    margin:0;
}

.about-intro-section{
    padding:85px 0 70px;
}

.about-intro-grid{
    display:grid;
    grid-template-columns:1.08fr 0.92fr;
    gap:60px;
    align-items:center;
}

.about-intro-left h1{
    font-size:48px;
    font-weight:800;
    color:var(--gm-text);
    margin:0 0 22px;
    letter-spacing:-1.4px;
}

.about-intro-left p{
    font-size:16px;
    line-height:1.95;
    color:var(--gm-muted);
    margin:0 0 18px;
}

.about-intro-left .about-intro-lead{
    font-size:21px;
    color:#4f5565;
}

.about-action-row{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:30px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    min-height:58px;
    padding:14px 28px;
    border-radius:999px;
    text-decoration:none !important;
    font-size:18px;
    font-weight:700;
    transition:all .25s ease;
}

.about-btn-primary{
    background:var(--gm-primary);
    color:#fff !important;
    border:2px solid var(--gm-primary);
    box-shadow:0 12px 30px rgba(48,34,131,0.18);
}

.about-btn-primary:hover{
    background:var(--gm-primary-dark);
    border-color:var(--gm-primary-dark);
    color:#fff !important;
}

.about-btn-outline{
    background:transparent;
    color:var(--gm-primary) !important;
    border:2px solid var(--gm-primary);
}

.about-btn-outline:hover{
    background:var(--gm-primary);
    color:#fff !important;
}

.about-btn-white{
    background:#fff;
    color:var(--gm-primary) !important;
    border:2px solid #fff;
}

.about-btn-white:hover{
    background:#f3f3fb;
    color:var(--gm-primary) !important;
    border-color:#f3f3fb;
}

.about-btn-border-light{
    background:transparent;
    color:#fff !important;
    border:2px solid rgba(255,255,255,0.75);
}

.about-btn-border-light:hover{
    background:#fff;
    color:var(--gm-primary) !important;
    border-color:#fff;
}

.about-image-stack{
    position:relative;
    max-width:500px;
    margin-left:auto;
    padding-bottom:30px;
    padding-left:25px;
}

.about-image-main{
    border-radius:36px;
    overflow:hidden;
    box-shadow:var(--gm-shadow);
    position:relative;
}

.about-image-main img{
    display:block;
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
}

.about-image-main:after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:38%;
    background:linear-gradient(180deg, rgba(48,34,131,0) 0%, rgba(48,34,131,0.45) 100%);
}

.about-floating-badge{
    position:absolute;
    left:0;
    top:34px;
    background:linear-gradient(135deg, #302283 0%, #5f56d8 100%);
    color:#fff;
    border-radius:22px;
    padding:18px 20px;
    box-shadow:0 15px 35px rgba(48,34,131,0.22);
    min-width:145px;
    text-align:center;
}

.about-floating-badge span{
    display:block;
    font-size:26px;
    line-height:1.1;
    font-weight:800;
}

.about-floating-badge small{
    display:block;
    font-size:13px;
    line-height:1.5;
    letter-spacing:1.2px;
    text-transform:uppercase;
    opacity:.92;
    margin-top:4px;
}

.about-floating-card{
    position:absolute;
    right:-10px;
    bottom:0;
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:#fff;
    border-radius:20px;
    padding:18px 18px;
    box-shadow:var(--gm-shadow);
    border:1px solid var(--gm-border);
    max-width:280px;
}

.about-floating-card i{
    font-size:24px;
    color:var(--gm-primary);
    margin-top:4px;
}

.about-floating-card strong{
    display:block;
    font-size:16px;
    line-height:1.5;
    color:var(--gm-text);
}

.about-floating-card p{
    font-size:14px;
    line-height:1.7;
    color:var(--gm-muted);
    margin:4px 0 0;
}

.about-story-mission-section{
    padding:15px 0 80px;
}

.story-mission-wrap{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:28px;
    align-items:stretch;
}

.story-panel,
.mission-panel{
    border-radius:34px;
    padding:42px 36px;
    position:relative;
    overflow:hidden;
}

.story-panel{
    background:linear-gradient(135deg, #ffffff 0%, #f4f6ff 100%);
    border:1px solid var(--gm-border);
    box-shadow:var(--gm-shadow);
}

.mission-panel{
    background:linear-gradient(135deg, #302283 0%, #4336a8 60%, #6a61e1 100%);
    color:#fff;
    box-shadow:0 20px 50px rgba(48,34,131,0.18);
}

.story-panel:before,
.mission-panel:before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    right:-70px;
    top:-70px;
    background:rgba(255,255,255,0.16);
}

.story-panel:before{
    background:rgba(48,34,131,0.06);
}

.panel-number{
    font-size:68px;
    line-height:1;
    font-weight:800;
    color:rgba(48,34,131,0.14);
    margin-bottom:12px;
}

.mission-panel .panel-number{
    color:rgba(255,255,255,0.18);
}

.story-panel h2,
.mission-panel h2{
    font-size:36px;
    line-height:1.16;
    font-weight:800;
    margin:0 0 18px;
}

.story-panel h2{
    color:var(--gm-text);
}

.mission-panel h2{
    color:#fff;
}

.story-panel p,
.mission-panel p{
    font-size:17px;
    line-height:1.92;
    margin:0 0 16px;
}

.story-panel p{
    color:var(--gm-muted);
}

.mission-panel p{
    color:rgba(255,255,255,0.92);
}

.stylish-list{
    list-style:none;
    padding:0;
    margin:10px 0 0;
}

.stylish-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:16px;
    font-size:17px;
    line-height:1.8;
    color:var(--gm-muted);
}

.stylish-list li:last-child{
    margin-bottom:0;
}

.stylish-list li:before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--gm-primary);
    box-shadow:0 0 0 5px rgba(48,34,131,0.10);
}

.light-list li{
    color:rgba(255,255,255,0.92);
}

.light-list li:before{
    background:#fff;
    box-shadow:0 0 0 5px rgba(255,255,255,0.16);
}

.about-expertise-section{
    padding:80px 0;
    background:linear-gradient(135deg, #171a30 0%, #232759 65%, #302283 100%);
}

.expertise-layout{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:stretch;
}

.expertise-content{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:30px;
    padding:34px 30px;
    backdrop-filter:blur(6px);
}

.expertise-point{
    display:flex;
    gap:18px;
    margin-bottom:28px;
}

.expertise-point:last-of-type{
    margin-bottom:24px;
}

.expertise-icon{
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:18px;
    background:#fff;
    color:var(--gm-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.expertise-point h3{
    font-size:24px;
    line-height:1.3;
    font-weight:800;
    color:#fff;
    margin:0 0 8px;
}

.expertise-point p{
    font-size:16px;
    line-height:1.85;
    color:rgba(255,255,255,0.84);
    margin:0;
}

.expertise-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.expertise-tags span{
    display:inline-flex;
    align-items:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.expertise-highlight{
    background:linear-gradient(135deg, #f3efff 0%, #ffffff 100%);
    border-radius:30px;
    padding:36px 32px;
    box-shadow:var(--gm-shadow);
}

.expertise-highlight h3{
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    color:var(--gm-text);
    margin:0 0 14px;
}

.expertise-highlight p{
    font-size:17px;
    line-height:1.9;
    color:var(--gm-muted);
    margin:0;
}

.about-trust-section{
    padding:82px 0;
}

.trust-timeline{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.trust-card{
    border-radius:32px;
    padding:36px 30px;
    position:relative;
    overflow:hidden;
}

.trust-card-dark{
    background:linear-gradient(135deg, #302283 0%, #4b3fd0 100%);
    color:#fff;
    box-shadow:0 18px 45px rgba(48,34,131,0.18);
}

.trust-card-light{
    background:linear-gradient(135deg, #ffffff 0%, #f7f8fd 100%);
    border:1px solid var(--gm-border);
    box-shadow:var(--gm-shadow);
}

.trust-card-dark:before,
.trust-card-light:before{
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:140px;
    height:140px;
    border-radius:24px;
    transform:rotate(20deg);
}

.trust-card-dark:before{
    background:rgba(255,255,255,0.08);
}

.trust-card-light:before{
    background:rgba(48,34,131,0.05);
}

.trust-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:18px;
}

.trust-card-dark .trust-icon{
    background:rgba(255,255,255,0.14);
    color:#fff;
}

.trust-card-light .trust-icon{
    background:rgba(48,34,131,0.10);
    color:var(--gm-primary);
}

.trust-card h3{
    font-size:28px;
    line-height:1.25;
    font-weight:800;
    margin:0 0 14px;
}

.trust-card-dark h3{
    color:#fff;
}

.trust-card-light h3{
    color:var(--gm-text);
}

.about-services-section{
    padding:82px 0;
    background:linear-gradient(180deg, #f9f9fe 0%, #f1f4fb 100%);
}

.services-creative-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.service-creative-card{
    min-height:280px;
    border-radius:28px;
    padding:28px 24px;
    position:relative;
    overflow:hidden;
    box-shadow:var(--gm-shadow);
}

.service-creative-card:before{
    content:"";
    position:absolute;
    inset:auto -30px -30px auto;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(255,255,255,0.18);
}

.service-no{
    display:inline-block;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:14px;
}

.service-creative-card h3{
    font-size:26px;
    line-height:1.25;
    font-weight:800;
    margin:0 0 14px;
}

.service-creative-card p{
    font-size:16px;
    line-height:1.9;
    margin:0;
}

.service-one{
    background:linear-gradient(135deg, #302283 0%, #5548dd 100%);
    color:#fff;
}

.service-two{
    background:linear-gradient(135deg, #ffffff 0%, #efeefe 100%);
    border:1px solid var(--gm-border);
    color:var(--gm-text);
}

.service-three{
    background:linear-gradient(135deg, #191d37 0%, #2e335a 100%);
    color:#fff;
}

.service-four{
    background:linear-gradient(135deg, #eaf4ff 0%, #ffffff 100%);
    border:1px solid #dce8fb;
    color:var(--gm-text);
}

.about-advantage-section{
    padding:86px 0;
}

.advantage-wrap{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:32px;
    align-items:center;
    padding:38px;
    border-radius:34px;
    background:
        linear-gradient(135deg, rgba(48,34,131,0.96) 0%, rgba(95,86,216,0.94) 100%);
    box-shadow:0 20px 55px rgba(48,34,131,0.20);
}

.advantage-left .section-kicker{
    color:#ddd8ff;
}

.advantage-left h2{
    font-size:40px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin:0 0 16px;
}

.advantage-left p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,0.88);
    margin:0;
}

.advantage-right{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.advantage-pill{
    display:flex;
    align-items:center;
    gap:12px;
    width:calc(50% - 7px);
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:18px;
    padding:16px 18px;
    color:#fff;
    font-size:16px;
    line-height:1.7;
    font-weight:600;
}

.advantage-pill i{
    color:#fff;
    font-size:14px;
    min-width:14px;
}

.about-commitment-section{
    padding:82px 0;
}

.commitment-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.commitment-box{
    background:#fff;
    border:1px solid var(--gm-border);
    border-radius:26px;
    padding:30px 24px;
    box-shadow:var(--gm-shadow);
    text-align:center;
    transition:transform .25s ease, box-shadow .25s ease;
}

.commitment-box:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 55px rgba(17, 24, 39, 0.10);
}

.commitment-box i{
    width:70px;
    height:70px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, rgba(48,34,131,0.10) 0%, rgba(95,86,216,0.16) 100%);
    color:var(--gm-primary);
    font-size:26px;
    margin-bottom:16px;
}

.commitment-box h3{
    font-size:24px;
    line-height:1.3;
    font-weight:800;
    color:var(--gm-text);
    margin:0 0 10px;
}

.commitment-box p{
    font-size:16px;
    line-height:1.85;
    color:var(--gm-muted);
    margin:0;
}

.about-vision-cta-section{
    padding:20px 0 90px;
}

.vision-cta-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.vision-box{
    background:linear-gradient(135deg, #ffffff 0%, #f4f6ff 100%);
    border:1px solid var(--gm-border);
    border-radius:34px;
    padding:40px 34px;
    box-shadow:var(--gm-shadow);
}

.vision-box h2{
    font-size:38px;
    line-height:1.16;
    font-weight:800;
    color:var(--gm-text);
    margin:0 0 16px;
}

.vision-box p{
    font-size:17px;
    line-height:1.95;
    color:var(--gm-muted);
    margin:0;
}

.cta-box{
    background:linear-gradient(135deg, #181b35 0%, #302283 55%, #5f56d8 100%);
    border-radius:34px;
    padding:40px 34px;
    box-shadow:0 20px 55px rgba(48,34,131,0.18);
}

.cta-box .cta-kicker{
    color:#ddd8ff;
}

.cta-box h2{
    font-size:38px;
    line-height:1.16;
    font-weight:800;
    color:#fff;
    margin:0 0 16px;
}

.cta-box p{
    font-size:17px;
    line-height:1.95;
    color:rgba(255,255,255,0.9);
    margin:0;
}

@media (max-width:1399px){
    .about-intro-left h1{
        font-size:46px;
    }
    .services-creative-grid,
    .commitment-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:1199px){
    .about-intro-grid,
    .story-mission-wrap,
    .expertise-layout,
    .trust-timeline,
    .advantage-wrap,
    .vision-cta-grid{
        grid-template-columns:1fr;
    }

    .about-image-stack{
        margin:0 auto;
    }

    .advantage-pill{
        width:100%;
    }
}

@media (max-width:991px){
    .about-intro-section,
    .about-story-mission-section,
    .about-expertise-section,
    .about-trust-section,
    .about-services-section,
    .about-advantage-section,
    .about-commitment-section{
        padding:65px 0;
    }

    .about-vision-cta-section{
        padding:10px 0 70px;
    }

    .about-intro-left h1{
        font-size:40px;
        line-height:1.12;
    }

    .section-head h2,
    .advantage-left h2,
    .vision-box h2,
    .cta-box h2,
    .story-panel h2,
    .mission-panel h2{
        font-size:32px;
    }

    .services-creative-grid{
        grid-template-columns:1fr 1fr;
    }

    .about-floating-card{
        right:0;
    }
}

@media (max-width:767px){
    .about-intro-section{
        padding:48px 0 52px;
    }

    .about-story-mission-section,
    .about-expertise-section,
    .about-trust-section,
    .about-services-section,
    .about-advantage-section,
    .about-commitment-section{
        padding:52px 0;
    }

    .about-vision-cta-section{
        padding:4px 0 55px;
    }

    .about-intro-left h1{
        font-size:31px;
        letter-spacing:-0.6px;
    }

    .about-intro-left .about-intro-lead{
        font-size:18px;
    }

    .about-intro-left p,
    .section-head p,
    .story-panel p,
    .mission-panel p,
    .service-creative-card p,
    .vision-box p,
    .cta-box p,
    .advantage-left p,
    .commitment-box p{
        font-size:15px;
        line-height:1.85;
    }

    .section-head h2,
    .advantage-left h2,
    .vision-box h2,
    .cta-box h2,
    .story-panel h2,
    .mission-panel h2{
        font-size:27px;
    }

    .story-panel,
    .mission-panel,
    .expertise-content,
    .expertise-highlight,
    .trust-card,
    .advantage-wrap,
    .vision-box,
    .cta-box{
        padding:28px 22px;
    }

    .services-creative-grid,
    .commitment-grid{
        grid-template-columns:1fr;
    }

    .about-action-row{
        flex-direction:column;
    }

    .about-btn{
        width:100%;
        min-width:100%;
    }

    .about-image-stack{
        padding-left:0;
        padding-bottom:65px;
    }

    .about-floating-badge{
        left:14px;
        top:14px;
        padding:14px 16px;
        min-width:118px;
    }

    .about-floating-badge span{
        font-size:22px;
    }

    .about-floating-card{
        position:absolute;
        left:14px;
        right:14px;
        max-width:none;
        bottom:0;
    }

    .expertise-point{
        align-items:flex-start;
    }

    .expertise-icon{
        width:54px;
        height:54px;
        min-width:54px;
        font-size:21px;
    }

    .commitment-box{
        padding:26px 20px;
    }
}


.section-head p{
	margin:auto !important;
}