/* =============================================
   AULIAH GROUP — Main Stylesheet
   ============================================= */

/* --- Variables --- */
:root {
    --navy:        #0f1535;
    --navy-mid:    #1a2346;
    --green:       #3CAA45;
    --green-dark:  #2d8a36;
    --green-light: #e8f5e9;
    --red:         #D94040;
    --blue:        #1E6FBB;
    --white:       #ffffff;
    --off-white:   #f7f8fa;
    --gray-light:  #e9ecef;
    --gray:        #6c757d;
    --gray-dark:   #343a40;
    --text:        #1c2340;
    --font:        'Poppins', sans-serif;
    --radius:      8px;
    --radius-pill: 50px;
    --shadow:      0 4px 24px rgba(0,0,0,.10);
    --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
    --transition:  0.25s ease;
    --max-width:   1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 16px rgba(0,0,0,.4);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(15,21,53,.96);
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
    backdrop-filter: blur(8px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo-img { height: 44px; width: auto; object-fit: contain; }
.site-logo a { display: flex; align-items: center; }

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav-menu { display: flex; gap: 8px; align-items: center; }
.nav-menu li a {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    letter-spacing: .02em;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
    color: var(--white);
    background: rgba(255,255,255,.12);
}
.nav-menu li:last-child a {
    background: var(--green);
    color: var(--white);
    padding: 8px 20px;
}
.nav-menu li:last-child a:hover { background: var(--green-dark); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 600;
    font-size: .95rem;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    letter-spacing: .02em;
    text-align: center;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn--sm { padding: 8px 20px; font-size: .85rem; }

/* Section Pills */
.section-pill {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.section-pill--right { float: right; }
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 72px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-bg--default {
    background: linear-gradient(135deg, #1a2346 0%, #0d1a2e 40%, #1a2e1a 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,16,42,.88) 0%,
        rgba(10,16,42,.65) 60%,
        rgba(10,16,42,.3) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 40px;
    padding-bottom: 80px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.01em;
}
.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.82);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

/* =============================================
   OUR BRANDS SECTION
   ============================================= */
.brands-section {
    padding: 80px 0;
    background: var(--white);
}
.brands-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.brands-intro__right {
    padding-top: 12px;
}
.brands-intro__right p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 16px;
}
.brands-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0 20px;
}
.brand-logo-item {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border: 1px solid var(--gray-light);
    transition: box-shadow var(--transition), transform var(--transition);
}
.brand-logo-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-logo-item img { max-height: 40px; width: auto; object-fit: contain; filter: grayscale(30%); transition: filter var(--transition); }
.brand-logo-item:hover img { filter: grayscale(0%); }
.brands-view-all {
    font-size: .9rem;
    font-weight: 600;
    color: var(--green);
    border-bottom: 2px solid var(--green);
    padding-bottom: 2px;
    transition: color var(--transition);
}
.brands-view-all:hover { color: var(--green-dark); border-color: var(--green-dark); }

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section {
    padding: 80px 0;
    background: var(--off-white);
}
.news-header { overflow: hidden; margin-bottom: 32px; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    clear: both;
}
.news-card {
    border-radius: 12px;
    padding: 36px 28px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.12);
    opacity: 0;
    transition: opacity var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card:hover::before { opacity: 1; }
.news-card--red   { background: linear-gradient(135deg, #D94040 0%, #b52e2e 100%); }
.news-card--green { background: linear-gradient(135deg, #3CAA45 0%, #2d8a36 100%); }
.news-card--blue  { background: linear-gradient(135deg, #1E6FBB 0%, #14518f 100%); }
.news-card__icon { font-size: 2.2rem; margin-bottom: 16px; opacity: .85; }
.news-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.news-card__desc { font-size: .9rem; opacity: .88; flex: 1; line-height: 1.6; margin-bottom: 20px; }
.news-card__link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    opacity: .9;
    letter-spacing: .02em;
    align-self: flex-start;
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding-bottom: 2px;
    transition: opacity var(--transition);
}
.news-card__link:hover { opacity: 1; }

/* =============================================
   PEOPLE SECTION
   ============================================= */
.people-section {
    padding: 80px 0;
    background: var(--white);
}
.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.people-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.people-card__img-wrap {
    position: relative;
    padding-top: 70%;
    background: var(--gray-light);
    overflow: hidden;
}
.people-card__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.people-card:hover .people-card__img-wrap img { transform: scale(1.06); }
.people-card__img-wrap--placeholder { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }
.people-card__title {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

/* People CTA Boxes */
.people-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.people-cta-box {
    background: var(--green);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background var(--transition), transform var(--transition);
}
.people-cta-box:hover { background: var(--green-dark); transform: translateY(-4px); }
.people-cta-box__title { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.people-cta-box__link {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color var(--transition);
}
.people-cta-box__link:hover { color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}
.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
}
.footer-address { font-style: normal; line-height: 1.8; font-size: .9rem; }
.footer-address a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-address a:hover { color: var(--green); }
.footer-col p { font-size: .9rem; line-height: 1.8; }
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-nav-menu { display: flex; flex-direction: column; gap: 6px; }
.footer-nav-menu a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-nav-menu a:hover { color: var(--green); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding-top: 72px;
    overflow: hidden;
}
.page-hero--brands {
    background: url('../images/brands-hero-bg.jpg') center/cover no-repeat;
    background-color: var(--navy-mid);
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,16,42,.85) 0%, rgba(10,16,42,.3) 100%);
}
.page-hero__content { position: relative; z-index: 2; padding-bottom: 48px; }
.page-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

/* =============================================
   BRANDS PAGE
   ============================================= */
.brands-page-section { padding: 64px 0 80px; }
.brands-page-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}
.brand-tree { text-align: center; margin-bottom: 48px; }
.brand-tree__root, .brand-tree__master {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}
.brand-node {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--white);
    box-shadow: var(--shadow);
    min-width: 160px;
}
.brand-node--corporate { border-color: var(--green); }
.brand-node--master { border-color: var(--navy); }
.brand-node__logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 8px; }
.brand-node__label { font-weight: 700; font-size: 1rem; color: var(--text); }
.brand-node__sub { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; }

.brand-categories { display: flex; flex-direction: column; gap: 48px; }
.brand-category__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}
.brand-category__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.brand-card {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.brand-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--green); }
.brand-card__icon { font-size: 1.6rem; color: var(--green); }
.brand-card__logo { max-height: 48px; width: auto; object-fit: contain; }
.brand-card__name { font-weight: 600; font-size: .95rem; color: var(--text); }
.brand-card__desc { font-size: .8rem; color: var(--gray); }

/* Products grid */
.brand-category__grid--products { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.product-chip {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.product-chip:hover { border-color: var(--green); box-shadow: var(--shadow); }
.product-chip__cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green); font-weight: 700; }
.product-chip__name { font-size: .9rem; font-weight: 500; color: var(--text); }

/* =============================================
   ABOUT / LEADERSHIP PAGE
   ============================================= */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
    margin-top: 72px;
}
.about-hero__text {
    background: var(--navy);
    color: var(--white);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.about-hero__logo { height: 36px; width: auto; object-fit: contain; margin-bottom: 8px; filter: brightness(0) invert(1); }
.about-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
}
.about-hero__body { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.8; }
.about-hero__signature {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.about-hero__signature strong { color: var(--white); font-weight: 700; font-size: 1.05rem; }
.about-hero__signature span { color: rgba(255,255,255,.6); font-size: .88rem; }
.about-hero__image { overflow: hidden; }
.about-hero__photo { width: 100%; height: 100%; object-fit: cover; }
.about-hero__photo--placeholder { background: linear-gradient(135deg, #2a6a35, #1a3a42); }

/* Numbers Section */
.numbers-section {
    background: var(--green);
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 64px;
    gap: 48px;
    align-items: center;
}
.numbers-section__label h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}
.numbers-section__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-item__value { font-size: 2.2rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.stat-item__label { font-size: .82rem; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }

/* Profit Section */
.profit-section { padding: 80px 0; background: var(--off-white); }
.profit-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.profit-summary__title { font-size: 2.2rem; font-weight: 900; color: var(--text); font-style: italic; line-height: 1.2; margin-bottom: 12px; }
.profit-summary__value { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.profit-summary__value span { font-size: 1.2rem; font-weight: 500; display: block; color: var(--gray); margin-top: 4px; }
.profit-summary__growth { font-size: .9rem; color: var(--green); font-weight: 600; margin-top: 12px; }
.profit-chart-wrap canvas { width: 100% !important; height: 260px !important; }
.profit-chart-legend { display: flex; gap: 20px; font-size: .85rem; margin-top: 12px; color: var(--gray-dark); }
.legend-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; vertical-align: middle; margin-right: 4px; }
.legend-dot--green { background: var(--green); }
.legend-dot--red   { background: var(--red); }

/* =============================================
   BLOG / ARCHIVE
   ============================================= */
.archive-main { padding: 100px 0 80px; }
.archive-title { font-size: 2rem; font-weight: 800; margin-bottom: 40px; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.post-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card__img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__img { transform: scale(1.06); }
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.post-card__date { font-size: .8rem; color: var(--gray); font-weight: 500; }
.post-card__title { font-size: 1.1rem; font-weight: 700; line-height: 1.4; }
.post-card__title a:hover { color: var(--green); }
.post-card__excerpt { font-size: .9rem; color: var(--gray-dark); line-height: 1.6; flex: 1; }
.no-posts { text-align: center; color: var(--gray); padding: 60px 0; font-size: 1.1rem; }
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.page-numbers { display: flex; gap: 8px; }
.page-numbers a, .page-numbers span {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text);
    border: 1px solid var(--gray-light);
    transition: all var(--transition);
}
.page-numbers a:hover, .page-numbers span.current { background: var(--green); color: var(--white); border-color: var(--green); }

/* =============================================
   DEFAULT PAGE (page.php)
   ============================================= */
.page-main { padding: 100px 0 80px; }
.page-article__header { margin-bottom: 32px; }
.page-article__title { font-size: 2.2rem; font-weight: 800; }
.page-thumbnail { margin-bottom: 36px; border-radius: 12px; overflow: hidden; }
.page-thumbnail__img { width: 100%; height: auto; }
.entry-content p { margin-bottom: 16px; line-height: 1.8; }
.entry-content h2 { font-size: 1.6rem; font-weight: 700; margin: 32px 0 16px; }
.entry-content h3 { font-size: 1.3rem; font-weight: 600; margin: 24px 0 12px; }

/* =============================================
   SINGLE POST
   ============================================= */
.single-main { padding: 100px 0 80px; }
.single-thumbnail { border-radius: 12px; overflow: hidden; margin-bottom: 36px; }
.single-thumbnail__img { width: 100%; height: auto; }
.single-article__header { margin-bottom: 32px; }
.single-article__meta { font-size: .85rem; color: var(--gray); margin-bottom: 12px; display: flex; gap: 8px; align-items: center; }
.single-article__title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }
.single-article__footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--gray-light); }

/* =============================================
   ABOUT CONTENT
   ============================================= */
.about-content { padding: 64px 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media ( max-width: 1024px ) {
    .brands-intro { grid-template-columns: 1fr; gap: 40px; }
    .brands-logos-grid { grid-template-columns: repeat(4, 1fr); }
    .numbers-section { grid-template-columns: 1fr; padding: 48px 32px; }
    .numbers-section__stats { grid-template-columns: repeat(2, 1fr); }
    .profit-inner { grid-template-columns: 1fr; }
    .about-hero { grid-template-columns: 1fr; }
    .about-hero__image { min-height: 320px; }
}

@media ( max-width: 768px ) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--navy);
        padding: 16px 24px 32px;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform .3s ease, opacity .3s ease;
        box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }
    .primary-nav.nav-open { transform: translateY(0); opacity: 1; }
    .nav-menu { flex-direction: column; gap: 4px; align-items: stretch; }
    .nav-menu li a { display: block; padding: 12px 16px; border-radius: var(--radius); }
    .news-grid { grid-template-columns: 1fr; }
    .people-grid { grid-template-columns: 1fr; }
    .people-cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .brand-categories { gap: 32px; }
    .about-hero__text { padding: 40px 28px; }
    .numbers-section { padding: 40px 24px; gap: 32px; }
    .numbers-section__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .posts-grid { grid-template-columns: 1fr; }
    .section-pill--right { float: none; display: block; margin-bottom: 24px; }
    .news-header { margin-bottom: 16px; }
}

@media ( max-width: 480px ) {
    .hero-title { font-size: 1.8rem; }
    .brands-logos-grid { grid-template-columns: repeat(2, 1fr); }
    .numbers-section__stats { grid-template-columns: repeat(2, 1fr); }
    .stat-item__value { font-size: 1.8rem; }
    .brand-category__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease both; }
.fade-in-up--delay1 { animation-delay: .15s; }
.fade-in-up--delay2 { animation-delay: .3s; }
.fade-in-up--delay3 { animation-delay: .45s; }

/* Intersection Observer classes */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
