@charset "UTF-8";

:root{
    --font-main:"Noto Sans","Segoe UI","Helvetica Neue",Arial,sans-serif;
    --dark:#071728;
    --dark2:#092137;
    --orange:#ff8a1c;
    --orange2:#ffb153;
    --text:#061326;
    --muted:#627187;
    --line:#e4ebf4;
    --soft:#f5f8fc;
    --white:#ffffff;
    --shadow:0 18px 55px rgba(7,23,40,.10);
    --radius:18px;
}

*{
    box-sizing:border-box;
}

html{
    -webkit-text-size-adjust:100%;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

html,
body{
    margin:0;
    padding:0;
    font-family:var(--font-main);
    background:#ffffff;
    color:var(--text);
    overflow-x:hidden;
}

body{
    font-weight:600;
    letter-spacing:-0.015em;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
textarea,
select{
    font-family:var(--font-main);
}

.container{
    width:min(1180px, calc(100% - 44px));
    margin:0 auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:var(--dark);
    color:#fff;
    box-shadow:0 14px 35px rgba(0,0,0,.18);
}

.header-top{
    background:linear-gradient(90deg,#061525,#082036);
    border-bottom:1px solid rgba(255,255,255,.07);
}

.header-top-inner{
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}

.brand-logo{
    width:56px;
    height:56px;
    border-radius:50%;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    background:rgba(255,255,255,.05);
    flex:0 0 auto;
    overflow:hidden;
}

.brand-logo i{
    font-size:25px;
}

.brand-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:5px;
}

.brand-logo.has-image{
    border:0;
    border-radius:0;
    background:transparent;
    overflow:visible;
    place-items:center start;
}

.brand-logo.has-image img{
    padding:0;
    justify-self:start;
}

.brand-text{
    min-width:0;
}

.brand-text strong{
    display:block;
    font-size:22px;
    line-height:1.1;
    letter-spacing:-0.02em;
    white-space:nowrap;
    font-weight:900;
}

.brand-text small{
    display:block;
    margin-top:6px;
    font-size:13px;
    color:#dbe6f2;
    font-style:italic;
    white-space:nowrap;
    font-weight:700;
}

.header-tools{
    display:flex;
    align-items:center;
    gap:22px;
}

.language-switch{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:9px;
    height:32px;
    color:rgba(219,230,242,.48);
    font-size:13px;
    font-weight:900;
    letter-spacing:0;
    white-space:nowrap;
}

.language-switch label{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
}

.language-switch select{
    height:32px;
    min-width:58px;
    padding:0 25px 0 10px;
    border:1px solid rgba(219,230,242,.28);
    border-radius:8px;
    background:rgba(2,21,39,.18);
    color:#dbe6f2;
    font:900 12px/1 var(--font-main,"Noto Sans",sans-serif);
    text-transform:uppercase;
    outline:0;
    appearance:none;
    -webkit-appearance:none;
    cursor:pointer;
}

.language-switch select:focus{
    border-color:var(--orange);
    box-shadow:0 0 0 3px rgba(255,116,28,.16);
}

.language-switch select option{
    color:#102b4c;
    background:#fff;
}

.language-switch:after{
    content:"\f078";
    position:absolute;
    right:9px;
    top:50%;
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:8px;
    color:rgba(219,230,242,.78);
    pointer-events:none;
    transform:translateY(-50%);
}

.language-switch a{
    color:#dbe6f2;
    text-decoration:none;
    transition:.2s ease;
}

.language-switch a:hover,
.language-switch a:focus-visible{
    color:var(--orange);
}

.social-links{
    display:flex;
    align-items:center;
    gap:18px;
}

.social-links a{
    color:#dbe6f2;
    font-size:17px;
    transition:.2s;
}

.social-links a:hover{
    color:var(--orange);
}

.header-nav{
    background:#081a2d;
}

.nav-inner{
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:30px;
    min-width:0;
}

.main-nav a{
    color:#d9e3ee;
    font-size:15px;
    font-weight:900;
    position:relative;
    padding:27px 0;
    transition:.2s;
    white-space:nowrap;
}

.main-nav a.active,
.main-nav a:hover{
    color:var(--orange);
}

.main-nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:12px;
    height:3px;
    border-radius:20px;
    background:var(--orange);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex:0 0 auto;
}

.btn{
    border:0;
    outline:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border-radius:10px;
    padding:13px 20px;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
    transition:.2s;
    white-space:nowrap;
}

.btn:hover{
    transform:translateY(-1px);
}

.btn-primary{
    color:#fff;
    background:linear-gradient(135deg,var(--orange),#ff7a14);
    box-shadow:0 14px 30px rgba(255,138,28,.28);
}

.btn-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.24);
    background:transparent;
}

.btn-outline:hover{
    border-color:var(--orange);
    color:var(--orange);
}

.btn-light{
    color:var(--text);
    background:#fff;
    border:1px solid #cad5e4;
}

.btn-light:hover{
    border-color:var(--orange);
    color:var(--orange);
}

.btn-lg{
    min-width:182px;
    padding:16px 22px;
}

.btn-dark-outline{
    color:#fff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.22);
}

.search-btn,
.mobile-menu-btn{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border:0;
    background:transparent;
    color:#d9e3ee;
    font-size:25px;
    cursor:pointer;
    border-radius:12px;
}

.search-btn:hover,
.mobile-menu-btn:hover{
    color:var(--orange);
    background:rgba(255,255,255,.05);
}

.mobile-menu-btn{
    display:none;
}

.hero-section{
    background:#eef5fb;
}

.hero-slider{
    position:relative;
    min-height:430px;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    pointer-events:none;
    transition:opacity .5s ease;
}

.hero-slide.active{
    position:relative;
    opacity:1;
    pointer-events:auto;
}

.hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
}

.hero-bg.no-image{
    background:
        radial-gradient(circle at 75% 45%, rgba(14,91,127,.18), transparent 30%),
        linear-gradient(120deg,#f8fbff 0%,#dcecf7 52%,#bcd3e6 100%);
}

.hero-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.88) 40%,rgba(255,255,255,.38) 70%,rgba(255,255,255,.08) 100%);
}

.hero-content{
    position:relative;
    min-height:430px;
    display:flex;
    align-items:center;
}

.hero-text{
    width:min(620px,100%);
    padding:56px 0;
}

.hero-title-row{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:34px;
}

.hero-logo{
    width:78px;
    height:78px;
    border-radius:15px;
    display:grid;
    place-items:center;
    color:#0e5b7f;
    border:2px solid rgba(14,91,127,.18);
    background:#fff;
    box-shadow:var(--shadow);
    overflow:hidden;
    flex:0 0 auto;
}

.hero-logo i{
    font-size:38px;
}

.hero-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:7px;
}

.hero-logo.has-image{
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    overflow:visible;
}

.hero-logo.has-image img{
    padding:0;
}

.hero-title-row h1{
    margin:0;
    color:#0e5b7f;
    font-size:31px;
    line-height:1.1;
    letter-spacing:-0.025em;
    font-weight:900;
}

.hero-title-row p{
    margin:6px 0 0;
    font-size:15px;
    color:#153956;
    font-weight:900;
    font-style:italic;
}

.hero-description{
    max-width:560px;
    font-size:18px;
    line-height:1.75;
    color:#26364b;
    font-weight:800;
    margin-bottom:24px;
    letter-spacing:-0.01em;
}

.hero-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:34px;
}

.hero-stats{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:34px;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.stat-item i{
    font-size:28px;
    color:#152439;
}

.stat-item strong{
    display:block;
    font-size:25px;
    line-height:1;
    color:#152439;
    font-weight:900;
}

.stat-item span{
    display:block;
    margin-top:5px;
    color:#39475b;
    font-size:13px;
    font-weight:900;
}

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border-radius:50%;
    border:0;
    display:grid;
    place-items:center;
    background:rgba(7,23,40,.82);
    color:#fff;
    z-index:3;
    cursor:pointer;
}

.slider-prev{
    left:18px;
}

.slider-next{
    right:18px;
}

.slider-dots{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:8px;
    z-index:4;
}

.slider-dots button{
    width:9px;
    height:9px;
    border:0;
    border-radius:50%;
    background:#b4c0cf;
    cursor:pointer;
    transition:.2s;
}

.slider-dots button.active{
    width:24px;
    border-radius:20px;
    background:var(--orange);
}

.content-section{
    padding:40px 0 0;
    background:#fff;
}

.page-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:34px;
    align-items:start;
}

.main-column,
.side-column{
    min-width:0;
}

.main-column{
    overflow:hidden;
}

.side-column{
    position:relative;
    z-index:2;
}

.section-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:0 14px 40px rgba(10,31,55,.055);
}

.academic-card{
    padding:24px;
    margin-bottom:28px;
}

.section-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:16px;
}

.section-title-row h2,
.section-head h2{
    margin:0;
    font-size:25px;
    color:#061326;
    font-weight:900;
    letter-spacing:-0.025em;
}

.category-strip{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr)) 54px;
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
}

.category-item{
    min-width:0;
    min-height:104px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 8px;
    text-align:center;
    border-right:1px solid var(--line);
    color:#071728;
    background:#fff;
    transition:.2s;
    font-weight:900;
}

.category-item i{
    font-size:32px;
    color:#27384e;
    transition:.2s;
}

.category-item img{
    width:38px;
    height:38px;
    object-fit:contain;
}

.category-item span{
    font-size:13px;
    line-height:1.35;
    overflow-wrap:normal;
    word-break:normal;
    font-weight:900;
}

.category-item:hover{
    background:#f7f9fc;
    color:var(--orange);
}

.category-item:hover i{
    color:var(--orange);
}

.category-next{
    display:grid;
    place-items:center;
    color:#061326;
    background:#fff;
    font-size:28px;
}

.category-next:hover{
    color:var(--orange);
}

.section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin:28px 0 16px;
}

.section-head a{
    font-size:14px;
    font-weight:900;
    color:#061326;
}

.section-head a:hover{
    color:var(--orange);
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.article-card{
    min-width:0;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    transition:.2s;
}

.article-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.article-image{
    display:block;
    height:132px;
    background:#e9eef5;
    overflow:hidden;
}

.article-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.image-placeholder{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    color:#b9c3cf;
    font-size:48px;
    background:#e9eef5;
}

.article-body{
    padding:16px;
}

.article-body h3{
    margin:0 0 22px;
    min-height:68px;
    font-size:15.5px;
    line-height:1.5;
    overflow-wrap:normal;
    word-break:normal;
    font-weight:900;
}

.article-body h3 a:hover{
    color:var(--orange);
}

.article-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    color:#526176;
    font-size:12px;
    font-weight:900;
}

.article-footer a{
    font-size:19px;
    color:#061326;
}

.article-footer a:hover{
    color:var(--orange);
}

.empty-box{
    grid-column:1/-1;
    border:1px dashed #cdd8e6;
    background:#f8fafc;
    border-radius:14px;
    padding:22px;
    color:#536276;
    font-weight:800;
}

.promo-row{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    gap:18px;
    margin:28px 0;
    align-items:stretch;
}

.journal-box,
.app-box{
    position:relative;
    min-width:0;
    min-height:170px;
    border-radius:16px;
    overflow:hidden;
    padding:28px;
    max-width:100%;
}

.journal-box{
    background:
        radial-gradient(circle at 80% 40%, rgba(255,138,28,.22), transparent 34%),
        linear-gradient(120deg,#071728,#09263f);
    color:#fff;
}

.promo-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:.24;
}

.promo-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(7,23,40,.97),rgba(7,23,40,.72));
}

.promo-content{
    position:relative;
    z-index:1;
}

.journal-box h3,
.app-box h3{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.25;
    font-weight:900;
    letter-spacing:-0.02em;
}

.journal-box p,
.app-box p{
    margin:0 0 18px;
    line-height:1.65;
    font-weight:700;
}

.app-box{
    background:#fff;
    border:1px solid var(--line);
}

.app-image{
    height:70px;
    width:100%;
    object-fit:contain;
    margin-bottom:12px;
}

.badge-new{
    position:absolute;
    top:18px;
    right:18px;
    border-radius:999px;
    background:#edf3f8;
    color:#061326;
    padding:6px 11px;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
}

.store-row{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.store-row span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:#071728;
    color:#fff;
    border-radius:6px;
    padding:8px 11px;
    font-size:12px;
    font-weight:900;
}

.feature-wide-section{
    margin-top:30px;
}

.feature-wide-section .section-head{
    margin-top:0;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:16px;
    width:100%;
    max-width:100%;
    align-items:stretch;
}

.feature-card{
    min-width:0;
    width:100%;
    min-height:132px;
    max-width:100%;
    display:grid;
    grid-template-columns:38px minmax(0, 1fr) 18px;
    grid-template-rows:auto 1fr;
    grid-template-areas:
        "icon title arrow"
        "desc desc arrow";
    align-items:start;
    gap:10px 10px;
    padding:18px 14px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    overflow:hidden;
    transition:.2s;
}

.feature-card > i:first-child{
    grid-area:icon;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    margin:0;
    font-size:28px;
    color:#20334b;
}

.feature-card span{
    display:contents;
}

.feature-card strong{
    grid-area:title;
    display:block;
    margin:0;
    padding:0;
    font-size:14px;
    line-height:1.25;
    color:#071728;
    font-weight:900;
    word-break:normal;
    overflow-wrap:normal;
    hyphens:none;
}

.feature-card small{
    grid-area:desc;
    display:block;
    margin:0;
    padding:0;
    font-size:13px;
    line-height:1.55;
    color:#627187;
    font-weight:700;
    word-break:normal;
    overflow-wrap:normal;
    hyphens:none;
}

.feature-card > i:last-child{
    grid-area:arrow;
    align-self:center;
    justify-self:end;
    margin:0;
    font-size:18px;
    color:#071728;
}

.feature-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow);
}

.feature-card:hover > i:first-child,
.feature-card:hover > i:last-child,
.feature-card:hover strong{
    color:var(--orange);
}

.support-box{
    margin:22px 0 30px;
    border:1px solid var(--line);
    border-radius:16px;
    padding:20px;
    background:#f8fafc;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    max-width:100%;
}

.support-box > div{
    display:flex;
    align-items:center;
    gap:16px;
    min-width:0;
}

.support-box i{
    color:#1b3048;
    font-size:34px;
}

.support-box strong,
.support-box small{
    display:block;
}

.support-box strong{
    font-size:15px;
    font-weight:900;
}

.support-box small{
    color:#657487;
    margin-top:5px;
    font-weight:700;
}

.training-panel{
    background:linear-gradient(180deg,#061727,#08243d);
    color:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:var(--shadow);
    max-width:100%;
}

.panel-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:15px;
    margin-bottom:20px;
}

.panel-head h3{
    margin:0;
    font-size:20px;
    line-height:1.2;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:-0.02em;
}

.panel-head a{
    color:#dbe6f2;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.training-item{
    display:grid;
    grid-template-columns:58px minmax(0,1fr) auto;
    align-items:center;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.13);
}

.training-date strong{
    display:block;
    font-size:27px;
    line-height:1;
    font-weight:900;
}

.training-date span{
    display:block;
    margin-top:6px;
    color:#dbe6f2;
    font-size:12px;
    font-weight:900;
}

.training-info{
    min-width:0;
}

.training-info strong{
    display:block;
    font-size:13px;
    line-height:1.35;
    margin-bottom:5px;
    overflow-wrap:normal;
    word-break:normal;
    font-weight:900;
}

.training-info small{
    color:#c8d7e5;
    font-size:12px;
    font-weight:700;
}

.training-item > a{
    border:1px solid rgba(255,255,255,.22);
    border-radius:9px;
    padding:10px 12px;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.training-item > a:hover{
    background:var(--orange);
    border-color:var(--orange);
}

.all-trainings{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:20px;
    color:#fff;
    font-size:17px;
    line-height:1.35;
    font-weight:900;
}

.ad-box{
    position:relative;
    z-index:1;
    overflow:hidden;
    min-height:130px;
    margin-top:20px;
    border-radius:14px;
    border:1px solid var(--line);
    background:#f5f7fb;
    display:grid;
    grid-template-columns:minmax(0,1fr) 110px;
    align-items:center;
    gap:14px;
    padding:22px;
    max-width:100%;
}

.ad-box span{
    display:block;
    margin-bottom:10px;
    color:#69778a;
    font-size:12px;
    text-transform:uppercase;
    font-weight:900;
}

.ad-box strong{
    display:block;
    color:#061326;
    font-size:18px;
    line-height:1.35;
    overflow-wrap:normal;
    word-break:normal;
    font-weight:900;
}

.ad-box i{
    justify-self:center;
    color:#c3cad5;
    font-size:70px;
}

.ad-box img{
    width:105px;
    height:90px;
    object-fit:contain;
    justify-self:end;
}

.bottom-ad{
    width:340px;
    margin:0 0 28px auto;
}

.bottom-ads-row{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
    margin:30px auto 36px;
}

.bottom-ads-row .bottom-ad{
    width:100%;
    min-height:122px;
    margin:0;
}

.partners-section{
    padding:0 0 38px;
}

.partners-section h2{
    margin:8px 0 22px;
    text-align:center;
    font-size:20px;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:-0.02em;
}

.partners-row{
    display:flex;
    align-items:center;
    gap:18px;
}

.partner-arrow{
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#fff;
    color:#061326;
    cursor:pointer;
    font-size:18px;
}

.partner-arrow:hover{
    background:#f1f5f9;
    color:var(--orange);
}

.partners-track{
    flex:1;
    min-width:0;
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:18px;
    align-items:center;
}

.partner-logo{
    min-width:0;
    min-height:76px;
    display:grid;
    place-items:center;
    padding:8px;
    border-radius:12px;
    transition:.2s;
}

.partner-logo:hover{
    background:#f8fafc;
}

.partner-logo img{
    max-height:58px;
    object-fit:contain;
}

.partner-logo strong{
    color:#193957;
    font-size:18px;
    line-height:1.25;
    text-align:center;
    overflow-wrap:normal;
    word-break:normal;
    font-weight:900;
}

.site-footer{
    background:#061727;
    color:#dbe6f2;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr .75fr .9fr 1.15fr;
    gap:42px;
    padding:38px 0;
}

.footer-brand .brand-logo{
    --aa-footer-logo-height:62px;
    display:grid;
    place-items:center;
    width:min(290px,22vw);
    height:62px;
    overflow:visible;
}

.footer-brand .brand-logo img{
    width:auto;
    height:var(--aa-footer-logo-height,62px);
    max-width:100%;
    max-height:var(--aa-footer-logo-height,62px);
    object-fit:contain;
    padding:0;
}

.footer-brand .brand-logo.has-image{
    place-items:center start;
}

.footer-brand .brand-logo.has-image img{
    justify-self:start;
}

.site-footer .footer-brand{
    display:inline-flex;
    align-items:center;
    gap:0;
    margin-bottom:0;
    color:#fff;
}

.site-footer .footer-brand:hover{
    color:#fff;
}

.footer-about p{
    margin:20px 0;
    color:#aebdcc;
    line-height:1.7;
    font-size:14px;
    font-weight:600;
}

.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    color:#dbe6f2;
    font-size:16px;
}

.footer-social a:hover{
    color:var(--orange);
}

.site-footer h4{
    margin:0 0 16px;
    color:#fff;
    font-size:15px;
    text-transform:uppercase;
    font-weight:900;
}

.site-footer a{
    display:block;
    margin-bottom:9px;
    color:#b7c8d8;
    font-size:14px;
    font-weight:600;
}

.site-footer a:hover{
    color:var(--orange);
}

.site-footer p{
    margin:0 0 10px;
    color:#b7c8d8;
    line-height:1.7;
    font-size:14px;
    font-weight:600;
}

.newsletter-form{
    display:flex;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.14);
    border-radius:10px;
    background:#081f35;
}

.newsletter-form input{
    flex:1;
    min-width:0;
    height:48px;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    padding:0 14px;
}

.newsletter-form button{
    width:54px;
    border:0;
    background:var(--orange);
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.footer-newsletter-note{
    display:block;
    margin:-2px 0 14px;
    color:#9fb1c4;
    font-size:13px;
    line-height:1.45;
    font-weight:650;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.09);
    padding:16px 0;
}

.footer-bottom .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    color:#91a4b7;
    font-size:13px;
}

.footer-bottom span:last-child{
    display:flex;
    align-items:center;
    gap:20px;
}

.footer-bottom a{
    margin:0;
    color:#91a4b7;
    font-size:13px;
}

@media(max-width:1180px){
    .page-grid{
        grid-template-columns:minmax(0,1fr) 320px;
        gap:24px;
    }

    .main-nav{
        gap:20px;
    }

    .main-nav a{
        font-size:14px;
    }

    .feature-grid{
        gap:14px;
    }

    .feature-card{
        padding:16px 12px;
        min-height:142px;
    }

    .feature-card strong{
        font-size:13.5px;
    }

    .feature-card small{
        font-size:12.5px;
    }
}

@media(max-width:1080px){
    .article-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .category-strip{
        grid-template-columns:repeat(3,minmax(0,1fr)) 54px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .brand-text strong{
        font-size:19px;
    }
}

@media(max-width:1024px){
    .page-grid{
        grid-template-columns:1fr;
    }

    .main-column{
        overflow:visible;
    }

    .side-column{
        width:100%;
    }

    .bottom-ad{
        width:100%;
    }

    .feature-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .feature-card{
        min-height:130px;
        padding:18px;
    }

    .feature-card strong{
        font-size:15px;
    }

    .feature-card small{
        font-size:13px;
    }
}

@media(max-width:940px){
    .header-top-inner{
        min-height:auto;
        padding:14px 0;
        align-items:flex-start;
        flex-direction:column;
    }

    .header-tools{
        width:100%;
        justify-content:space-between;
    }

    .nav-inner{
        min-height:64px;
        position:relative;
    }

    .main-nav{
        position:absolute;
        left:0;
        right:0;
        top:100%;
        z-index:99;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 22px 18px;
        background:#081a2d;
        border-top:1px solid rgba(255,255,255,.08);
        box-shadow:0 20px 35px rgba(0,0,0,.22);
    }

    .main-nav.open{
        display:flex;
    }

    .main-nav a{
        padding:15px 0;
    }

    .main-nav a.active::after{
        bottom:5px;
    }

    .mobile-menu-btn{
        display:grid;
    }

    .partners-track{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media(max-width:720px){
    .container{
        width:min(100% - 28px,1180px);
    }

    .brand-logo{
        width:46px;
        height:46px;
    }

    .brand-text strong{
        font-size:16px;
    }

    .brand-text small{
        font-size:11px;
        white-space:normal;
    }

    .header-tools{
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
    }

    .social-links{
        gap:14px;
    }

    .nav-actions .btn{
        display:none;
    }

    .hero-slider,
    .hero-content{
        min-height:530px;
    }

    .hero-bg{
        background-position:center;
    }

    .hero-bg::after{
        background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.87));
    }

    .hero-text{
        padding:38px 0;
    }

    .hero-title-row{
        align-items:flex-start;
        margin-bottom:26px;
    }

    .hero-logo{
        width:62px;
        height:62px;
    }

    .hero-logo i{
        font-size:30px;
    }

    .hero-title-row h1{
        font-size:23px;
    }

    .hero-description{
        font-size:16px;
    }

    .hero-buttons{
        display:grid;
        align-items:stretch;
    }

    .hero-stats{
        gap:18px;
    }

    .stat-item{
        width:100%;
    }

    .category-strip,
    .article-grid,
    .feature-grid,
    .promo-row{
        grid-template-columns:1fr;
    }

    .category-next{
        min-height:64px;
    }

    .article-image{
        height:185px;
    }

    .feature-card{
        min-height:auto;
        padding:18px;
    }

    .support-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .training-item{
        grid-template-columns:54px minmax(0,1fr);
    }

    .training-item > a{
        grid-column:2;
        text-align:center;
        justify-self:start;
    }

    .ad-box{
        grid-template-columns:minmax(0,1fr) 80px;
    }

    .ad-box i{
        font-size:52px;
    }

    .ad-box img{
        width:78px;
        height:68px;
    }

    .partners-row{
        gap:8px;
    }

    .partners-track{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom .container{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom span:last-child{
        flex-wrap:wrap;
    }
}

@media(max-width:430px){
    .search-btn,
    .mobile-menu-btn{
        width:44px;
        height:44px;
    }

    .panel-head{
        flex-direction:column;
    }

    .all-trainings{
        font-size:15px;
    }
}

/* Shared Alturamedix public shell restored from the historical branded UI without builder dependencies. */
.aa-site-header{
    width:100%;
    z-index:1000;
    color:#fff;
    background:#062845;
    box-shadow:0 7px 24px rgba(2,20,37,.18);
}

.aa-site-header .aa-header-inner{
    position:relative;
    display:flex;
    align-items:center;
    gap:clamp(14px,1.7vw,28px);
    width:min(1500px,calc(100% - 58px));
    min-height:84px;
    margin-inline:auto;
}

.aa-site-header .aa-brand{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-width:max-content;
    color:#fff;
    text-decoration:none;
    flex:0 0 auto;
}

.aa-site-header .aa-brand .brand-logo{
    width:54px;
    height:54px;
    border:1px solid rgba(255,255,255,.32);
    border-radius:50%;
    background:rgba(255,255,255,.07);
    display:grid;
    place-items:center;
}

.aa-site-header .aa-brand .brand-text strong{
    color:#fff;
    font-size:18px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:0;
}

.aa-site-header .aa-brand .brand-text small{
    color:#c8d8e7;
    font-size:11px;
    font-weight:750;
    letter-spacing:0;
}

.aa-site-header .aa-main-nav{
    display:flex;
    align-self:stretch;
    align-items:center;
    justify-content:center;
    gap:clamp(14px,1.35vw,24px);
    min-width:0;
    flex:1 1 auto;
}

.aa-site-header .aa-main-nav>a,
.aa-site-header .aa-main-nav .nav-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:84px;
    margin:0;
    padding:0;
    border:0;
    background:transparent;
    color:rgba(255,255,255,.94);
    font:850 12px/1.2 var(--font-main,"Noto Sans",sans-serif);
    letter-spacing:0;
    text-decoration:none;
    white-space:nowrap;
    cursor:pointer;
}

.aa-site-header .aa-main-nav>a:hover,
.aa-site-header .aa-main-nav>a.active,
.aa-site-header .aa-main-nav .nav-link:hover,
.aa-site-header .aa-main-nav .nav-link.active{
    color:#fff;
}

@media (min-width: 921px) {
.aa-site-header .nav-has-submenu{
    position:relative;
    display:flex;
    align-self:stretch;
    align-items:center;
}

.aa-site-header .about-submenu{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    z-index:1005;
    display:grid;
    min-width:190px;
    padding:10px 12px;
    border:1px solid rgba(165,196,226,.38);
    border-radius:8px;
    background:rgba(5,29,52,.9);
    box-shadow:0 22px 46px rgba(0,0,0,.28);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(6px);
    transition:opacity .16s ease,visibility .16s ease,transform .16s ease;
}

.aa-site-header .nav-has-submenu.is-open .about-submenu,
.aa-site-header .nav-has-submenu:hover .about-submenu,
.aa-site-header .nav-has-submenu:focus-within .about-submenu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

.aa-site-header .about-submenu a{
    display:grid;
    grid-template-columns:24px minmax(0,1fr);
    gap:10px;
    align-items:center;
    min-height:44px;
    color:#fff;
    font-size:12px;
    font-weight:850;
    text-decoration:none;
}

.aa-site-header .about-submenu a:not(:last-child){
    border-bottom:1px solid rgba(255,136,28,.38);
}

.aa-site-header .about-submenu a:hover{
    color:#ff741c;
}
}

.aa-site-header .aa-nav-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
}

.aa-site-header .aa-search-button,
.aa-site-header .aa-language-current,
.aa-site-header .aa-mobile-menu-btn{
    display:grid;
    place-items:center;
    height:42px;
    min-height:42px;
    border:1px solid rgba(255,255,255,.34);
    background:rgba(3,24,44,.2);
    color:#fff;
}

.aa-site-header .aa-search-button{
    width:42px;
    min-width:42px;
    border-radius:50%;
}

.aa-site-header .aa-search-label{
    display:none;
}

.aa-site-header .aa-search-button:hover,
.aa-site-header .aa-language-current:hover,
.aa-site-header .aa-mobile-menu-btn:hover{
    border-color:rgba(255,116,28,.88);
    background:rgba(255,116,28,.14);
    color:#fff;
}

.aa-site-header .aa-language-switch{
    position:relative;
    display:inline-flex;
    align-items:center;
    min-height:42px;
}

.aa-site-header .aa-language-switch > i {
    color: #ffb36f;
    margin-right: 8px;
    font-size: 13px;
}

.aa-site-header .aa-language-current{
    position:relative;
    min-width:62px;
    padding:0 26px 0 12px;
    border-radius:8px;
    font:850 12px/1 var(--font-main,"Noto Sans",sans-serif);
    text-transform:uppercase;
    cursor:pointer;
}

.aa-site-header .aa-language-current:after{
    content:"\f078";
    position:absolute;
    right:10px;
    top:50%;
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:8px;
    color:rgba(255,255,255,.82);
    pointer-events:none;
    transform:translateY(-50%);
}

.aa-site-header .aa-language-menu{
    position:absolute;
    right:0;
    top:calc(100% + 8px);
    z-index:1006;
    display:grid;
    min-width:76px;
    padding:8px 0;
    border:1px solid rgba(165,196,226,.34);
    border-radius:8px;
    background:rgba(5,29,52,.92);
    box-shadow:0 18px 38px rgba(0,0,0,.28);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(6px);
    transition:opacity .16s ease,visibility .16s ease,transform .16s ease;
}

.aa-site-header .aa-language-switch.is-open .aa-language-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

.aa-site-header .aa-language-option{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:34px;
    padding:0 12px;
    color:#fff;
    font-size:12px;
    font-weight:850;
    text-decoration:none;
    text-transform:uppercase;
}

.aa-site-header .aa-language-option.is-active,
.aa-site-header .aa-language-option:hover{
    color:#ff741c;
}

.aa-site-header .aa-language-option-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#ff741c;
}

.aa-site-header .aa-mobile-menu-btn{
    display:none;
    width:42px;
    min-width:42px;
    border-radius:9px;
    font-size:17px;
}

.site-footer .footer-brand{
    align-items:flex-start;
    margin-bottom:14px;
}

.site-footer .footer-brand .brand-logo{
    width:44px;
    height:44px;
}

.site-footer .footer-brand .brand-text strong{
    font-size:15px;
    color:#fff;
}

.site-footer .footer-brand .brand-text small{
    color:#b7c5d4;
    font-size:10px;
}

.footer-social{
    display:flex;
    gap:9px;
    margin-top:15px;
}

.footer-social a{
    display:grid;
    place-items:center;
    width:30px;
    height:30px;
    border:1px solid rgba(255,255,255,.32);
    border-radius:50%;
    color:#fff;
    text-decoration:none;
}

.cert-page{
    padding:46px 0 66px;
    background:radial-gradient(circle at 16% 0%,rgba(255,138,28,.08),transparent 28%),linear-gradient(180deg,#f7fbff 0%,#f3f6fa 100%);
}



.cert-layout{
    margin-top:24px;
}

.cert-result-stack{
    display:grid;
    gap:18px;
}

.cert-result{
    display:grid;
    grid-template-columns:310px minmax(0,1fr);
    overflow:hidden;
    border:1px solid #dbe4ee;
    border-radius:26px;
    background:#fff;
    box-shadow:0 22px 62px rgba(7,23,40,.08);
}

.cert-result-head{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:28px;
    overflow:hidden;
    color:#fff;
    background:linear-gradient(135deg,#15803d,#16a34a);
}

.cert-result-head.expired{
    background:linear-gradient(135deg,#c65b00,#f97316);
}

.cert-result-head.revoked,
.cert-result-head.unknown{
    background:linear-gradient(135deg,#991b1b,#dc2626);
}

.cert-result-head i{
    display:grid;
    place-items:center;
    width:54px;
    height:54px;
    flex:0 0 auto;
    border-radius:17px;
    background:rgba(255,255,255,.16);
    font-size:24px;
}

.cert-result-head strong{
    display:block;
    font-size:25px;
    line-height:1.15;
    font-weight:900;
}

.cert-result-head span{
    display:inline-flex;
    margin-top:9px;
    padding:6px 10px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    background:rgba(255,255,255,.14);
    color:#fff;
    font-size:13px;
    font-weight:850;
    word-break:break-all;
}

.cert-result-body{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    padding:26px;
    background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}

.cert-row{
    display:grid;
    gap:7px;
    min-width:0;
    padding:14px 15px;
    border:1px solid #eef2f7;
    border-radius:16px;
    background:#fff;
    color:#10263a;
    font-weight:850;
}

.cert-row span{
    color:#64748b;
    font-size:12px;
    font-weight:900;
}

.cert-row b{
    font-size:15px;
    line-height:1.35;
    word-break:break-word;
}

.cert-not-found{
    padding:18px;
    border:1px solid #ffcaca;
    border-radius:18px;
    background:#fff0f0;
    color:#991b1b;
    font-weight:850;
    line-height:1.7;
}

.aa-home-content>.container{
    display:grid;
    gap:22px;
}

/* Lock body scroll when mobile menu is open */
body.mobile-menu-open{
    overflow:hidden;
}

@media(max-width:920px){
    .aa-site-header .aa-header-inner{
        min-height:70px;
        width:calc(100% - 30px);
    }

    .aa-site-header .aa-brand .brand-text strong{
        font-size:14px;
    }

    .aa-site-header .aa-brand .brand-text small{
        display:none;
    }

    .aa-site-header .aa-main-nav{
        position:absolute;
        top:100%;
        right:0;
        left:0;
        z-index:120;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        width:100%;
        max-height:calc(100vh - 70px);
        padding:8px 18px 18px;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
        border-top:1px solid rgba(255,255,255,.1);
        background:#062845;
        box-shadow:0 18px 34px rgba(0,0,0,.23);
    }

    .aa-site-header .aa-main-nav.open{
        display:flex;
    }

    .aa-site-header .aa-main-nav>a,
    .aa-site-header .aa-main-nav .nav-link{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        min-height:48px;
        padding:0 8px;
        border-bottom:1px solid rgba(255,255,255,.075);
        font-size:13px;
        line-height:1.25;
    }

    .aa-site-header .aa-main-nav>a:last-child,
    .aa-site-header .aa-main-nav .nav-has-submenu:last-child .nav-link{
        border-bottom:0;
    }

    .aa-site-header .aa-main-nav>a:after,
    .aa-site-header .aa-main-nav .nav-link:after{
        display:none;
    }

    .aa-site-header .nav-has-submenu{
        display:block;
        width:100%;
    }

    /* Submenu hidden by default, only visible when toggled via .is-open */
    .aa-site-header .about-submenu{
        position:static;
        display:none;
        grid-template-columns:1fr;
        width:100%;
        min-width:0;
        gap:0;
        margin:0 0 8px;
        padding:8px 0 8px 16px;
        border:0;
        border-left:2px solid rgba(255,138,28,.46);
        border-radius:0;
        background:transparent;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:none;
        max-width:none;
    }

    .aa-site-header .nav-has-submenu.is-open>.about-submenu{
        display:flex;
        flex-direction:column;
    }

    .aa-site-header .nav-has-submenu:not(.is-open):hover .about-submenu{
        display:none;
    }

    .aa-site-header .about-submenu a{
        width:100%;
        min-height:38px;
        display:flex;
        align-items:center;
        justify-content:flex-start;
        gap:10px;
        padding:0 0 0 12px;
        border:0;
        border-radius:10px;
        background:transparent;
        color:#cbd7e4;
        font-size:13px;
        font-weight:850;
        line-height:1.25;
        white-space:normal;
        text-align:left;
    }

    .aa-site-header .about-submenu a:hover,
    .aa-site-header .about-submenu a.active{
        color:#ff8a1c;
        background:rgba(255,138,28,.08);
    }

    .aa-site-header .aa-login-button{
        display:none;
    }

    .aa-site-header .aa-language-switch{
        display:none;
    }

    .aa-site-header .aa-mobile-menu-btn{
        display:grid;
    }

    .cert-result{
        grid-template-columns:1fr;
    }
}

@media(max-width:640px){
    .cert-page{
        padding:24px 0 46px;
    }

    .cert-result-body{
        grid-template-columns:1fr;
        padding:16px;
    }
}

/* ==========================================================================
   Unified Inner-page Hero Banner (.site-hero)
   ========================================================================== */

.site-hero {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    background: linear-gradient(90deg, #f8fbff 0%, rgba(248, 251, 255, .95) 38%, rgba(248, 251, 255, .24) 76%, rgba(248, 251, 255, .12) 100%), var(--site-hero-image, linear-gradient(135deg, #eef6fd, #d9e8f4));
    background-size: cover;
    background-position: center;
}

.site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 51% 27%, rgba(58, 137, 201, .13) 0 2px, transparent 3px), radial-gradient(circle at 59% 43%, rgba(58, 137, 201, .11) 0 2px, transparent 3px);
    background-size: 92px 92px;
    opacity: .8;
    pointer-events: none;
}

.site-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: #e1e9f1;
}

.site-hero-inner {
    position: relative;
    z-index: 1;
    padding: 42px 0 31px;
}

/* Breadcrumb Navigation */
.site-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #657991;
    font-size: 12px;
    font-weight: 800;
}

.site-breadcrumb a {
    color: #536b86;
    text-decoration: none;
}

.site-breadcrumb a:hover {
    color: #ff7418;
}

.site-breadcrumb i {
    font-size: 9px;
    color: #8495a9;
}

/* Hero Content Block */
.site-hero-copy {
    margin-top: 29px;
    max-width: 610px;
}

.site-hero-copy h1 {
    margin: 0;
    color: #102b4c;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 900;
}

.site-hero-copy p {
    margin: 14px 0 0;
    max-width: 560px;
    color: #29425f;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 650;
}

/* Adjust padding-top of all inner-page hero banners to compensate for the fixed header */
body.aa-home-page .site-hero-inner,
body.aa-home-page .articles-hero-inner {
    padding-top: calc(104px + 42px); /* 104px header + 42px original padding */
}

@media (max-width: 920px) {
    body.aa-home-page .site-hero-inner,
    body.aa-home-page .articles-hero-inner {
        padding-top: calc(76px + 42px); /* 76px header + 42px original padding */
    }
}

@media (max-width: 620px) {
    body.aa-home-page .site-hero-inner,
    body.aa-home-page .articles-hero-inner {
        padding-top: calc(76px + 28px); /* 76px header + 28px mobile padding */
    }
}

/* Make header always solid colored on all inner pages */
body.aa-home-page.about-body .aa-site-header,
body.aa-home-page.certs-body .aa-site-header,
body.aa-home-page.trainings-body .aa-site-header,
body.aa-home-page.gallery-body .aa-site-header,
body.aa-home-page.contact-body .aa-site-header,
body.aa-home-page.articles-body .aa-site-header,
body.aa-home-page.article-reader-body .aa-site-header {
    background: #062845 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}
