:root {
    --aogfc-brand-primary: #0758b8;
    --aogfc-brand-secondary: #0789d6;
    --aogfc-brand-accent: #ed1c24;
    --aogfc-blue: var(--aogfc-brand-primary);
    --aogfc-blue-dark: #003f86;
    --aogfc-blue-deep: #062a5d;
    --aogfc-blue-soft: #eaf5ff;
    --aogfc-red: var(--aogfc-brand-accent);
    --aogfc-red-dark: #b80f18;
    --aogfc-red-soft: #fff1f2;
    --aogfc-green: var(--aogfc-blue);
    --aogfc-green-dark: var(--aogfc-blue-dark);
    --aogfc-green-soft: var(--aogfc-blue-soft);
    --aogfc-leaf: var(--aogfc-red);
    --aogfc-leaf-dark: var(--aogfc-red-dark);
    --aogfc-leaf-soft: var(--aogfc-red-soft);
    --aogfc-text: #1d1d1d;
    --aogfc-muted: #6b7280;
    --aogfc-border: #c9e3f8;
    --aogfc-container: 1350px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--aogfc-text);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.55;
    background: #fff;
}
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; height: auto; display: block; }
.aogfc-container { width: min(var(--aogfc-container), calc(100% - 48px)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.aogfc-site-header { position: sticky; top: 0; z-index: 90; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.14); }
.aogfc-header-top { background: var(--aogfc-green-soft); color: var(--aogfc-green-dark); }
.aogfc-header-top__inner { height: 101px; display: grid; grid-template-columns: 410px 385px 1fr auto; align-items: center; gap: 42px; }
.aogfc-logo img { width: 218px; max-height: 78px; object-fit: contain; }
@media (min-width: 1025px) {
    .aogfc-logo img { transform: scale(1.2); transform-origin: left center; }
}
.aogfc-search { display: flex; align-items: center; width: 100%; }
.aogfc-search input { width: 100%; height: 40px; border: 2px solid #fff; border-right: 0; border-radius: 22px 0 0 22px; padding: 0 16px; outline: 0; font-size: 15px; }
.aogfc-search button { height: 40px; border: 2px solid #fff; border-left: 0; background: var(--aogfc-green); color: #fff; min-width: 48px; border-radius: 0 22px 22px 0; display: grid; place-items: center; cursor: pointer; }
.aogfc-header-contact { display: flex; align-items: center; justify-content: flex-end; gap: 34px; }
.aogfc-contact-pill { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--aogfc-green-dark); white-space: nowrap; }
.aogfc-contact-pill > span { width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--aogfc-green); display: grid; place-items: center; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(0,91,184,.14); }
.aogfc-contact-pill strong { display: block; font-size: 19px; line-height: 1; text-transform: uppercase; }
.aogfc-contact-pill small { display: block; margin-top: 7px; font-size: 15px; line-height: 1; font-weight: 700; }
.aogfc-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(0,63,134,.35); background: transparent; color: var(--aogfc-green-dark); border-radius: 6px; font-size: 25px; }

.aogfc-main-nav { border-bottom: 1px solid var(--aogfc-border); background: #fff; }
.aogfc-menu { margin: 0; padding: 0; list-style: none; display: flex; justify-content: center; align-items: center; min-height: 63px; }
.aogfc-menu > li { position: relative; flex: 0 0 auto; }
.aogfc-menu > li + li::before { display: none; }
.aogfc-menu > li > a { display: block; padding: 18px 28px; font-size: 20px; line-height: 1.2; text-transform: uppercase; font-weight: 900; white-space: nowrap; }
.aogfc-menu > li:hover > a { color: var(--aogfc-green); }
.aogfc-menu > .menu-item-has-children > a::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 7px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: translateY(-3px) rotate(45deg); }
.aogfc-mega { position: absolute; left: 50%; top: 100%; transform: translateX(-50%) translateY(12px); width: min(920px, calc(100vw - 48px)); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 24px; background: #fff; border: 1px solid var(--aogfc-border); box-shadow: 0 18px 45px rgba(0,0,0,.18); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; }
.has-mega.is-open .aogfc-mega { opacity: 0; visibility: hidden; pointer-events: none; }
.aogfc-mega h3 { margin: 0 0 10px; color: var(--aogfc-green); font-size: 17px; text-transform: uppercase; }
.aogfc-mega a { display: block; padding: 5px 0; color: #333; font-size: 14px; }
.aogfc-mega a:hover { color: var(--aogfc-green); }

.aogfc-hero { min-height: 700px; position: relative; display: grid; place-items: center; overflow: hidden; background: #070707; color: #fff; text-align: center; }
.aogfc-hero--image-only { aspect-ratio: 2400 / 804; min-height: 0; display: block; background: #fff; }
.aogfc-hero__slides { position: absolute; inset: 0; }
.aogfc-hero--image-only .aogfc-hero__slides { position: static; height: 100%; }
.aogfc-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.aogfc-hero--image-only .aogfc-hero__bg { opacity: 0; object-fit: cover; transition: opacity .6s ease; }
.aogfc-hero__bg.is-active, .aogfc-hero:not(.aogfc-hero--slider) .aogfc-hero__bg { opacity: .62; }
.aogfc-hero--image-only .aogfc-hero__bg.is-active, .aogfc-hero--image-only:not(.aogfc-hero--slider) .aogfc-hero__bg { opacity: 1; }
.aogfc-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(0,0,0,.14), rgba(0,0,0,.62)); }
.aogfc-hero--image-only::after { display: none; }
.aogfc-hero__content { position: relative; z-index: 1; width: min(760px, calc(100% - 32px)); margin-top: -20px; }
.aogfc-hero h1 { margin: 0 0 14px; font-size: clamp(30px, 3vw, 43px); line-height: 1.1; font-weight: 900; text-transform: uppercase; }
.aogfc-hero p { margin: 0 auto 26px; max-width: 720px; font-weight: 800; }
.aogfc-hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.aogfc-slider-dots { position: absolute; z-index: 2; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; gap: 10px; }
.aogfc-slider-dots span { width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; opacity: .8; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.aogfc-slider-dots span.is-active, .aogfc-slider-dots span:first-child { background: #fff; }
.aogfc-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 22px; border-radius: 6px; background: var(--aogfc-green); color: #fff; font-weight: 900; text-transform: uppercase; font-size: 14px; border: 2px solid var(--aogfc-green); }
.aogfc-btn:hover { background: var(--aogfc-green-dark); transform: translateY(-1px); }
.aogfc-btn--ghost { background: transparent; border-color: #fff; }
.aogfc-btn--light { background: #fff; color: var(--aogfc-green); border-color: #fff; }

.aogfc-benefits { background: #fff; padding: 36px 0 34px; }
.aogfc-benefits__grid { display: grid; grid-template-columns: 240px repeat(4, 1fr); gap: 16px; align-items: stretch; }
.aogfc-benefits__cta { background: var(--aogfc-green); color: #fff; border-radius: 10px; padding: 28px 22px; text-align: center; display: grid; align-content: center; }
.aogfc-benefits__cta h2 { margin: 0 0 18px; font-size: 22px; line-height: 1.35; }
.aogfc-benefit-card { text-align: center; padding: 0 20px 24px; border-left: 1px solid var(--aogfc-border); }
.aogfc-benefit-card__icon { min-height: 72px; color: var(--aogfc-green); font-size: 58px; line-height: 1; }
.aogfc-benefit-card__image { width: 100%; aspect-ratio: 1.45; object-fit: cover; border-radius: 8px; margin-bottom: 18px; box-shadow: 0 8px 22px rgba(0,63,134,.12); }
.aogfc-benefit-card h3 { margin: 10px 0; font-size: 19px; }
.aogfc-benefit-card p { margin: 0; font-size: 14px; color: #333; }

.aogfc-category-showcase { padding: 0 0 66px; }
.aogfc-category-showcase__grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 22px; }
.aogfc-video-card, .aogfc-category-card { position: relative; overflow: hidden; border-radius: 8px; min-height: 244px; background: var(--aogfc-green); }
.aogfc-video-card { min-height: 514px; }
.aogfc-video-card img, .aogfc-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.aogfc-video-card:hover img, .aogfc-category-card:hover img { transform: scale(1.04); }
.aogfc-video-card span { position: absolute; inset: auto auto 45% 45%; width: 62px; height: 62px; border: 3px solid #fff; border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: 24px; }
.aogfc-category-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.aogfc-category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,91,184,0) 20%, rgba(0,63,134,.9) 100%); }
.aogfc-category-card span { position: absolute; z-index: 1; left: 0; right: 0; bottom: 32px; text-align: center; color: #fff; font-size: 20px; font-weight: 900; text-transform: uppercase; }

.aogfc-section-head { text-align: center; margin: 20px auto 34px; max-width: 920px; }
.aogfc-section-head h2, .aogfc-lined-title { position: relative; margin: 0 0 16px; text-align: center; font-size: 25px; text-transform: uppercase; font-weight: 900; }
.aogfc-section-head p { margin: 0 auto; color: #333; max-width: 900px; }
.aogfc-featured-products { padding: 68px 0 58px; }
.aogfc-product-section { margin-top: 32px; }
.aogfc-product-section__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 16px; }
.aogfc-product-section__head h3 { color: var(--aogfc-green); font-size: 22px; margin: 0; text-transform: uppercase; }
.aogfc-product-section__nav { display: none; align-items: center; gap: 8px; }
.aogfc-product-section__nav button { width: 38px; height: 38px; border: 1px solid var(--aogfc-border); border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 25px; line-height: 1; cursor: pointer; }
.aogfc-product-section__nav button:hover { background: var(--aogfc-green); color: #fff; }
.aogfc-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.aogfc-product-card { border: 1px solid var(--aogfc-border); background: #fff; transition: box-shadow .25s ease, transform .25s ease; overflow: hidden; }
.aogfc-product-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.12); transform: translateY(-3px); }
.aogfc-product-card__image { display: block; aspect-ratio: 3 / 4; overflow: hidden; background: #f5f5f5; }
.aogfc-product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.aogfc-product-card:hover img { transform: scale(1.04); }
.aogfc-product-card__body { padding: 13px 13px 16px; text-align: center; }
.aogfc-product-card__cat { display: inline-block; margin-bottom: 7px; color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-product-card h3 { margin: 0 0 8px; font-size: 15px; line-height: 1.35; font-weight: 900; min-height: 41px; }
.aogfc-product-card p { margin: 0 0 10px; color: #515b56; font-size: 13px; line-height: 1.45; }
.aogfc-product-card__price { display: inline-flex; min-height: 28px; align-items: center; padding: 0 12px; border-radius: 999px; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-size: 13px; font-weight: 900; }
.aogfc-center { text-align: center; margin-top: 26px; }

.aogfc-process { padding: 55px 0; background: var(--aogfc-green); color: #fff; }
.aogfc-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.aogfc-process article { display: grid; grid-template-columns: 45px minmax(0, 1fr); column-gap: 14px; align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 8px; padding: 24px; }
.aogfc-process span { width: 45px; height: 45px; border-radius: 50%; background: #fff; color: var(--aogfc-green); display: grid; place-items: center; font-weight: 900; font-size: 24px; }
.aogfc-process h3 { margin: 0; line-height: 1.25; text-transform: uppercase; }
.aogfc-process p { grid-column: 1 / -1; margin-top: 16px; }

.aogfc-why-detail { padding: 58px 0; background: #fff; }
.aogfc-why-detail__panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center; padding: 24px; border-radius: 8px; background: #fff; box-shadow: 0 10px 34px rgba(0,63,134,.08); }
.aogfc-why-detail__list { display: grid; }
.aogfc-why-detail__item { display: grid; grid-template-columns: 74px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-why-detail__item:first-child { padding-top: 0; }
.aogfc-why-detail__item:last-child { border-bottom: 0; padding-bottom: 0; }
.aogfc-why-detail__number { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--aogfc-green); color: #fff; font-size: 34px; line-height: 1; font-weight: 900; font-family: Arial, sans-serif; }
.aogfc-why-detail__item h3 { margin: 0 0 7px; color: var(--aogfc-text); font-size: 18px; text-transform: uppercase; }
.aogfc-why-detail__item p { margin: 0; color: #333; font-size: 16px; line-height: 1.7; }
.aogfc-why-detail__media { margin: 0; }
.aogfc-why-detail__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; }
.aogfc-blog-archive { background: #fff; }
.aogfc-blog-hero { position: relative; padding: 44px 0 34px; background: #fff; border-bottom: 10px solid var(--aogfc-green-dark); overflow: hidden; }
.aogfc-blog-hero .aogfc-breadcrumb, .aogfc-single-hero .aogfc-breadcrumb { margin-bottom: 18px; }
.aogfc-blog-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 420px; height: 92px; border-radius: 0 0 0 8px; background: var(--aogfc-green-dark); box-shadow: 0 18px 38px rgba(0,63,134,.16); }
.aogfc-blog-hero .aogfc-container { position: relative; z-index: 1; }
.aogfc-blog-hero__content { max-width: 1180px; padding-left: 30px; border-left: 4px solid var(--aogfc-green); }
.aogfc-eyebrow { margin: 0 0 8px; color: var(--aogfc-green); font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.aogfc-blog-hero h1 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.18; text-transform: none; color: #111; }
.aogfc-blog-hero p:last-child { margin: 18px 0 0; max-width: 1120px; color: #222; font-size: 17px; line-height: 1.7; }
.aogfc-blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 318px; gap: 32px; align-items: start; padding: 38px 0 0; }
.aogfc-blog-main { min-width: 0; }
.aogfc-featured-post { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); margin-bottom: 26px; overflow: hidden; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 18px 38px rgba(0,63,134,.08); }
.aogfc-featured-post__image { min-height: 350px; background: var(--aogfc-blue-soft); overflow: hidden; }
.aogfc-featured-post__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.aogfc-featured-post:hover .aogfc-featured-post__image img { transform: scale(1.035); }
.aogfc-featured-post__body { display: flex; flex-direction: column; justify-content: flex-start; padding: 28px 30px; }
.aogfc-post-badge { width: fit-content; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-featured-post h2 { margin: 0 0 12px; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.18; color: var(--aogfc-text); }
.aogfc-featured-post h2 a:hover { color: var(--aogfc-green); }
.aogfc-featured-post p { margin: 12px 0 0; color: #465668; font-size: 16px; line-height: 1.65; }
.aogfc-post-meta, .aogfc-post-card__meta, .aogfc-single-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: var(--aogfc-green-dark); font-weight: 850; font-size: 13px; }
.aogfc-post-meta span::before, .aogfc-post-card__meta span::before, .aogfc-single-meta span + span::before { content: ''; display: inline-block; width: 5px; height: 5px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--aogfc-green); }
.aogfc-read-more, .aogfc-post-card__more { width: fit-content; margin-top: 18px; color: var(--aogfc-green); font-weight: 900; text-transform: uppercase; font-size: 13px; }
.aogfc-read-more::after, .aogfc-post-card__more::after { content: '›'; margin-left: 7px; font-size: 18px; line-height: 0; }
.aogfc-read-more:hover, .aogfc-post-card__more:hover { color: var(--aogfc-green-dark); transform: translateX(2px); }
.aogfc-post-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.aogfc-post-card { border-radius: 8px; box-shadow: 0 10px 24px rgba(0,63,134,.06); }
.aogfc-post-card__image { aspect-ratio: 1.48; }
.aogfc-post-card__image img, .aogfc-post-card > img { aspect-ratio: 1.48; transition: transform .35s ease; }
.aogfc-post-card:hover img { transform: scale(1.04); }
.aogfc-post-card__body { padding: 18px; }
.aogfc-post-card__cat { display: inline-flex; margin-bottom: 9px; color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-post-card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.35; min-height: 48px; }
.aogfc-post-card h3 a:hover { color: var(--aogfc-green); }
.aogfc-post-card p { margin: 12px 0 0; color: #5f6b7a; font-size: 14px; line-height: 1.6; }
.aogfc-blog-sidebar, .aogfc-single-post__sidebar { position: sticky; top: 148px; display: grid; gap: 18px; }
.aogfc-sidebar-block, .aogfc-sidebar-cta { border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; padding: 22px; box-shadow: 0 12px 28px rgba(0,63,134,.06); }
.aogfc-sidebar-block h3, .aogfc-sidebar-cta h3 { margin: 0 0 14px; color: var(--aogfc-green-dark); text-transform: uppercase; font-size: 18px; line-height: 1.25; }
.aogfc-sidebar-block--compact { padding: 20px; }
.aogfc-category-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.aogfc-category-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 7px; background: var(--aogfc-blue-soft); color: #26384d; font-weight: 850; }
.aogfc-category-list small { min-width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--aogfc-green); font-size: 12px; font-weight: 900; }
.aogfc-category-list .is-active a, .aogfc-category-list a:hover { background: var(--aogfc-green); color: #fff; box-shadow: 0 8px 18px rgba(0,91,184,.18); }
.aogfc-category-list .is-active small, .aogfc-category-list a:hover small { color: var(--aogfc-green-dark); }
.aogfc-sidebar-cta { background: var(--aogfc-green-dark); color: #fff; }
.aogfc-sidebar-cta h3, .aogfc-sidebar-cta p { color: #fff; }
.aogfc-sidebar-cta p { margin: 0 0 16px; line-height: 1.65; }
.aogfc-sidebar-cta .aogfc-btn { background: #fff; color: var(--aogfc-green); border-color: #fff; cursor: pointer; }
.aogfc-single-post { padding: 0 0 58px; background: linear-gradient(180deg, var(--aogfc-blue-soft) 0%, #fff 420px); }
.aogfc-single-hero { padding: 40px 0 34px; background: var(--aogfc-blue-soft); border-bottom: 1px solid var(--aogfc-border); }
.aogfc-single-hero__copy { max-width: 980px; }
.aogfc-single-hero h1 { margin: 0 0 14px; max-width: 980px; color: var(--aogfc-green-dark); font-size: clamp(32px, 4.3vw, 56px); line-height: 1.08; letter-spacing: 0; }
.aogfc-single-hero__copy > p { margin: 0 0 18px; max-width: 820px; color: #405267; font-size: 18px; line-height: 1.65; }
.aogfc-single-post__layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; padding-top: 34px; }
.aogfc-single-post__main { min-width: 0; }
.aogfc-single-thumb-wrap { margin: 0 0 26px; overflow: hidden; border-radius: 8px; border: 1px solid var(--aogfc-border); background: var(--aogfc-blue-soft); box-shadow: 0 18px 38px rgba(0,63,134,.08); }
.aogfc-single-thumb { width: 100%; max-height: 540px; object-fit: cover; margin: 0; border-radius: 0; }
.aogfc-single-post__content { margin-top: 0; padding: 34px 38px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 14px 32px rgba(0,63,134,.055); color: #273445; font-size: 18px; line-height: 1.82; }
.aogfc-content-body.aogfc-single-post__content { margin-top: 0; font-size: 18px; line-height: 1.82; }
.aogfc-single-post__content > *:first-child { margin-top: 0; }
.aogfc-single-post__content h2, .aogfc-single-post__content h3 { color: var(--aogfc-green-dark); line-height: 1.25; }
.aogfc-single-post__content h2 { margin: 34px 0 12px; font-size: 28px; }
.aogfc-single-post__content h3 { margin: 26px 0 10px; font-size: 22px; }
.aogfc-single-post__content p { margin: 0 0 18px; }
.aogfc-single-post__content ul, .aogfc-single-post__content ol { padding-left: 24px; margin: 0 0 20px; }
.aogfc-single-post__content li { margin-bottom: 8px; }
.aogfc-single-post__content blockquote { margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--aogfc-green); background: var(--aogfc-blue-soft); border-radius: 0 8px 8px 0; color: var(--aogfc-green-dark); font-weight: 800; }
.aogfc-single-post__content img { border-radius: 8px; margin: 22px 0; }
.aogfc-related-list { display: grid; gap: 12px; }
.aogfc-related-link { display: grid; grid-template-columns: 74px 1fr; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-related-link:last-child { padding-bottom: 0; border-bottom: 0; }
.aogfc-related-link img, .aogfc-related-link__placeholder { width: 74px; height: 58px; object-fit: cover; border-radius: 6px; background: var(--aogfc-blue-soft); }
.aogfc-related-link strong { display: block; color: #203047; font-size: 14px; line-height: 1.35; }
.aogfc-related-link small { display: block; margin-top: 5px; color: var(--aogfc-green); font-weight: 850; }
.aogfc-related-link:hover strong { color: var(--aogfc-green); }
.aogfc-sidebar-cta--single { overflow: hidden; }
.aogfc-gallery, .aogfc-news-section, .aogfc-contact-section, .aogfc-text-image, .aogfc-faq, .aogfc-archive, .aogfc-page, .aogfc-single, .aogfc-single-product { padding: 58px 0; }
.aogfc-gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center; }
.aogfc-gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; border: 1px solid var(--aogfc-border); background: #fff; }
.aogfc-gallery--logos .aogfc-gallery-grid img { aspect-ratio: 245 / 113; object-fit: contain; padding: 12px; }
.aogfc-gallery--certificates { background: var(--aogfc-green); color: #fff; }
.aogfc-gallery--certificates .aogfc-gallery-grid { grid-template-columns: repeat(5, 1fr); }

.aogfc-post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.aogfc-news-section__head { display: grid; gap: 12px; justify-items: center; margin-bottom: 34px; }
.aogfc-news-section__head .aogfc-lined-title { margin-bottom: 0; }
.aogfc-news-section__nav { display: none; align-items: center; gap: 8px; }
.aogfc-news-section__nav button { width: 38px; height: 38px; border: 1px solid var(--aogfc-border); border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 25px; line-height: 1; cursor: pointer; }
.aogfc-news-section__nav button:hover { background: var(--aogfc-green); color: #fff; }
.aogfc-post-card { border: 1px solid var(--aogfc-border); background: #fff; transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; border-radius: 8px; box-shadow: 0 10px 24px rgba(0,63,134,.06); }
.aogfc-post-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,63,134,.12); }
.aogfc-post-card__image { display: block; aspect-ratio: 1.48; overflow: hidden; background: #f5f5f5; }
.aogfc-post-card__image img, .aogfc-post-card > img { width: 100%; aspect-ratio: 1.48; object-fit: cover; transition: transform .35s ease; }
.aogfc-post-card__body { padding: 18px; }
.aogfc-post-card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.35; min-height: 48px; }
.aogfc-post-card time, .aogfc-post-meta { color: var(--aogfc-green); font-weight: 800; font-size: 13px; }
.aogfc-post-card p { margin: 12px 0 0; color: #5f6b7a; font-size: 14px; line-height: 1.6; }

.aogfc-post-grid.aogfc-post-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.aogfc-contact-box { background: var(--aogfc-blue-soft); border: 1px solid var(--aogfc-border); border-radius: 8px; padding: 36px; text-align: center; }
.aogfc-contact-box h2 { margin: 0 0 8px; text-transform: uppercase; color: var(--aogfc-green); }
.aogfc-lead-form { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 12px; margin-top: 22px; }
.aogfc-lead-form input { height: 44px; border: 1px solid #cfe0ec; border-radius: 4px; padding: 0 14px; }
.aogfc-lead-form button { border: 0; border-radius: 4px; background: var(--aogfc-green); color: #fff; font-weight: 900; padding: 0 18px; cursor: pointer; }

.aogfc-page-title { margin: 0 0 15px; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; color: var(--aogfc-green); text-transform: uppercase; }
.aogfc-page-intro { max-width: 860px; color: #444; }
.aogfc-breadcrumb { margin-bottom: 18px; font-size: 14px; color: var(--aogfc-muted); }
.aogfc-breadcrumb a { color: var(--aogfc-green); font-weight: 800; }
.aogfc-product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding: 4px 0 24px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-product-toolbar .aogfc-breadcrumb { margin: 0; font-size: 20px; text-transform: uppercase; color: #111; }
.aogfc-product-toolbar .aogfc-breadcrumb a { color: #111; font-weight: 400; }
.aogfc-product-toolbar .aogfc-breadcrumb span:last-child { font-weight: 900; }
.aogfc-product-toolbar__actions { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.aogfc-product-toolbar__actions p { margin: 0; color: #111; font-size: 17px; }
.aogfc-product-sort select { min-width: 255px; height: 48px; padding: 0 44px 0 16px; border: 1px solid #d8e0ea; border-radius: 0; background: #fff; color: #1f2937; font: inherit; font-size: 16px; cursor: pointer; }
.aogfc-product-sort select:focus { outline: 2px solid rgba(0,91,184,.18); border-color: var(--aogfc-green); }
.aogfc-layout { display: grid; grid-template-columns: 280px 1fr; gap: 34px; align-items: start; }
.aogfc-sidebar { border: 1px solid var(--aogfc-border); border-radius: 6px; padding: 18px; background: #fff; position: sticky; top: 150px; }
.aogfc-sidebar h3 { margin-top: 0; color: var(--aogfc-green); text-transform: uppercase; font-size: 18px; }
.aogfc-sidebar ul { list-style: none; padding: 0; margin: 0; }
.aogfc-sidebar li, .aogfc-side-link { display: block; border-bottom: 1px solid var(--aogfc-border); padding: 9px 0; }
.aogfc-sidebar a:hover, .aogfc-sidebar .current-cat > a { color: var(--aogfc-green); font-weight: 900; }
.aogfc-product-cat-sidebar { padding: 0; overflow: hidden; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(0,63,134,.06); }
.aogfc-product-cat-sidebar__head { padding: 12px 16px; background: var(--aogfc-blue-soft); color: var(--aogfc-green-dark); font-size: 15px; font-weight: 750; text-transform: uppercase; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-product-cat-list { list-style: none; padding: 6px; margin: 0; display: grid; gap: 3px; }
.aogfc-product-cat-list__item { border: 0; border-radius: 7px; overflow: hidden; background: #fff; padding: 0; }
.aogfc-product-cat-list__row { display: grid; grid-template-columns: 1fr 30px; align-items: center; min-height: 42px; border: 1px solid transparent; border-radius: 7px; background: #fff; transition: background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.aogfc-product-cat-list__parent { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 6px 9px 12px; color: #17345f; font-weight: 550; line-height: 1.2; }
.aogfc-product-cat-list__parent small, .aogfc-product-cat-children small { min-width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-size: 11px; font-weight: 900; flex: 0 0 auto; }
.aogfc-cat-toggle { position: relative; width: 28px; height: 28px; margin-right: 4px; border: 0; border-radius: 50%; background: var(--aogfc-blue-soft); cursor: pointer; }
.aogfc-cat-toggle::before { content: ''; position: absolute; left: 50%; top: 50%; width: 7px; height: 7px; border-right: 2px solid var(--aogfc-green); border-bottom: 2px solid var(--aogfc-green); transform: translate(-50%, -65%) rotate(45deg); transition: transform .18s ease; }
.aogfc-cat-toggle:hover { background: #e4f3ff; }
.aogfc-product-cat-list__item.is-open .aogfc-cat-toggle::before { transform: translate(-50%, -35%) rotate(225deg); }
.aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row { background: var(--aogfc-blue-soft); border-color: var(--aogfc-border); box-shadow: inset 3px 0 0 var(--aogfc-green); }
.aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent { color: var(--aogfc-green-dark); }
.aogfc-product-cat-children { display: none; list-style: none; margin: 1px 0 5px 12px; padding: 3px 0 3px 9px; border-left: 1px solid var(--aogfc-border); }
.aogfc-product-cat-list__item.is-open > .aogfc-product-cat-children { display: grid; gap: 2px; }
.aogfc-product-cat-children li { padding: 0; border: 0; }
.aogfc-product-cat-children a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 8px 7px 10px; border-radius: 6px; color: #44546a; background: transparent; font-weight: 550; line-height: 1.2; }
.aogfc-product-cat-children a:hover { background: var(--aogfc-blue-soft); color: var(--aogfc-green); }
.aogfc-product-cat-children .is-current a { background: var(--aogfc-green); color: #fff; box-shadow: 0 6px 14px rgba(0,91,184,.16); }
.aogfc-product-cat-children a:hover small, .aogfc-product-cat-children .is-current small { background: #fff; color: var(--aogfc-green-dark); }
.aogfc-product-cat-list__row:hover { background: var(--aogfc-blue-soft); border-color: var(--aogfc-border); }
.aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent { color: var(--aogfc-green); }
.aogfc-load-more-wrap { margin-top: 30px; text-align: center; }
.aogfc-load-more { min-height: 44px; padding: 0 28px; border: 2px solid var(--aogfc-green); border-radius: 999px; background: var(--aogfc-green); color: #fff; font-weight: 900; text-transform: uppercase; cursor: pointer; box-shadow: 0 10px 20px rgba(0,91,184,.16); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.aogfc-load-more:hover:not(:disabled) { background: var(--aogfc-green-dark); transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,63,134,.18); }
.aogfc-load-more:disabled { cursor: default; opacity: .78; }
.aogfc-load-more.is-done { background: var(--aogfc-blue-soft); color: var(--aogfc-green-dark); border-color: var(--aogfc-border); box-shadow: none; }
.aogfc-product-archive__head {
    margin: 0 0 22px;
    padding: 22px 0 18px;
    border-bottom: 1px solid var(--aogfc-border);
}

/* Dark business footer, partner grid and quote contact dialog. */
.aogfc-site-footer {
    border-top: 4px solid var(--aogfc-header-primary, #005bb8);
    background: radial-gradient(circle at 12% 0, rgba(0, 91, 184, .18), transparent 32%), #111820;
    color: #aebbc8;
}
.aogfc-site-footer .aogfc-container { width: min(1170px, calc(100% - 40px)); }
.aogfc-site-footer__main { padding: 54px 0 46px; }
.aogfc-site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 1.08fr 1.28fr 1fr;
    gap: 38px;
    align-items: start;
}
.aogfc-site-footer__brand h2,
.aogfc-site-footer__column h2,
.aogfc-site-footer__partners h2,
.aogfc-site-footer__support h2 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 13px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}
.aogfc-site-footer__brand h2:after,
.aogfc-site-footer__column h2:after,
.aogfc-site-footer__partners h2:after,
.aogfc-site-footer__support h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--aogfc-header-accent, #ed1c24), #ff7b42);
    content: "";
}
.aogfc-site-footer__logo {
    display: inline-flex;
    width: min(100%, 270px);
    min-height: 92px;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0,0,0,.22);
}
.aogfc-site-footer__logo img { width: auto; max-width: 235px; max-height: 68px; object-fit: contain; }
.aogfc-site-footer__intro,
.aogfc-site-footer__registration,
.aogfc-site-footer__support > p { margin: 0 0 17px; color: #aebbc8; font-size: 13px; line-height: 1.75; }
.aogfc-site-footer__registration { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.1); color: #8393a2; font-size: 12px; }
.aogfc-site-footer__contact { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.aogfc-site-footer__contact li { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 11px; color: #aebbc8; font-size: 13px; line-height: 1.55; }
.aogfc-site-footer__contact li > span:last-child { display: grid; gap: 2px; }
.aogfc-site-footer__contact li b { color: #fff; font-size: 12px; font-weight: 700; }
.aogfc-site-footer__contact-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(75,169,255,.28);
    border-radius: 9px;
    background: rgba(0,91,184,.13);
    color: #55b4ff;
}
.aogfc-site-footer__contact-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.aogfc-site-footer a { color: #d8e7f3; text-decoration: none; }
.aogfc-site-footer a:hover,
.aogfc-site-footer a:focus { color: #fff; }
.aogfc-site-footer__partner-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.aogfc-site-footer__partner-grid span {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 7px;
    background: rgba(255,255,255,.94);
    transition: transform .2s ease, background .2s ease;
}
.aogfc-site-footer__partner-grid span:hover { background: #fff; transform: translateY(-2px); }
.aogfc-site-footer__partner-grid img { width: 100%; height: 34px; object-fit: contain; }
.aogfc-site-footer__hours { display: grid; gap: 5px; margin: 20px 0; padding: 14px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.045); }
.aogfc-site-footer__hours b { color: #fff; font-size: 12px; text-transform: uppercase; }
.aogfc-site-footer__hours span { color: #9fb0bf; font-size: 13px; line-height: 1.65; }
.aogfc-footer-quote-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 100%;
    padding: 10px 18px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--aogfc-header-primary, #005bb8), #087ed9);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0,91,184,.25);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}
.aogfc-footer-quote-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.aogfc-site-footer__social { display: flex; gap: 8px; margin-top: 14px; }
.aogfc-site-footer__social a { padding: 7px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: 12px; }
.aogfc-site-footer__bottom { min-height: 48px; display: flex; align-items: center; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.08); background: #0a1017; color: #8999a8; font-size: 12px; line-height: 1.55; text-align: center; }

.aogfc-quote-float {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 1100;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 6px 16px 6px 7px;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 999px;
    background: linear-gradient(135deg,#0878d0,#005bb8);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,50,105,.32);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.aogfc-quote-float:hover { transform: translateY(-3px); box-shadow: 0 17px 35px rgba(0,50,105,.4); }
.aogfc-quote-float__icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: #fff; color: #005bb8; font-size: 18px; font-weight: 900; }
.aogfc-back-to-top { right: 25px; bottom: 82px; }

.aogfc-quote-popup { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; padding: 24px; }
.aogfc-quote-popup.is-open { display: flex; }
.aogfc-quote-popup__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(3,16,30,.78); backdrop-filter: blur(5px); cursor: pointer; }
.aogfc-quote-popup__dialog { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; width: min(920px,100%); max-height: calc(100vh - 48px); overflow: auto; border-radius: 18px; background: #fff; box-shadow: 0 35px 90px rgba(0,0,0,.4); }
.aogfc-quote-popup__close { position: absolute; top: 14px; right: 16px; z-index: 3; display: grid; width: 38px; height: 38px; place-items: center; padding: 0; border: 1px solid #dce7f0; border-radius: 50%; background: #fff; color: #18344e; font-size: 27px; line-height: 1; cursor: pointer; }
.aogfc-quote-popup__intro { position: relative; overflow: hidden; padding: 50px 42px; background: radial-gradient(circle at 100% 0,rgba(65,184,255,.34),transparent 35%),linear-gradient(145deg,#063762,#005bb8); color: #fff; }
.aogfc-quote-popup__intro:after { position: absolute; right: -85px; bottom: -85px; width: 220px; height: 220px; border: 32px solid rgba(255,255,255,.055); border-radius: 50%; content: ""; }
.aogfc-quote-popup__intro > span { display: inline-block; margin-bottom: 18px; color: #8fd5ff; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.aogfc-quote-popup__intro h2 { margin: 0 0 15px; color: #fff; font-size: clamp(28px,3.2vw,42px); line-height: 1.18; }
.aogfc-quote-popup__intro p { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.75; }
.aogfc-quote-popup__intro ul { position: relative; z-index: 1; display: grid; gap: 11px; margin: 28px 0 0; padding: 0; list-style: none; }
.aogfc-quote-popup__intro li { position: relative; padding-left: 29px; font-size: 13px; line-height: 1.55; }
.aogfc-quote-popup__intro li:before { position: absolute; top: 0; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; content: "✓"; font-size: 11px; font-weight: 900; }
.aogfc-quote-popup__contact { padding: 50px 42px 38px; }
.aogfc-quote-popup__eyebrow { margin: 0 0 8px; color: var(--aogfc-header-accent,#ed1c24); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.aogfc-quote-popup__contact h3 { max-width: 400px; margin: 0 0 24px; color: #12344f; font-size: 25px; line-height: 1.3; }
.aogfc-quote-popup__contact dl { display: grid; gap: 0; margin: 0; }
.aogfc-quote-popup__contact dl div { display: grid; grid-template-columns: 128px minmax(0,1fr); gap: 14px; padding: 10px 0; border-bottom: 1px solid #e5edf4; }
.aogfc-quote-popup__contact dt { color: #6d7f8f; font-size: 12px; font-weight: 700; }
.aogfc-quote-popup__contact dd { margin: 0; color: #173852; font-size: 13px; font-weight: 650; line-height: 1.55; }
.aogfc-quote-popup__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 25px; }
.aogfc-quote-popup__btn { display: flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 10px 14px; border-radius: 9px; color: #fff!important; font-size: 14px; font-weight: 800; text-decoration: none; }
.aogfc-quote-popup__btn span { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); }
.aogfc-quote-popup__btn--call { background: linear-gradient(135deg,#ed343d,#c81620); }
.aogfc-quote-popup__btn--zalo { background: linear-gradient(135deg,#0d9be8,#0068b7); }
.aogfc-quote-popup__registration { margin: 18px 0 0; color: #8292a0; font-size: 10px; line-height: 1.55; }
.aogfc-quote-lock { overflow: hidden; }

.aogfc-floating-contact { position: fixed; left: 18px; bottom: 20px; z-index: 1050; display: flex; flex-direction: column; gap: 9px; }
.aogfc-floating-contact__item { display: flex; width: 48px; height: 48px; align-items: center; gap: 10px; overflow: hidden; border: 2px solid #fff; border-radius: 999px; color: #fff!important; box-shadow: 0 10px 25px rgba(0,0,0,.24); text-decoration: none; transition: width .25s ease,transform .2s ease; }
.aogfc-floating-contact__item > span,
.aogfc-floating-contact__item > img { flex: 0 0 44px; width: 44px; height: 44px; object-fit: contain; text-align: center; line-height: 44px; }
.aogfc-floating-contact__item b { padding-right: 16px; font-size: 12px; white-space: nowrap; }
.aogfc-floating-contact__item--phone { background: #e52f38; }
.aogfc-floating-contact__item--zalo { background: #0789d6; }
.aogfc-floating-contact__item:hover { width: 205px; transform: translateY(-2px); }

@media (max-width: 1100px) {
    .aogfc-site-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px 30px; }
}
@media (max-width: 680px) {
    .aogfc-site-footer .aogfc-container { width: min(100% - 28px,1170px); }
    .aogfc-site-footer__main { padding: 38px 0 30px; }
    .aogfc-site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .aogfc-site-footer__brand { padding-bottom: 0; }
    .aogfc-site-footer__logo { width: 245px; min-height: 82px; }
    .aogfc-site-footer__partner-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .aogfc-site-footer__bottom { padding: 14px 0 92px; }
    .aogfc-quote-float { right: 12px; bottom: 14px; min-height: 44px; }
    .aogfc-quote-float__icon { width: 29px; height: 29px; }
    .aogfc-back-to-top { right: 18px; bottom: 72px; }
    .aogfc-quote-popup { padding: 12px; }
    .aogfc-quote-popup__dialog { grid-template-columns: 1fr; max-height: calc(100vh - 24px); border-radius: 14px; }
    .aogfc-quote-popup__intro,
    .aogfc-quote-popup__contact { padding: 34px 24px; }
    .aogfc-quote-popup__intro h2 { font-size: 29px; }
    .aogfc-quote-popup__contact h3 { padding-right: 28px; font-size: 21px; }
    .aogfc-quote-popup__contact dl div { grid-template-columns: 1fr; gap: 3px; }
    .aogfc-quote-popup__actions { grid-template-columns: 1fr 1fr; }
    .aogfc-floating-contact { left: 10px; bottom: 12px; display: flex; }
    .aogfc-floating-contact__item { width: 42px; height: 42px; }
    .aogfc-floating-contact__item > span,
    .aogfc-floating-contact__item > img { flex-basis: 38px; width: 38px; height: 38px; line-height: 38px; }
    .aogfc-floating-contact__item:hover { width: 42px; transform: none; }
    .aogfc-floating-contact__item b { display: none; }
}
.aogfc-product-archive__head h1 {
    margin: 0 0 9px;
    color: var(--aogfc-green-dark);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-product-archive__head p {
    max-width: 900px;
    margin: 0;
    color: #52606f;
    font-size: 16px;
    line-height: 1.65;
}
.aogfc-product-archive__seo { margin-top: 38px; }
.aogfc-seo-block, .aogfc-content-body { margin-top: 34px; font-size: 17px; }
.aogfc-content-body p,
.aogfc-content-body li,
.aogfc-editor-content p,
.aogfc-editor-content li,
.aogfc-contact-page-head__content p,
.aogfc-static-flex-intro__content p,
.aogfc-seo-block p,
.aogfc-seo-block li,
.aogfc-static-content p,
.aogfc-static-content li,
.aogfc-single-post__content p,
.aogfc-single-post__content li,
.aogfc-product-content p,
.aogfc-product-content li,
.aogfc-product-excerpt p,
.aogfc-product-note span,
.aogfc-page-intro,
.aogfc-single-hero__copy > p,
.aogfc-about-letter__inner p {
    text-align: justify;
    text-justify: inter-word;
}

.aogfc-content-body img { border-radius: 8px; }
.aogfc-single-thumb { width: 100%; border-radius: 8px; margin: 22px 0; }
.aogfc-single-product { background: linear-gradient(180deg, #f7fbff 0, #fff 420px); }
.aogfc-product-detail { display: grid; grid-template-columns: minmax(0, 47%) minmax(0, 1fr); gap: 34px; align-items: start; }
.aogfc-product-gallery { display: grid; gap: 14px; }
.aogfc-product-gallery__main { position: relative; display: block; width: 100%; aspect-ratio: 819 / 1024; max-height: none; padding: 0; overflow: hidden; border: 1px solid var(--aogfc-border); border-radius: 8px; background: var(--aogfc-blue-soft); cursor: zoom-in; box-shadow: 0 16px 34px rgba(0,63,134,.08); }
.aogfc-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .35s ease; }
.aogfc-product-gallery__main:hover img { transform: scale(1.03); }
.aogfc-product-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 86px; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.aogfc-product-thumb { aspect-ratio: 1; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 7px; background: var(--aogfc-blue-soft); cursor: pointer; opacity: .72; transition: border-color .18s ease, opacity .18s ease, transform .18s ease; }
.aogfc-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aogfc-product-thumb:hover, .aogfc-product-thumb.is-active { border-color: var(--aogfc-green); opacity: 1; transform: translateY(-1px); }
.aogfc-product-detail__summary { display: flex; flex-direction: column; justify-content: flex-start; padding: 28px 30px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 16px 34px rgba(0,63,134,.07); }
.aogfc-product-detail__cat { align-self: flex-start; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-weight: 900; font-size: 13px; text-transform: uppercase; }
.aogfc-product-detail__summary h1 { margin: 0 0 14px; color: var(--aogfc-green-dark); font-size: clamp(30px, 3vw, 42px); line-height: 1.16; }
.aogfc-product-excerpt { color: #25364b; font-size: 18px; line-height: 1.75; }
.aogfc-product-excerpt p { margin: 0; }
.aogfc-product-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; width: 100%; margin-top: 26px; }
.aogfc-product-actions .aogfc-btn { position: relative; isolation: isolate; width: 100%; min-height: 58px; padding: 0 18px; border: 0; border-radius: 8px; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-size: 15px; font-weight: 900; line-height: 1.15; text-align: center; white-space: nowrap; box-shadow: 0 16px 28px rgba(0,63,134,.18); }
.aogfc-product-actions .aogfc-btn::before { display: inline-grid; place-items: center; flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; font-size: 17px; line-height: 1; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.aogfc-product-actions .aogfc-btn::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 42%, rgba(255,255,255,0) 68%); transform: translateX(-120%) skewX(-18deg); transition: transform .55s ease; }
.aogfc-product-actions .aogfc-popup-open { background: linear-gradient(135deg, #063d8f 0%, #0865c9 58%, #0b84e8 100%); box-shadow: 0 18px 30px rgba(0,91,184,.28), 0 8px 0 rgba(0,63,134,.08); }
.aogfc-product-actions .aogfc-popup-open::before { content: "\270E"; }
.aogfc-product-actions .aogfc-btn--zalo { background: linear-gradient(135deg, #10b8e8 0%, #17a7f3 48%, #0874d8 100%); box-shadow: 0 18px 30px rgba(20,168,244,.27), 0 8px 0 rgba(0,91,184,.07); }
.aogfc-product-actions .aogfc-btn--zalo::before { content: "Z"; font-size: 16px; font-weight: 900; font-style: italic; }
.aogfc-product-actions .aogfc-btn:hover,
.aogfc-product-actions .aogfc-btn:focus-visible { color: #fff; transform: translateY(-2px); box-shadow: 0 22px 38px rgba(0,63,134,.24); }
.aogfc-product-actions .aogfc-btn:hover::after,
.aogfc-product-actions .aogfc-btn:focus-visible::after { transform: translateX(120%) skewX(-18deg); }
.aogfc-product-note { display: grid; gap: 6px; margin-top: 22px; padding: 16px 18px; border-left: 4px solid var(--aogfc-green); border-radius: 0 8px 8px 0; background: var(--aogfc-blue-soft); color: #33445a; }
.aogfc-product-note strong { color: var(--aogfc-green-dark); }
.aogfc-product-brand-box {
    margin-top: 18px;
    padding: 18px 22px;
    border: 1px dashed var(--aogfc-header-accent, #ed1c24);
    background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
    color: #111;
}
.aogfc-product-brand-box ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
}
.aogfc-product-brand-box li {
    color: #111;
    font-size: 15px;
    line-height: 1.55;
}
.aogfc-product-support {
    position: relative;
    flex: 1 1 auto;
    margin-top: 18px;
    padding: 24px 26px 22px;
    overflow: hidden;
    border: 1px solid #d8e7f2;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8fbff 0%, #edf7ff 58%, #fff8ef 100%);
    color: #40566a;
}
.aogfc-product-support::after {
    position: absolute;
    right: -42px;
    bottom: -46px;
    width: 142px;
    height: 142px;
    border: 26px solid rgba(7,128,201,.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}
.aogfc-product-support h2 { position: relative; z-index: 1; margin: 0 0 10px; color: #0c3152; font-size: 21px; line-height: 1.3; }
.aogfc-product-support p { position: relative; z-index: 1; margin: 0 0 15px; font-size: 14px; line-height: 1.7; text-align: left; }
.aogfc-product-support ul { position: relative; z-index: 1; display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.aogfc-product-support li { position: relative; padding-left: 28px; color: #173c5a; font-size: 13px; font-weight: 600; line-height: 1.55; }
.aogfc-product-support li::before { position: absolute; top: 1px; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 7px; background: #e7f6ef; color: #078455; content: "✓"; font-size: 11px; font-weight: 900; }
@media (min-width: 981px) {
    .aogfc-product-detail { align-items: stretch; }
    .aogfc-product-detail__summary { min-height: 100%; }
}
.aogfc-product-content { padding: 32px 36px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(0,63,134,.055); }
.aogfc-product-content figure,
.aogfc-product-content .wp-block-image {
    max-width: 100%;
}
.aogfc-product-content img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.aogfc-related-products { position: relative; margin-top: 42px; padding: 34px 0 14px; }
.aogfc-related-products__head { margin-bottom: 20px; text-align: center; }
.aogfc-related-products__head h2 { margin: 0; color: var(--aogfc-green-dark); font-size: clamp(24px, 2.6vw, 34px); text-transform: uppercase; }
.aogfc-related-products__nav { position: absolute; left: -21px; right: -21px; top: calc(50% + 54px); z-index: 3; display: flex; justify-content: space-between; gap: 8px; pointer-events: none; }
.aogfc-related-products__nav button { pointer-events: auto; width: 42px; height: 42px; border: 1px solid var(--aogfc-border); border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: 0 10px 24px rgba(0,63,134,.14); transition: background .18s ease, color .18s ease, transform .18s ease; }
.aogfc-related-products__nav button:hover { background: var(--aogfc-green); color: #fff; transform: translateY(-1px); }
.aogfc-related-products__slider { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 66px) / 4); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 18px; scrollbar-width: none; }
.aogfc-related-products__slider::-webkit-scrollbar { display: none; }
.aogfc-related-products__slider .aogfc-product-card { scroll-snap-align: start; min-width: 0; }
.aogfc-quote-popup__product { display: grid; grid-template-columns: 128px 1fr; gap: 18px; align-items: center; margin-bottom: 18px; }
.aogfc-quote-popup__product img { width: 128px; aspect-ratio: 1; object-fit: cover; border-radius: 8px; border: 1px solid var(--aogfc-border); }
.aogfc-quote-popup__product span { display: block; margin-bottom: 5px; color: var(--aogfc-green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.aogfc-quote-popup__product h2 { margin: 0 0 8px; text-transform: none; line-height: 1.25; }
.aogfc-lightbox { position: fixed; inset: 0; z-index: 240; display: none; align-items: center; justify-content: center; padding: 26px; }
.aogfc-lightbox.is-open { display: flex; }
.aogfc-lightbox__backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,20,48,.76); cursor: zoom-out; }
.aogfc-lightbox__dialog { position: relative; max-width: min(1040px, 94vw); max-height: 90vh; }
.aogfc-lightbox__dialog img { display: block; max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.34); }
.aogfc-lightbox__close { position: absolute; top: -18px; right: -18px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: var(--aogfc-green-dark); font-size: 30px; line-height: 1; cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.aogfc-empty { grid-column: 1 / -1; text-align: center; padding: 36px; border: 1px dashed #b7daf5; border-radius: 8px; background: var(--aogfc-blue-soft); }
.aogfc-not-found { min-height: 520px; display: grid; place-items: center; text-align: center; padding: 70px 0; }
.aogfc-search--page { max-width: 580px; margin: 22px auto; }

.aogfc-popup { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.aogfc-popup.is-open { display: flex; }
.aogfc-popup__backdrop { position: absolute; inset: 0; background: rgba(0,24,55,.58); }
.aogfc-popup__dialog { position: relative; width: min(520px, 100%); background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.aogfc-popup__close { position: absolute; top: 12px; right: 14px; border: 0; background: transparent; color: var(--aogfc-green-dark); font-size: 30px; line-height: 1; cursor: pointer; }
.aogfc-popup__dialog h2 { margin: 0 0 8px; color: var(--aogfc-green-dark); text-transform: uppercase; font-size: 24px; }
.aogfc-popup__dialog p { margin: 0 0 18px; color: #444; }
.aogfc-popup-form { display: grid; gap: 13px; }
.aogfc-popup-form label { display: grid; gap: 6px; font-weight: 800; color: var(--aogfc-green-dark); }
.aogfc-popup-form input, .aogfc-popup-form textarea { width: 100%; border: 1px solid var(--aogfc-border); border-radius: 6px; padding: 11px 12px; font: inherit; }
.aogfc-popup-form textarea { resize: vertical; }
.aogfc-site-footer { display: block; }
.aogfc-pagination { margin-top: 28px; }
.aogfc-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.aogfc-pagination a, .aogfc-pagination span { min-width: 34px; height: 34px; display: inline-grid; place-items: center; border: 1px solid var(--aogfc-border); border-radius: 4px; padding: 0 10px; }
.aogfc-pagination .current { background: var(--aogfc-green); color: #fff; border-color: var(--aogfc-green); }
@media (max-width: 1024px) {
    .aogfc-header-top__inner { height: 88px; grid-template-columns: 220px minmax(250px, 1fr) auto; gap: 22px; }
    .aogfc-header-contact { gap: 18px; }
    .aogfc-contact-pill > span { width: 46px; height: 46px; }
    .aogfc-contact-pill strong { font-size: 15px; }
    .aogfc-contact-pill small { font-size: 12px; margin-top: 6px; }
    .aogfc-menu > li > a { padding-inline: 18px; font-size: 15px; }
    .aogfc-benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .aogfc-benefits__cta { grid-column: 1 / -1; }
    .aogfc-product-grid, .aogfc-post-grid { grid-template-columns: repeat(3, 1fr); }
    .aogfc-inner-hero__grid, .aogfc-about-capacity__grid, .aogfc-contact-main__grid { grid-template-columns: 1fr; }
    .aogfc-value-grid, .aogfc-about-steps { grid-template-columns: repeat(2, 1fr); }
    .aogfc-product-toolbar { align-items: flex-start; flex-direction: column; }
    .aogfc-product-toolbar__actions { width: 100%; justify-content: space-between; margin-left: 0; }
    .aogfc-blog-layout, .aogfc-single-post__layout { grid-template-columns: 1fr; }
    .aogfc-blog-sidebar, .aogfc-single-post__sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .aogfc-featured-post { grid-template-columns: 1fr; }
    .aogfc-post-grid.aogfc-post-grid--archive { grid-template-columns: repeat(2, 1fr); }
    .aogfc-gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .aogfc-product-detail { grid-template-columns: 1fr; }
    .aogfc-product-detail__summary { justify-content: flex-start; }
    .aogfc-related-products__slider { grid-auto-columns: calc((100% - 44px) / 3); }
}

@media (max-width: 760px) {
    .aogfc-container { width: min(100% - 24px, var(--aogfc-container)); }
    .aogfc-header-top__inner { height: auto; min-height: 76px; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; }
    .aogfc-logo { grid-column: 2; justify-self: center; }
    .aogfc-logo img { width: clamp(170px, 48vw, 190px); max-height: 56px; }
    .aogfc-search { display: none; }
    .aogfc-header-contact { display: none; }
    .aogfc-menu-toggle { display: block; grid-column: 3; justify-self: end; }
    .aogfc-main-nav { display: none; }
    .aogfc-main-nav.is-open { display: block; }
    .aogfc-menu { display: block; min-height: 0; padding: 8px 0; }
    .aogfc-menu > li + li::before { display: none; }
    .aogfc-menu > li > a { padding: 12px 0; border-bottom: 1px solid var(--aogfc-border); font-size: 15px; }
    .aogfc-mega { position: static; transform: none; width: 100%; opacity: 1; pointer-events: auto; display: none; grid-template-columns: 1fr; box-shadow: none; padding: 12px; }
    .has-mega.is-open .aogfc-mega { display: grid; opacity: 1; visibility: visible; pointer-events: auto; }
    .aogfc-hero { min-height: 520px; }
    .aogfc-hero--image-only { min-height: 0; aspect-ratio: 2400 / 804; }
    .aogfc-hero h1 { font-size: 30px; }
    .aogfc-benefits__grid, .aogfc-category-showcase__grid, .aogfc-category-cards, .aogfc-process-grid, .aogfc-layout, .aogfc-product-detail, .aogfc-why-detail__panel { grid-template-columns: 1fr; }
    .aogfc-why-detail__panel { padding: 18px; gap: 24px; }
    .aogfc-why-detail__item { grid-template-columns: 58px 1fr; gap: 16px; }
    .aogfc-why-detail__number { width: 48px; height: 48px; font-size: 28px; }
    .aogfc-benefit-card { border-left: 0; border-top: 1px solid var(--aogfc-border); padding-top: 18px; }
    .aogfc-video-card { min-height: 360px; }
    .aogfc-product-grid, .aogfc-post-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .aogfc-product-section__head { align-items: center; }
    .aogfc-product-section__head h3 { font-size: 19px; line-height: 1.25; }
    .aogfc-product-section__nav { display: flex; flex: 0 0 auto; }
    .aogfc-product-section .aogfc-product-grid { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 2px 2px 16px; scrollbar-width: none; }
    .aogfc-product-section .aogfc-product-grid::-webkit-scrollbar { display: none; }
    .aogfc-product-section .aogfc-product-card { scroll-snap-align: start; min-width: 0; }
    .aogfc-news-section__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
    .aogfc-news-section__head .aogfc-lined-title { flex: 1 1 auto; margin: 0; text-align: left; font-size: 22px; line-height: 1.25; }
    .aogfc-news-section__nav { display: flex; flex: 0 0 auto; }
    .aogfc-news-section .aogfc-post-grid { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 2px 2px 16px; scrollbar-width: none; }
    .aogfc-news-section .aogfc-post-grid::-webkit-scrollbar { display: none; }
    .aogfc-news-section .aogfc-post-card { scroll-snap-align: start; min-width: 0; }
    .aogfc-news-section .aogfc-post-card__body { padding: 12px; }
    .aogfc-news-section .aogfc-post-card h3 { font-size: 14px; line-height: 1.35; min-height: 0; }
    .aogfc-news-section .aogfc-post-card p { font-size: 13px; line-height: 1.5; }
    .aogfc-inner-hero, .aogfc-static-hero { padding: 34px 0; }
    .aogfc-inner-hero h1, .aogfc-static-hero h1 { font-size: 30px; }
    .aogfc-inner-hero p:not(.aogfc-eyebrow), .aogfc-static-hero__copy > p:last-child { font-size: 16px; }
    .aogfc-value-grid, .aogfc-about-steps, .aogfc-capacity-stats, .aogfc-logo-strip, .aogfc-contact-form { grid-template-columns: 1fr; }
    .aogfc-about-values, .aogfc-about-capacity, .aogfc-about-process, .aogfc-about-partners, .aogfc-contact-main { padding: 36px 0; }
    .aogfc-contact-form-card, .aogfc-contact-info-panel, .aogfc-contact-quick { padding: 20px; }
    .aogfc-contact-map iframe { height: 300px; }
    .aogfc-product-toolbar__actions { align-items: stretch; flex-direction: column; gap: 12px; }
    .aogfc-product-sort select { width: 100%; min-width: 0; }
    .aogfc-product-toolbar .aogfc-breadcrumb { font-size: 17px; }
    .aogfc-blog-hero { padding: 34px 0 30px; }
    .aogfc-blog-layout { padding-top: 28px; }
    .aogfc-single-post__layout { padding-top: 24px; }
    .aogfc-single-hero { padding: 30px 0 26px; }
    .aogfc-single-hero h1 { font-size: 30px; }
    .aogfc-single-post__content, .aogfc-static-content { padding: 24px 18px; font-size: 16px; line-height: 1.75; }
    .aogfc-single-post__content h2 { font-size: 24px; }
    .aogfc-featured-post__image { min-height: 240px; }
    .aogfc-featured-post__body { padding: 22px; }
    .aogfc-blog-sidebar, .aogfc-single-post__sidebar { grid-template-columns: 1fr; }
    .aogfc-gallery-grid, .aogfc-gallery--certificates .aogfc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .aogfc-lead-form { grid-template-columns: 1fr; }
    .aogfc-single-product { padding-top: 18px; }
    .aogfc-product-detail__summary { padding: 24px; }
    .aogfc-product-content {
        padding: 24px 18px;
    }
    .aogfc-product-content figure,
    .aogfc-product-content .wp-block-image,
    .aogfc-product-content .aligncenter,
    .aogfc-product-content .alignnone,
    .aogfc-product-content .size-medium,
    .aogfc-product-content .size-large {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }
    .aogfc-product-content img {
        width: 100% !important;
        max-width: 100% !important;
    }
    .aogfc-product-excerpt p { text-align: left; }
    .aogfc-product-actions { grid-template-columns: 1fr; max-width: none; }
    .aogfc-product-actions .aogfc-btn { width: 100%; min-height: 54px; font-size: 14px; }
    .aogfc-product-actions .aogfc-btn::before { flex-basis: 28px; width: 28px; height: 28px; font-size: 15px; }
    .aogfc-related-products__head { align-items: flex-start; }
    .aogfc-related-products__slider { grid-auto-columns: calc((100% - 14px) / 2); gap: 14px; }
    .aogfc-quote-popup__product { grid-template-columns: 88px 1fr; }
    .aogfc-quote-popup__product img { width: 88px; }
    .aogfc-sidebar { position: static; }
    .aogfc-product-card h3 { min-height: auto; }
}

@media (max-width: 430px) {
    .aogfc-product-grid, .aogfc-post-grid, .aogfc-post-grid.aogfc-post-grid--archive { grid-template-columns: 1fr; }
    .aogfc-product-section .aogfc-product-grid { grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; }
    .aogfc-news-section .aogfc-post-grid { grid-auto-columns: calc((100% - 14px) / 2); grid-template-columns: none; }
    .aogfc-category-card { min-height: 220px; }
}

/* Data-driven navigation and production empty states */
.aogfc-menu .menu-item-has-children { position: relative; }
.aogfc-menu .sub-menu { position: absolute; left: 0; top: 100%; transform: translateY(12px); width: min(920px, calc(100vw - 48px)); min-width: 240px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 22px; padding: 22px; margin: 0; list-style: none; background: #fff; border: 1px solid var(--aogfc-border); box-shadow: 0 18px 45px rgba(0,0,0,.18); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; z-index: 20; }
.aogfc-menu .menu-item-has-children.is-open > .sub-menu { opacity: 0; visibility: hidden; pointer-events: none; }
.aogfc-menu .sub-menu .sub-menu { position: static; transform: none; opacity: 1; visibility: hidden; pointer-events: none; width: auto; min-width: 0; display: block; padding: 6px 0 0; border: 0; box-shadow: none; }
.aogfc-menu .sub-menu *, .aogfc-mega * { pointer-events: none; }
.aogfc-menu .sub-menu a { display: block; padding: 6px 0; color: #333; font-size: 14px; text-transform: none; font-weight: 800; }
.aogfc-menu .sub-menu > li > a { color: var(--aogfc-green); text-transform: uppercase; font-weight: 900; }
.aogfc-menu .sub-menu .sub-menu a { color: #333; text-transform: none; font-weight: 700; }
.aogfc-menu .sub-menu a:hover { color: var(--aogfc-green); }
.aogfc-product-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--aogfc-muted); font-weight: 800; background: var(--aogfc-blue-soft); }
/* Desktop hover dropdown */
@media (min-width: 761px) {
    .has-mega.is-hover .aogfc-mega {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu li,
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu a,
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu .sub-menu {
        visibility: visible;
    }
@media (max-width: 760px) {
    .aogfc-product-archive__head { margin-bottom: 16px; padding: 16px 0 14px; }
    .aogfc-product-archive__head h1 { font-size: 23px; }
    .aogfc-product-archive__head p { font-size: 14px; line-height: 1.55; }
    .aogfc-menu .sub-menu { position: static; transform: none; width: 100%; min-width: 0; opacity: 1; pointer-events: none; display: none; grid-template-columns: 1fr; box-shadow: none; padding: 10px 14px; }
    .aogfc-menu .menu-item-has-children.is-open > .sub-menu { display: grid; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
    .aogfc-menu .menu-item-has-children.is-open > .sub-menu,
    .aogfc-menu .menu-item-has-children.is-open > .sub-menu * { visibility: visible; pointer-events: auto; }
}
/* About and contact pages */
.aogfc-inner-hero { padding: 54px 0; background: linear-gradient(180deg, var(--aogfc-blue-soft) 0%, #fff 100%); border-bottom: 1px solid var(--aogfc-border); }
.aogfc-inner-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: 42px; align-items: center; }
.aogfc-inner-hero .aogfc-breadcrumb { margin-bottom: 18px; }
.aogfc-inner-hero h1 { margin: 0; max-width: 780px; color: var(--aogfc-green-dark); font-size: clamp(34px, 4.5vw, 58px); line-height: 1.08; text-transform: uppercase; }
.aogfc-inner-hero p:not(.aogfc-eyebrow) { margin: 16px 0 0; max-width: 760px; color: #405267; font-size: 18px; line-height: 1.7; }
.aogfc-inner-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.aogfc-inner-hero__media { margin: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 42px rgba(0,63,134,.12); }
.aogfc-inner-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.aogfc-about-values, .aogfc-about-process, .aogfc-contact-main { padding: 58px 0; }
.aogfc-value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.aogfc-value-card { position: relative; padding: 24px 20px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(0,63,134,.055); }
.aogfc-value-card span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 50%; background: var(--aogfc-blue-soft); color: var(--aogfc-green); font-weight: 900; }
.aogfc-value-card h3 { margin: 0 0 9px; color: var(--aogfc-green-dark); font-size: 18px; }
.aogfc-value-card p { margin: 0; color: #4b5d72; line-height: 1.65; }
.aogfc-about-capacity { padding: 64px 0; background: var(--aogfc-blue-soft); border-block: 1px solid var(--aogfc-border); }
.aogfc-about-capacity__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.aogfc-about-capacity__copy h2 { margin: 0 0 14px; color: var(--aogfc-green-dark); font-size: clamp(28px, 3vw, 42px); line-height: 1.15; text-transform: uppercase; }
.aogfc-about-capacity__copy p:not(.aogfc-eyebrow) { margin: 0; color: #43546a; font-size: 17px; line-height: 1.75; }
.aogfc-capacity-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.aogfc-capacity-stats div { padding: 16px; border-radius: 8px; background: #fff; border: 1px solid var(--aogfc-border); }
.aogfc-capacity-stats strong { display: block; color: var(--aogfc-green); font-size: 28px; line-height: 1; }
.aogfc-capacity-stats span { display: block; margin-top: 8px; color: #44546a; font-size: 13px; font-weight: 800; line-height: 1.45; }
.aogfc-capacity-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.aogfc-capacity-gallery img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; border-radius: 8px; border: 1px solid var(--aogfc-border); }
.aogfc-capacity-gallery img:first-child { grid-row: span 2; }
.aogfc-about-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: steps; }
.aogfc-about-steps article { padding: 24px 20px; border-radius: 8px; background: var(--aogfc-green-dark); color: #fff; }
.aogfc-about-steps span { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 18px; border-radius: 50%; background: #fff; color: var(--aogfc-green); font-size: 22px; font-weight: 900; }
.aogfc-about-steps h3 { margin: 0 0 10px; font-size: 18px; text-transform: uppercase; }
.aogfc-about-steps p { margin: 0; color: rgba(255,255,255,.86); line-height: 1.65; }
.aogfc-about-partners { padding: 58px 0 70px; background: #fff; }
.aogfc-logo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.aogfc-logo-strip img { width: 100%; aspect-ratio: 245 / 113; object-fit: contain; padding: 14px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(0,63,134,.045); }
.aogfc-contact-quick, .aogfc-contact-form-card, .aogfc-contact-info-panel { border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 14px 32px rgba(0,63,134,.07); }
.aogfc-contact-quick { padding: 28px; }
.aogfc-contact-quick h2, .aogfc-contact-form-card h2, .aogfc-contact-info-panel h2 { margin: 0 0 16px; color: var(--aogfc-green-dark); font-size: 22px; text-transform: uppercase; }
.aogfc-contact-quick p { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--aogfc-border); color: #26384d; font-size: 16px; }
.aogfc-contact-quick p:last-child { border-bottom: 0; }
.aogfc-contact-quick span, .aogfc-contact-info-panel strong { display: block; color: var(--aogfc-green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.aogfc-contact-main__grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 28px; align-items: start; }
.aogfc-contact-form-card { padding: 30px; }
.aogfc-contact-form-card > p { margin: 0 0 20px; color: #506174; }
.aogfc-contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 0; }
.aogfc-contact-form input, .aogfc-contact-form textarea { width: 100%; border: 1px solid #cfe0ec; border-radius: 6px; padding: 0 14px; font: inherit; }
.aogfc-contact-form input { height: 46px; }
.aogfc-contact-form textarea { grid-column: 1 / -1; padding-top: 12px; resize: vertical; }
.aogfc-contact-form button { width: fit-content; min-height: 44px; grid-column: 1 / -1; border-radius: 6px; }
.aogfc-contact-info-panel { padding: 26px; }
.aogfc-contact-info-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.aogfc-contact-info-panel li { padding-bottom: 12px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-contact-info-panel li:last-child { border-bottom: 0; }
.aogfc-contact-info-panel span, .aogfc-contact-info-panel a { color: #26384d; font-weight: 800; }
.aogfc-contact-note { margin-top: 22px; padding: 18px; border-radius: 8px; background: var(--aogfc-blue-soft); color: #405267; }
.aogfc-contact-note strong { color: var(--aogfc-green-dark); }
.aogfc-contact-note p { margin: 8px 0 0; }
.aogfc-contact-map { padding: 0 0 64px; }
.aogfc-contact-map iframe { width: 100%; height: 380px; border: 0; border-radius: 8px; box-shadow: 0 14px 34px rgba(0,63,134,.08); }
@media (max-width: 1024px) {
    .aogfc-inner-hero__grid,
    .aogfc-about-capacity__grid,
    .aogfc-contact-main__grid { grid-template-columns: 1fr; }
    .aogfc-editor-page__grid { grid-template-columns: 1fr; }
    .aogfc-editor-side { position: static; }
    .aogfc-value-grid,
    .aogfc-about-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .aogfc-inner-hero, .aogfc-static-hero { padding: 34px 0; }
    .aogfc-inner-hero__grid,
    .aogfc-static-hero--about .aogfc-static-hero__grid,
    .aogfc-about-capacity__grid,
    .aogfc-contact-main__grid,
    .aogfc-value-grid,
    .aogfc-about-steps,
    .aogfc-capacity-stats,
    .aogfc-logo-strip,
    .aogfc-contact-form { grid-template-columns: minmax(0, 1fr); }
    .aogfc-inner-hero h1, .aogfc-static-hero h1 { font-size: 30px; }
    .aogfc-inner-hero p:not(.aogfc-eyebrow), .aogfc-static-hero__copy > p:last-child { font-size: 16px; }
    .aogfc-about-values,
    .aogfc-about-capacity,
    .aogfc-about-process,
    .aogfc-about-partners,
    .aogfc-contact-main { padding: 36px 0; }
    .aogfc-editor-page__body { padding: 28px 0 42px; }
    .aogfc-editor-page__grid { gap: 18px; }
    .aogfc-editor-content h2 { font-size: 23px; }
    .aogfc-editor-content h3 { font-size: 19px; }
    .aogfc-editor-content p,
    .aogfc-editor-content li { font-size: 15px; line-height: 1.68; }
    .aogfc-editor-side { padding: 20px; }
    .aogfc-contact-form-card,
    .aogfc-contact-info-panel,
    .aogfc-contact-quick { padding: 20px; }
    .aogfc-contact-form textarea,
    .aogfc-contact-form button { grid-column: auto; }
    .aogfc-contact-map iframe { height: 300px; }
}
/* Compact single post header */
.aogfc-single.aogfc-single-post { padding: 0 0 58px; }
.aogfc-single-post .aogfc-single-hero { padding: 22px 0 24px; }
.aogfc-single-post .aogfc-single-hero .aogfc-breadcrumb { margin-bottom: 12px; }
.aogfc-single-post .aogfc-single-hero__copy { max-width: 1180px; }
.aogfc-single-post .aogfc-single-hero h1 { max-width: 1180px; margin-bottom: 12px; font-size: clamp(34px, 4vw, 52px); }
.aogfc-single-post .aogfc-single-hero__copy > p { max-width: 980px; margin-bottom: 12px; }
.aogfc-single-post .aogfc-single-post__layout { padding-top: 12px; }
.aogfc-single-post .aogfc-single-thumb-wrap { margin: 0 0 20px; }
.aogfc-single-post .aogfc-single-thumb-wrap .aogfc-single-thumb { margin: 0; border-radius: 0; width: 100%; max-height: 540px; object-fit: cover; }

@media (max-width: 760px) {
    .aogfc-single-post .aogfc-single-hero { padding: 22px 0; }
    .aogfc-single-post .aogfc-single-post__layout { padding-top: 14px; }
}
.aogfc-static-page { padding: 0 0 58px; background: linear-gradient(180deg, var(--aogfc-blue-soft) 0, #fff 430px); }
.aogfc-static-hero { padding: 46px 0 42px; border-bottom: 1px solid var(--aogfc-border); background: radial-gradient(circle at 86% 12%, rgba(0,91,184,.12), transparent 30%), var(--aogfc-blue-soft); }
.aogfc-static-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr); gap: 34px; align-items: center; }
.aogfc-static-hero__grid--single { grid-template-columns: minmax(0, 1fr); }
.aogfc-static-hero__copy { min-width: 0; }
.aogfc-static-hero .aogfc-breadcrumb { margin-bottom: 16px; }
.aogfc-static-hero h1 { margin: 0; max-width: 840px; color: var(--aogfc-green-dark); font-size: clamp(34px, 4.2vw, 56px); line-height: 1.1; text-transform: uppercase; }
.aogfc-static-hero__copy > p:last-child { margin: 16px 0 0; max-width: 820px; color: #34465d; font-size: 18px; line-height: 1.7; }
.aogfc-static-hero__media { margin: 0; overflow: hidden; border-radius: 8px; border: 1px solid var(--aogfc-border); background: #fff; box-shadow: 0 18px 42px rgba(0,63,134,.12); }
.aogfc-static-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.aogfc-static-hero--about { padding: 0; border-bottom: 0; background: #fff; }
.aogfc-static-hero--about .aogfc-static-hero__media { width: 100%; border: 0; border-radius: 0; box-shadow: none; }
.aogfc-static-hero--about .aogfc-static-hero__media--banner img { width: 100%; aspect-ratio: 2172 / 724; object-fit: cover; }
.aogfc-static-hero__panel { position: relative; padding: 28px; border-radius: 8px; background: var(--aogfc-green-dark); color: #fff; box-shadow: 0 20px 44px rgba(0,63,134,.18); overflow: hidden; }
.aogfc-static-hero__panel::after { content: ""; position: absolute; right: -46px; bottom: -46px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,.1); }
.aogfc-static-hero__panel span { display: inline-flex; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.12); color: var(--aogfc-green-soft); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.aogfc-static-hero__panel strong { display: block; max-width: 360px; font-size: 26px; line-height: 1.25; }
.aogfc-static-hero__panel p { position: relative; z-index: 1; margin: 14px 0 0; color: rgba(255,255,255,.88); line-height: 1.65; }
.aogfc-static-content { margin: 34px auto 0; max-width: 1040px; padding: 34px 38px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 16px 34px rgba(0,63,134,.065); color: #25364b; font-size: 18px; line-height: 1.82; }
.aogfc-static-content > *:first-child { margin-top: 0; }
.aogfc-static-content h2, .aogfc-static-content h3 { color: var(--aogfc-green-dark); line-height: 1.28; }
.aogfc-static-content h2 { margin: 32px 0 12px; font-size: 28px; }
.aogfc-static-content h3 { margin: 24px 0 10px; font-size: 22px; }
.aogfc-static-content p { margin: 0 0 18px; }
.aogfc-static-content ul, .aogfc-static-content ol { margin: 0 0 20px; padding-left: 24px; }
.aogfc-static-content li { margin-bottom: 8px; }
.aogfc-static-content blockquote { margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--aogfc-green); border-radius: 0 8px 8px 0; background: var(--aogfc-blue-soft); color: var(--aogfc-green-dark); font-weight: 800; }
.aogfc-static-content img { max-width: 100%; height: auto; border-radius: 8px; }
.aogfc-editor-page__body { padding: 42px 0 64px; }
.aogfc-editor-page__grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.aogfc-editor-content { color: #25364b; }
.aogfc-editor-content > *:first-child { margin-top: 0; }
.aogfc-editor-content h2,
.aogfc-editor-content h3,
.aogfc-editor-content h4 { color: var(--aogfc-green-dark); line-height: 1.25; }
.aogfc-editor-content h2 { margin: 30px 0 12px; font-size: 28px; text-transform: uppercase; }
.aogfc-editor-content h3 { margin: 24px 0 10px; font-size: 22px; }
.aogfc-editor-content p { margin: 0 0 17px; line-height: 1.78; }
.aogfc-editor-content ul,
.aogfc-editor-content ol { margin: 0 0 20px; padding-left: 24px; }
.aogfc-editor-content li { margin-bottom: 8px; line-height: 1.7; }
.aogfc-editor-content a { color: var(--aogfc-green); font-weight: 800; }
.aogfc-editor-content--compact { margin: 4px 0 18px; padding: 16px 0 4px; border-top: 1px solid #dcecf8; }
.aogfc-editor-content--compact h2 { font-size: 22px; }
.aogfc-editor-content--compact p { font-size: 15px; line-height: 1.68; }
.aogfc-editor-side { position: sticky; top: 118px; padding: 24px; border: 1px solid var(--aogfc-border); border-radius: 8px; background: #fff; box-shadow: 0 14px 32px rgba(0,63,134,.07); }
.aogfc-editor-side h2 { margin: 0 0 16px; color: var(--aogfc-green-dark); font-size: 20px; line-height: 1.25; text-transform: uppercase; }
.aogfc-editor-side ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.aogfc-editor-side li { padding-bottom: 12px; border-bottom: 1px solid var(--aogfc-border); }
.aogfc-editor-side li:last-child { border-bottom: 0; }
.aogfc-editor-side span { display: block; margin-bottom: 5px; color: var(--aogfc-green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.aogfc-editor-side strong,
.aogfc-editor-side a { color: #26384d; font-weight: 800; line-height: 1.55; }
.aogfc-editor-side__btn { width: 100%; margin-top: 18px; justify-content: center; }
.aogfc-editor-page--about .aogfc-editor-side { padding: 18px; border-color: #bedcf5; background: #f7fbff; box-shadow: 0 16px 34px rgba(0,63,134,.1); }
.aogfc-editor-page--about .aogfc-editor-side h2 { margin-bottom: 14px; color: var(--aogfc-green-dark); font-size: 22px; text-align: center; }
.aogfc-editor-page--about .aogfc-editor-side ul { gap: 8px; }
.aogfc-editor-page--about .aogfc-editor-side li { position: relative; padding: 10px 12px 10px 15px; border: 1px solid #d8e9f8; border-radius: 8px; background: #fff; box-shadow: 0 7px 16px rgba(0,63,134,.05); overflow: hidden; }
.aogfc-editor-page--about .aogfc-editor-side li::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, var(--aogfc-red), var(--aogfc-green)); }
.aogfc-editor-page--about .aogfc-editor-side li:last-child { border-bottom: 1px solid #d8e9f8; }
.aogfc-editor-page--about .aogfc-editor-side span { margin-bottom: 5px; color: var(--aogfc-red); font-size: 12px; }
.aogfc-editor-page--about .aogfc-editor-side strong,
.aogfc-editor-page--about .aogfc-editor-side a { display: block; color: #25364b; font-size: 15px; font-weight: 900; overflow-wrap: anywhere; }
.aogfc-editor-page--about .aogfc-editor-side a.aogfc-editor-side__btn { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 50px; margin-top: 14px; padding: 0 16px; border: 0; border-radius: 8px; background: linear-gradient(135deg, #ed1c24 0%, #0b63c7 100%); color: #fff; font-size: 17px; font-weight: 900; line-height: 1.2; text-align: center; white-space: nowrap; box-shadow: 0 16px 30px rgba(237,28,36,.3), 0 10px 24px rgba(0,91,184,.24); text-transform: uppercase; }
.aogfc-editor-page--about .aogfc-editor-side a.aogfc-editor-side__btn::before { content: "\260E"; margin-right: 9px; font-size: 20px; line-height: 1; }
.aogfc-editor-page--about .aogfc-editor-side a.aogfc-editor-side__btn:hover { color: #fff; background: linear-gradient(135deg, #c91019 0%, #004fa5 100%); box-shadow: 0 20px 34px rgba(237,28,36,.34), 0 12px 28px rgba(0,91,184,.28); transform: translateY(-2px); }
@media (max-width: 1024px) {
    .aogfc-editor-page__grid { grid-template-columns: minmax(0, 1fr); }
    .aogfc-editor-side { position: static; }
    .aogfc-static-flex-sidebar .aogfc-container { grid-template-columns: minmax(0, 1fr); }
}
.aogfc-static-flexible { padding-bottom: 58px; }
.aogfc-static-flex-banner { width: 100%; background: #fff; overflow: hidden; }
.aogfc-static-flex-banner picture,
.aogfc-static-flex-banner img { display: block; width: 100%; }
.aogfc-static-flex-banner img { aspect-ratio: 2172 / 724; object-fit: cover; }
.aogfc-static-flex-intro { padding: 52px 0 28px; background: linear-gradient(180deg, var(--aogfc-red-soft) 0%, #fff 100%); text-align: center; }
.aogfc-static-flex-intro .aogfc-breadcrumb { justify-content: center; }
.aogfc-static-flex-intro .aogfc-eyebrow { color: var(--aogfc-red); }
.aogfc-static-flex-intro h1 { margin: 0; color: var(--aogfc-green-dark); font-size: clamp(40px, 5.8vw, 78px); line-height: 1; font-weight: 900; text-transform: uppercase; }
.aogfc-static-flex-intro h2 { max-width: 980px; margin: 18px auto 0; color: var(--aogfc-green-dark); font-size: clamp(26px, 3vw, 42px); line-height: 1.18; text-transform: uppercase; }
.aogfc-static-flex-intro__content { max-width: 920px; margin: 24px auto 0; color: #24364b; font-size: 18px; line-height: 1.82; }
.aogfc-static-flex-content { padding: 34px 0; }
.aogfc-static-flex-content .aogfc-static-content { margin-top: 0; }
.aogfc-static-flex-sidebar { padding: 42px 0 64px; }
.aogfc-static-flex-sidebar .aogfc-container { width: min(1180px, calc(100% - 48px)); grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; }
.aogfc-static-flex-sidebar .aogfc-static-content { margin-top: 0; max-width: none; padding: 30px 34px; }
.aogfc-static-flex-sidebar .aogfc-static-content h2:first-child { margin-top: 0; font-size: clamp(26px, 2.4vw, 34px); }
.aogfc-static-flex-contact { padding: 34px 0; }
.aogfc-static-flex-contact .aogfc-contact-form-card { width: min(100%, 980px); margin-inline: auto; padding: 28px; border-radius: 8px; box-shadow: 0 16px 36px rgba(0,63,134,.075); }
.aogfc-static-flex-contact .aogfc-contact-form-card h2,
.aogfc-static-flex-contact .aogfc-contact-form-card > p { text-align: center; }
.aogfc-static-flex-contact .aogfc-contact-form-card > p { max-width: 720px; margin-inline: auto; color: #44556a; font-size: 17px; line-height: 1.65; }
.aogfc-static-flex-quick { padding: 34px 0; }
.aogfc-static-flex-quick .aogfc-editor-side { position: static; width: min(100%, 980px); margin-inline: auto; padding: 30px; border-color: #cfe4f8; background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); box-shadow: 0 18px 42px rgba(0,63,134,.09); }
.aogfc-static-flex-quick .aogfc-editor-side h2 { margin: 0 0 22px; color: var(--aogfc-green-dark); font-size: clamp(24px, 2.4vw, 32px); text-align: center; letter-spacing: 0; }
.aogfc-static-flex-quick .aogfc-editor-side ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.aogfc-static-flex-quick .aogfc-editor-side li { position: relative; min-height: 104px; padding: 18px 18px 18px 20px; border: 1px solid #d8e9f8; border-radius: 8px; background: #fff; box-shadow: 0 8px 18px rgba(0,63,134,.045); overflow: hidden; }
.aogfc-static-flex-quick .aogfc-editor-side li::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, var(--aogfc-red), var(--aogfc-green)); }
.aogfc-static-flex-quick .aogfc-editor-side li:last-child { border-bottom: 1px solid #d8e9f8; }
.aogfc-static-flex-quick .aogfc-editor-side .aogfc-static-info-item--wide { grid-column: 1 / -1; min-height: 96px; }
.aogfc-static-flex-quick .aogfc-editor-side span { margin-bottom: 8px; color: var(--aogfc-red); font-size: 13px; line-height: 1.25; }
.aogfc-static-flex-quick .aogfc-editor-side strong,
.aogfc-static-flex-quick .aogfc-editor-side a:not(.aogfc-editor-side__btn) { display: block; color: #26384d; font-size: 18px; font-weight: 900; line-height: 1.45; overflow-wrap: anywhere; }
.aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn { display: flex; width: min(100%, 290px); min-height: 56px; margin: 24px auto 0; border: 0; border-radius: 8px; background: linear-gradient(135deg, #ed1c24 0%, #0b63c7 100%); color: #fff; font-size: 18px; font-weight: 900; box-shadow: 0 18px 32px rgba(237,28,36,.3), 0 12px 26px rgba(0,91,184,.25); text-transform: uppercase; }
.aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn::before { content: "\260E"; margin-right: 9px; font-size: 20px; line-height: 1; }
.aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn:hover { color: #fff; background: linear-gradient(135deg, #c91019 0%, #004fa5 100%); box-shadow: 0 22px 38px rgba(237,28,36,.34), 0 14px 30px rgba(0,91,184,.28); transform: translateY(-2px); }
.aogfc-static-flex-map { padding: 34px 0 64px; }
.aogfc-static-flex-map .aogfc-contact-map-flat { width: min(100%, 980px); margin-inline: auto; }
@media (max-width: 1024px) {
    .aogfc-static-flex-sidebar .aogfc-container { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 760px) {
    .aogfc-static-flex-quick { padding: 24px 0; }
    .aogfc-static-flex-quick .aogfc-editor-side { padding: 22px 16px; }
    .aogfc-static-flex-quick .aogfc-editor-side ul { grid-template-columns: minmax(0, 1fr); }
    .aogfc-static-flex-quick .aogfc-editor-side .aogfc-static-info-item--wide { grid-column: auto; }
    .aogfc-static-flex-quick .aogfc-editor-side a.aogfc-editor-side__btn { width: 100%; }
}
.aogfc-contact-layout__right { display: grid; gap: 22px; align-content: start; }
.aogfc-contact-form-card .aogfc-lead-form label { font-size: 14px; }

/* About page only: open-letter frame */
.aogfc-about-letter-page {
    padding: 54px 0 72px;
    background: #f7fafc;
}
.aogfc-about-letter-shell {
    width: min(1140px, calc(100% - 30px));
    margin-inline: auto;
}
.aogfc-about-letter {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border: 5px solid transparent;
    border-radius: 18px;
    background:
        linear-gradient(#f1e7d4, #f1e7d4) padding-box,
        repeating-linear-gradient(135deg, var(--aogfc-leaf-dark) 0 8px, #f1e7d4 8px 16px, var(--aogfc-green) 16px 24px, #f1e7d4 24px 32px) border-box;
    box-shadow: 0 22px 54px rgba(0, 33, 72, .12);
}
.aogfc-about-letter__inner {
    min-height: 604px;
    padding: 42px 58px 50px;
    color: #263242;
    font-size: 18px;
    line-height: 1.86;
}
.aogfc-about-letter__head {
    position: relative;
    margin: 0 auto 30px;
    max-width: 760px;
    text-align: center;
}
.aogfc-about-letter__head::before {
    content: "";
    display: block;
    width: 86px;
    height: 4px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aogfc-leaf), var(--aogfc-green));
}
.aogfc-about-letter__head::after {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--aogfc-leaf);
}
.aogfc-about-letter h1 {
    margin: 0;
    color: var(--aogfc-green-dark);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.12;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-about-letter__intro {
    margin: 0 0 26px;
    color: #425064;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 600;
}
.aogfc-about-letter__content > *:first-child,
.aogfc-about-letter__empty > *:first-child {
    margin-top: 0;
}
.aogfc-about-letter__content p,
.aogfc-about-letter__empty p {
    margin: 0 0 18px;
}
.aogfc-about-letter__content h2,
.aogfc-about-letter__content h3,
.aogfc-about-letter__empty h2 {
    color: var(--aogfc-blue-dark);
    line-height: 1.28;
}
.aogfc-about-letter__content h2,
.aogfc-about-letter__empty h2 {
    margin: 30px 0 12px;
    font-size: 28px;
}
.aogfc-about-letter__content h3 {
    margin: 24px 0 10px;
    font-size: 22px;
}
.aogfc-about-letter__content ul,
.aogfc-about-letter__content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}
.aogfc-about-letter__content li {
    margin-bottom: 8px;
}
.aogfc-about-letter__content a {
    color: var(--aogfc-blue-dark);
    font-weight: 800;
}
.aogfc-about-letter__content blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--aogfc-blue);
    background: rgba(255, 255, 255, .38);
    color: var(--aogfc-blue-dark);
    font-weight: 800;
}
.aogfc-about-letter__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
@media (max-width: 760px) {
    .aogfc-about-letter-page {
        padding: 34px 0 48px;
    }
    .aogfc-about-letter {
        min-height: 560px;
        border-width: 4px;
        border-radius: 14px;
        background:
            linear-gradient(#f1e7d4, #f1e7d4) padding-box,
            repeating-linear-gradient(135deg, var(--aogfc-leaf-dark) 0 7px, #f1e7d4 7px 14px, var(--aogfc-green) 14px 21px, #f1e7d4 21px 28px) border-box;
    }
    .aogfc-about-letter__inner {
        min-height: 548px;
        padding: 28px 22px 34px;
        font-size: 16px;
        line-height: 1.78;
    }
    .aogfc-about-letter h1 {
        font-size: 38px;
    }
    .aogfc-about-letter__intro {
        font-size: 17px;
    }
}
.aogfc-static-empty { margin: 34px auto 0; max-width: 820px; padding: 34px; border: 1px dashed #b7daf5; border-radius: 8px; background: #fff; text-align: center; box-shadow: 0 12px 28px rgba(0,63,134,.055); }
.aogfc-static-empty h2 { margin: 0 0 10px; color: var(--aogfc-green-dark); font-size: 26px; }
.aogfc-static-empty p { margin: 0; color: #405267; line-height: 1.65; }

@media (min-width: 761px) {
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition-delay: 0s !important;
    }
    .aogfc-menu .menu-item-has-children.is-hover > .sub-menu * {
        visibility: visible !important;
    }
}

/* Shared content templates */
.aogfc-content-body {
    overflow-wrap: break-word;
}
.aogfc-content-body iframe,
.aogfc-content-body video,
.aogfc-content-body embed,
.aogfc-content-body object {
    max-width: 100%;
}
.aogfc-content-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}
.aogfc-content-body th,
.aogfc-content-body td {
    padding: 10px 12px;
    border: 1px solid #dfe7f1;
}
.aogfc-common-archive .aogfc-blog-hero .aogfc-breadcrumb {
    margin-bottom: 14px;
}
.aogfc-common-archive .aogfc-blog-hero {
    background: #f4f8fd;
    border-bottom: 1px solid #e2ebf6;
}
.aogfc-post-children {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}
.aogfc-post-children a,
.aogfc-tag-cloud a,
.aogfc-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid #e2edf8;
    border-radius: 4px;
    background: #fff;
    color: #16345f;
    font-size: 14px;
    font-weight: 800;
}
.aogfc-post-children a:hover,
.aogfc-tag-cloud a:hover,
.aogfc-quick-links a:hover {
    border-color: var(--aogfc-blue-dark);
    color: var(--aogfc-blue-dark);
}
.aogfc-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.aogfc-sidebar-block h2 {
    margin: 0 0 14px;
    color: var(--aogfc-blue-dark);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}
.aogfc-blog-sidebar .aogfc-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    margin: 0 0 18px;
    border: 1px solid var(--aogfc-border);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,63,134,.05);
}
.aogfc-blog-sidebar .aogfc-search input {
    min-width: 0;
    height: 46px;
    border: 0;
    border-radius: 0;
    padding: 0 18px;
    background: transparent;
    font-size: 15px;
}
.aogfc-blog-sidebar .aogfc-search button {
    min-width: 96px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    margin: 0;
    padding: 0 20px;
    background: var(--aogfc-green);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.aogfc-single-post__footer {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}
.aogfc-single-tags,
.aogfc-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.aogfc-single-tags span,
.aogfc-share-links span {
    color: #516071;
    font-weight: 800;
}
.aogfc-single-tags a,
.aogfc-share-links a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 11px;
    border: 1px solid #e2edf8;
    border-radius: 4px;
    background: #fff;
    color: var(--aogfc-blue-dark);
    font-size: 14px;
    font-weight: 800;
}
.aogfc-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.aogfc-post-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 4px;
    background: #f0f6ff;
    color: var(--aogfc-blue-dark);
    font-weight: 900;
}
.aogfc-author-box {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    border: 1px solid #e2edf8;
    border-radius: 6px;
    background: var(--aogfc-blue-soft);
}
.aogfc-author-box img {
    border-radius: 50%;
}
.aogfc-author-box h2 {
    margin: 0 0 6px;
    color: #10213d;
    font-size: 18px;
}
.aogfc-author-box p {
    margin: 0;
    color: #5b6878;
}
.aogfc-search-head {
    max-width: 760px;
    margin-bottom: 28px;
}
.aogfc-search-head p {
    margin: 8px 0 18px;
    color: #607086;
}
.aogfc-search-results-grid {
    display: grid;
    gap: 16px;
}
.aogfc-search-result {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border: 1px solid #deebf7;
    border-radius: 6px;
    background: #fff;
}
.aogfc-search-result__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: #f4f7fb;
}
.aogfc-search-result__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aogfc-search-result__type {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--aogfc-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-search-result h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.35;
}
.aogfc-search-result p {
    margin: 0;
    color: #5f6b7a;
}
.aogfc-not-found {
    padding: 70px 0;
    background: #f5f8fc;
}
.aogfc-not-found__panel {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}
.aogfc-not-found__panel > span {
    display: block;
    color: var(--aogfc-blue);
    font-size: clamp(54px, 9vw, 110px);
    line-height: 1;
    font-weight: 900;
}
.aogfc-not-found__panel h1 {
    margin: 10px 0;
    color: var(--aogfc-blue-dark);
}
.aogfc-not-found__panel p {
    color: #5f6b7a;
}
.aogfc-not-found .aogfc-search {
    max-width: 560px;
    margin: 20px auto;
}
.aogfc-quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}
.aogfc-not-found__products {
    margin-top: 28px;
}
.aogfc-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}
.aogfc-contact-info,
.aogfc-contact-form-card {
    border: 1px solid #e2edf8;
    border-radius: 6px;
    background: #fff;
    padding: 22px;
}
.aogfc-contact-info {
    display: grid;
    gap: 14px;
}
.aogfc-contact-info article {
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
}
.aogfc-contact-info article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.aogfc-contact-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--aogfc-blue-dark);
    font-weight: 900;
}
.aogfc-contact-info p {
    margin: 0;
    color: #4f5e70;
    line-height: 1.6;
}
.aogfc-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.aogfc-contact-social a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 13px;
    border-radius: 4px;
    background: var(--aogfc-blue-dark);
    color: #fff;
    font-weight: 900;
}
.aogfc-contact-form-card h2 {
    margin: 0 0 16px;
    color: var(--aogfc-blue-dark);
    font-size: 24px;
}
.aogfc-contact-form-card .aogfc-lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.aogfc-contact-form-card .aogfc-lead-form label {
    display: grid;
    gap: 8px;
    color: #263348;
    font-weight: 800;
}
.aogfc-contact-form-card .aogfc-lead-form input,
.aogfc-contact-form-card .aogfc-lead-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d8e9f8;
    border-radius: 6px;
    padding-inline: 14px;
    font: inherit;
}
.aogfc-contact-form-card .aogfc-lead-form input {
    height: 48px;
}
.aogfc-contact-form-card .aogfc-lead-form textarea {
    min-height: 116px;
    padding-top: 12px;
    resize: vertical;
}
.aogfc-contact-form-card .aogfc-lead-form label:nth-child(3) {
    grid-column: 1 / -1;
}
.aogfc-contact-form-card .aogfc-lead-form .aogfc-btn {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 210px;
    min-height: 50px;
    border-radius: 6px;
}
@media (max-width: 760px) {
    .aogfc-post-nav,
    .aogfc-author-box,
    .aogfc-search-result,
    .aogfc-contact-grid {
        grid-template-columns: 1fr;
    }
    .aogfc-search-result__image {
        max-height: 220px;
    }
}

/* Contact page: follows the surveyed /lien-he demo structure */
.aogfc-contact-demo-page {
    background:
        linear-gradient(180deg, rgba(237,28,36,.08) 0%, #fff 260px);
    color: #212529;
}
.aogfc-contact-container {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 15px;
}
.aogfc-contact-crumb {
    min-height: 70px;
    display: flex;
    align-items: center;
    background: transparent;
}
.aogfc-contact-crumb .aogfc-breadcrumb {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.aogfc-contact-crumb .aogfc-breadcrumb a,
.aogfc-contact-crumb .aogfc-breadcrumb span {
    color: #516071;
}
.aogfc-contact-layout {
    padding: 28px 0 64px;
    display: grid;
    gap: 26px;
    justify-items: center;
}
.aogfc-contact-demo-page .aogfc-contact-form-card {
    width: min(100%, 980px);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(0,63,134,.075);
}
.aogfc-contact-demo-page .aogfc-contact-form-card h2,
.aogfc-contact-demo-page .aogfc-contact-form-card > p {
    text-align: center;
}
.aogfc-contact-demo-page .aogfc-contact-form-card > p {
    max-width: 720px;
    margin-inline: auto;
    color: #44556a;
    font-size: 17px;
    line-height: 1.65;
}
.aogfc-contact-company {
    position: relative;
    margin: 0;
    width: min(100%, 980px);
    padding: 26px;
    border: 1px solid rgba(0,91,184,.12);
    border-radius: 8px;
    background: #fff;
    color: #34465d;
    font-size: 15px;
    line-height: 1.65;
    box-shadow: 0 14px 34px rgba(0,63,134,.07);
    overflow: hidden;
}
.aogfc-contact-page-head {
    position: relative;
    max-width: 920px;
    margin-inline: auto;
    padding: 30px 0 4px;
    text-align: center;
}
.aogfc-contact-page-head h1 {
    margin: 0;
    color: var(--aogfc-green-dark);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-contact-page-head__content {
    max-width: 760px;
    margin: 18px auto 0;
    color: #26384d;
    font-size: 17px;
    line-height: 1.75;
}
.aogfc-contact-page-head__content h2 {
    margin: 0 0 10px;
    color: var(--aogfc-green-dark);
    font-size: 26px;
    line-height: 1.25;
}
.aogfc-contact-page-head__content blockquote {
    margin: 18px 0 0;
}
.aogfc-contact-company h1 {
    margin: 0;
    color: var(--aogfc-green-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-contact-company h2 {
    margin: 0 0 18px;
    color: var(--aogfc-green-dark);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.aogfc-contact-company__eyebrow {
    margin: 0 0 10px;
    color: var(--aogfc-leaf-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.aogfc-contact-info-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid #dcecf8;
    border-radius: 8px;
    background: #f8fbff;
}
.aogfc-contact-info-row p {
    margin: 0;
}
.aogfc-contact-info-row__icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0,91,184,.12);
    color: var(--aogfc-green);
}
.aogfc-contact-info-row__icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}
.aogfc-contact-info-row p > span {
    display: block;
    margin-bottom: 4px;
    color: var(--aogfc-leaf-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-contact-company a {
    color: var(--aogfc-green-dark);
    font-weight: 800;
}
.aogfc-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.aogfc-contact-info-row--wide {
    grid-column: 1 / -1;
}
.aogfc-contact-map-flat {
    width: min(100%, 980px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,91,184,.12);
    background: #fff;
    box-shadow: 0 18px 42px rgba(0,63,134,.08);
}
.aogfc-contact-map-flat iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
    display: block;
}
@media (max-width: 991px) {
    .aogfc-contact-crumb {
        min-height: 64px;
    }
    .aogfc-contact-layout__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }
    .aogfc-contact-map-flat iframe {
        height: 420px;
        min-height: 420px;
    }
}
@media (max-width: 760px) {
    .aogfc-contact-demo-page .aogfc-contact-form-card {
        padding: 22px;
    }
    .aogfc-contact-form-card .aogfc-lead-form,
    .aogfc-contact-info-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .aogfc-contact-info-row--wide {
        grid-column: auto;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .aogfc-contact-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .aogfc-contact-container {
        max-width: 960px;
    }
}
@media (max-width: 575px) {
    .aogfc-contact-layout {
        padding-bottom: 42px;
    }
    .aogfc-contact-company {
        padding: 22px;
    }
    .aogfc-contact-page-head {
        padding-top: 20px;
    }
    .aogfc-contact-company h1 {
        font-size: 28px;
    }
    .aogfc-contact-map-flat iframe {
        height: 320px;
        min-height: 320px;
    }
}

/* Product taxonomy page rebuilt from the demo rhythm */
.aogfc-product-tax {
    padding: 0 0 48px;
    background: #fff;
}
.aogfc-product-tax > .aogfc-container {
    width: min(var(--aogfc-container), calc(100% - 48px));
    margin-inline: auto;
}
.aogfc-tax-banner {
    width: 100%;
    background: #f2f5f9;
    overflow: hidden;
}
.aogfc-tax-banner picture,
.aogfc-tax-banner img {
    display: block;
    width: 100%;
}
.aogfc-tax-banner img {
    height: clamp(180px, 25.5vw, 327px);
    object-fit: cover;
}
.aogfc-tax-head {
    padding: 24px 0 14px;
}
.aogfc-product-tax .aogfc-breadcrumb {
    margin: 0;
    padding: 0;
    color: #5d6675;
    font-size: 14px;
    line-height: 1.6;
}
.aogfc-product-tax .aogfc-breadcrumb a {
    color: #5d6675;
    font-weight: 500;
}
.aogfc-product-tax .aogfc-breadcrumb span:last-child {
    color: var(--aogfc-blue-dark);
    font-weight: 800;
}
.aogfc-product-tax .aogfc-page-title {
    margin: 8px 0 0;
    color: #10213d;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}
.aogfc-product-tax .aogfc-page-intro {
    max-width: 860px;
    margin: 10px 0 0;
    color: #5e6a7a;
    font-size: 15px;
    line-height: 1.65;
}
.aogfc-tax-children {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0 22px;
}
.aogfc-tax-children a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 8px 10px;
    border: 1px solid #e2edf8;
    border-radius: 5px;
    background: #fff;
    color: #19314f;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(12, 44, 90, .06);
}
.aogfc-tax-children a:hover {
    border-color: #a9cce8;
    color: var(--aogfc-blue);
    transform: translateY(-1px);
}
.aogfc-tax-children img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    background: #f4f7fb;
}
.aogfc-tax-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-height: 46px;
    margin-bottom: 20px;
}
.aogfc-tax-toolbar p {
    margin: 0 auto 0 0;
    color: #667386;
    font-size: 14px;
}
.aogfc-filter-open,
.aogfc-filter-close {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #d8e9f8;
    border-radius: 4px;
    background: #fff;
    color: #15345f;
    font-weight: 900;
    cursor: pointer;
}
.aogfc-filter-open {
    display: none;
}
.aogfc-tax-sort select {
    min-width: 190px;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid #d8e0ea;
    border-radius: 3px;
    background: #fff;
    color: #263348;
    font-size: 14px;
}
.aogfc-tax-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.aogfc-product-tax.has-sidebar .aogfc-tax-layout {
    grid-template-columns: 324px minmax(0, 1fr);
    gap: 24px;
}
.aogfc-product-tax .aogfc-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.aogfc-product-tax.has-sidebar .aogfc-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 24px;
}
.aogfc-product-tax .aogfc-product-card {
    border: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
}
.aogfc-product-tax .aogfc-product-card:hover {
    box-shadow: none;
    transform: none;
}
.aogfc-product-tax .aogfc-product-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: #f5f5f5;
}
.aogfc-product-tax .aogfc-product-card__image::after {
    content: "Tùy chọn";
    position: absolute;
    left: 50%;
    bottom: 12px;
    min-width: 96px;
    min-height: 32px;
    display: grid;
    place-items: center;
    border-radius: 3px;
    background: var(--aogfc-blue-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease;
}
.aogfc-product-tax .aogfc-product-card:hover .aogfc-product-card__image::after {
    opacity: 1;
    transform: translate(-50%, 0);
}
.aogfc-product-tax .aogfc-product-card__body {
    padding: 10px 0 0;
    text-align: left;
}
.aogfc-product-tax .aogfc-product-card__cat,
.aogfc-product-tax .aogfc-product-card__body p {
    display: none;
}
.aogfc-product-tax .aogfc-product-card h3 {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}
.aogfc-product-tax .aogfc-product-card h3 a {
    color: #222;
}
.aogfc-product-tax .aogfc-product-card h3 a:hover {
    color: var(--aogfc-blue-dark);
}
.aogfc-product-tax .aogfc-product-card__price {
    color: var(--aogfc-blue);
    font-size: 15px;
    font-weight: 900;
}
.aogfc-product-tax .aogfc-load-more {
    border-radius: 4px;
    background: var(--aogfc-blue-dark);
    border-color: var(--aogfc-blue-dark);
}
.aogfc-product-tax .aogfc-seo-block {
    margin-top: 42px;
    padding: 24px;
    border: 1px solid #e2edf8;
    border-radius: 6px;
    background: var(--aogfc-blue-soft);
}
.aogfc-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,.62);
    opacity: 0;
    transition: opacity .2s ease;
}
.aogfc-filter-overlay.is-open {
    opacity: 1;
}
@media (max-width: 1024px) {
    .aogfc-product-tax > .aogfc-container {
        width: min(690px, calc(100% - 78px));
    }
    .aogfc-tax-banner img {
        height: clamp(170px, 27.8vw, 240px);
    }
    .aogfc-tax-children,
    .aogfc-product-tax .aogfc-product-grid,
    .aogfc-product-tax.has-sidebar .aogfc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .aogfc-product-tax.has-sidebar .aogfc-tax-layout {
        grid-template-columns: 1fr;
    }
    .aogfc-filter-open {
        display: inline-flex;
        align-items: center;
    }
    .aogfc-tax-sidebar-wrap {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        width: 300px;
        max-width: 84vw;
        height: 100vh;
        padding: 14px;
        overflow: auto;
        background: #fff;
        transform: translateX(-100%);
        transition: transform .22s ease;
    }
    .aogfc-tax-sidebar-wrap.is-open {
        transform: translateX(0);
    }
    body.admin-bar .aogfc-tax-sidebar-wrap {
        top: 32px;
        height: calc(100vh - 32px);
    }
    .aogfc-filter-close {
        display: inline-flex;
        align-items: center;
        margin-bottom: 12px;
    }
}
@media (max-width: 760px) {
    .aogfc-product-tax > .aogfc-container {
        width: calc(100% - 30px);
    }
    .aogfc-product-tax {
        padding-bottom: 36px;
    }
    .aogfc-tax-banner img {
        height: clamp(104px, 27.8vw, 130px);
    }
    .aogfc-tax-head {
        padding: 18px 0 12px;
    }
    .aogfc-product-tax .aogfc-page-title {
        font-size: 22px;
    }
    .aogfc-product-tax .aogfc-page-intro {
        font-size: 14px;
    }
    .aogfc-tax-children {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }
    .aogfc-tax-children a {
        flex: 0 0 72%;
        min-height: 58px;
        scroll-snap-align: start;
    }
    .aogfc-tax-toolbar {
        align-items: stretch;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }
    .aogfc-tax-toolbar p {
        flex: 1 1 100%;
    }
    .aogfc-tax-sort {
        flex: 1 1 170px;
    }
    .aogfc-tax-sort select {
        width: 100%;
    }
    .aogfc-product-tax .aogfc-product-grid,
    .aogfc-product-tax.has-sidebar .aogfc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 30px;
    }
    .aogfc-product-tax .aogfc-product-card__image::after {
        display: none;
    }
    .aogfc-product-tax .aogfc-product-card h3 {
        font-size: 13px;
        line-height: 1.4;
    }
    body.admin-bar .aogfc-tax-sidebar-wrap {
        top: 46px;
        height: calc(100vh - 46px);
    }
}
/* Hard stop: hidden desktop dropdowns must never catch mouse events over page content. */
@media (min-width: 761px) {
    .aogfc-menu .sub-menu,
    .aogfc-menu .sub-menu *,
    .aogfc-mega,
    .aogfc-mega * {
        pointer-events: none !important;
    }

    .aogfc-menu > .menu-item-has-children.is-hover > .sub-menu,
    .aogfc-menu > .menu-item-has-children.is-hover > .sub-menu *,
    .aogfc-menu > .has-mega.is-hover > .aogfc-mega,
    .aogfc-menu > .has-mega.is-hover > .aogfc-mega * {
        pointer-events: auto !important;
    }
}

/* Header rebuilt from the medical uniform demo structure */
.aogfc-site-header {
    --aogfc-header-logo-offset: clamp(0px, calc(924px - 50vw), 149px);
    position: relative;
    z-index: 90;
    background: #fff;
    color: var(--aogfc-header-primary);
    box-shadow: none;
}
.aogfc-site-header.is-sticky-enabled.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
body.admin-bar .aogfc-site-header.is-sticky-enabled.is-stuck { top: 32px; }
body.aogfc-has-sticky-header { scroll-padding-top: var(--aogfc-sticky-offset, 150px); }
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-notice,
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-nav-row { display: none; }
.aogfc-header-notice {
    min-height: 55px;
    background: #fff;
    color: var(--aogfc-header-primary);
    border-bottom: 1px solid rgba(10,2,71,.08);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}
.aogfc-header-notice .aogfc-container {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aogfc-header-main { background: var(--aogfc-header-primary); }
.aogfc-header-main__inner {
    min-height: 61px;
    display: grid;
    grid-template-columns: 242px minmax(340px, 1fr) auto;
    align-items: center;
    gap: 18px;
}
.aogfc-site-header .aogfc-logo {
    display: inline-flex;
    width: fit-content;
    max-width: 242px;
    min-width: 0;
    align-items: center;
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
}
.aogfc-site-header .aogfc-logo img {
    width: auto;
    max-width: 242px;
    height: auto;
    max-height: 61px;
    object-fit: contain;
    transform: none;
    transform-origin: initial;
}
.aogfc-header-search { position: relative; width: 100%; }
.aogfc-search-form {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 44px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.92);
    background: #fff;
}
.aogfc-search-form__selector,
.aogfc-search-form__submit,
.aogfc-search-form__cats button {
    border: 0;
    background: transparent;
    cursor: pointer;
}
.aogfc-search-form__selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
    color: #333;
    border-right: 1px solid #ebebeb;
    font-size: 13px;
    white-space: nowrap;
}
.aogfc-search-form__input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    padding: 0 14px;
    color: #222;
    font-size: 13px;
}
.aogfc-search-form__submit {
    display: grid;
    place-items: center;
    color: #fff;
    background: #0a0a0a;
}
.aogfc-search-form__submit:hover { background: var(--aogfc-header-accent); }
.aogfc-search-form__cats {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 210px;
    max-height: 380px;
    overflow: auto;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    z-index: 120;
}
.aogfc-search-form__cats button {
    display: block;
    width: 100%;
    min-height: 36px;
    padding: 9px 13px;
    color: #333;
    font-size: 13px;
    text-align: left;
}
.aogfc-search-form__cats button:hover,
.aogfc-search-form__cats button.is-active { color: var(--aogfc-header-accent); background: var(--aogfc-blue-soft); }
.aogfc-search-results {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    max-height: 360px;
    overflow: auto;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
    z-index: 121;
}
.aogfc-search-results__state { padding: 13px 14px; color: #667085; font-size: 14px; }
.aogfc-search-results a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f1f1f1;
}
.aogfc-search-results a:last-child { border-bottom: 0; }
.aogfc-search-results a:hover,
.aogfc-search-results a:focus { background: var(--aogfc-blue-soft); color: var(--aogfc-header-accent); }
.aogfc-search-results img,
.aogfc-search-results__thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    background: var(--aogfc-blue-soft);
}
.aogfc-search-results strong { display: block; color: #20242a; font-size: 13px; line-height: 1.35; }
.aogfc-search-results small { display: block; margin-top: 3px; color: #667085; font-size: 12px; line-height: 1.35; }
.aogfc-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 12px;
    min-width: 0;
}
.aogfc-header-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.aogfc-header-social a {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}
.aogfc-header-social a:hover,
.aogfc-header-social a:focus { color: var(--aogfc-header-accent); }
.aogfc-header-consult-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}
.aogfc-header-action-btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(0,63,134,.16);
}
.aogfc-header-action-btn span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.aogfc-header-action-btn span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aogfc-header-action-btn--call {
    background: var(--aogfc-header-primary);
    color: #fff;
}
.aogfc-header-action-btn--zalo {
    border: 2px solid var(--aogfc-header-accent);
    background: linear-gradient(135deg, #fff 0%, var(--aogfc-blue-soft) 100%);
    color: var(--aogfc-header-primary);
}
.aogfc-header-action-btn:hover,
.aogfc-header-action-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0,63,134,.22);
}
.aogfc-header-action-btn--call:hover,
.aogfc-header-action-btn--call:focus {
    background: var(--aogfc-header-accent);
    color: #fff;
}
.aogfc-header-action-btn--zalo:hover,
.aogfc-header-action-btn--zalo:focus {
    background: var(--aogfc-header-accent);
    color: #fff;
}
.aogfc-header-account {
    display: inline-grid;
    width: 34px;
    height: 34px;
    align-items: center;
    place-items: center;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    color: #fff;
}
.aogfc-header-account:hover,
.aogfc-header-account:focus { border-color: var(--aogfc-header-accent); color: var(--aogfc-header-accent); }
.aogfc-header-cta {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.85);
    color: var(--aogfc-header-primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.aogfc-header-cta:hover { background: var(--aogfc-header-accent); border-color: var(--aogfc-header-accent); color: #fff; }
.aogfc-header-cart {
    position: relative;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
}
.aogfc-header-cart span {
    position: absolute;
    right: -6px;
    top: -5px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--aogfc-header-accent);
    font-size: 11px;
    font-weight: 900;
}
.aogfc-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}
.aogfc-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
}
.aogfc-menu-toggle b {
    display: none;
    margin-left: 8px;
    font-size: 12px;
    text-transform: uppercase;
}
.aogfc-menu-toggle--nav { display: none; }
.aogfc-header-nav-row {
    min-height: 40px;
    background: #a6a6a6;
    color: #fff;
}
.aogfc-header-nav-row__inner {
    min-height: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}
.aogfc-header-search-mobile { display: none; }
.aogfc-header-nav-row .aogfc-main-nav { border: 0; background: transparent; }
.aogfc-header-nav-row .aogfc-menu { min-height: 40px; justify-content: flex-start; gap: 0; }
.aogfc-header-nav-row .aogfc-menu > li { position: relative; }
.aogfc-header-nav-row .aogfc-menu > li + li::before { display: none; }
.aogfc-header-nav-row .aogfc-menu > li > a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    font-weight: 800;
    text-transform: none;
}
.aogfc-header-nav-row .aogfc-menu > li:hover > a,
.aogfc-header-nav-row .aogfc-menu > li.current-menu-item > a,
.aogfc-header-nav-row .aogfc-menu > li.current-menu-ancestor > a { color: #fff; background: rgba(255,255,255,.12); }
.aogfc-header-nav-row .aogfc-menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 130;
    width: 220px;
    min-width: 220px;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.aogfc-header-nav-row .aogfc-menu .menu-item-has-children:hover > .sub-menu,
.aogfc-header-nav-row .aogfc-menu .menu-item-has-children.is-hover > .sub-menu,
.aogfc-header-nav-row .aogfc-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto !important;
    transform: translateY(0);
}
.aogfc-header-nav-row .aogfc-menu .sub-menu li { display: block; border-bottom: 1px solid #f2f2f2; }
.aogfc-header-nav-row .aogfc-menu .sub-menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 14px;
    color: #333;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    text-transform: none;
}
.aogfc-header-nav-row .aogfc-menu .sub-menu a:hover,
.aogfc-header-nav-row .aogfc-menu .sub-menu a:focus { color: var(--aogfc-header-accent); background: #f6f9fc; }
.aogfc-header-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}
.aogfc-header-contact span { font-weight: 600; }
.aogfc-header-contact a { color: #fff; font-weight: 900; }
.aogfc-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(11, 24, 43, .7);
    opacity: 0;
    transition: opacity .22s ease;
}
.aogfc-mobile-overlay.is-open { opacity: 1; }
.aogfc-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 292px;
    max-width: 86vw;
    height: 100vh;
    overflow: auto;
    background: #f7fbff;
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: 18px 0 40px rgba(10,38,70,.22);
}
body.admin-bar .aogfc-mobile-drawer { top: 32px; height: calc(100vh - 32px); }
.aogfc-mobile-drawer.is-open { transform: translateX(0); }
.aogfc-mobile-drawer__head {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    background: #fff;
    border-bottom: 1px solid #d7e9f8;
}
.aogfc-mobile-drawer .aogfc-logo img { max-width: 152px; max-height: 42px; }
.aogfc-mobile-close {
    width: 34px;
    height: 34px;
    border: 1px solid #cfe4f7;
    border-radius: 8px;
    background: #f3f9ff;
    color: var(--aogfc-header-primary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.aogfc-mobile-menu,
.aogfc-mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.aogfc-mobile-menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 44px 10px 18px;
    border-bottom: 1px solid #e3edf6;
    color: #172941;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
    background: #fff;
}
.aogfc-mobile-menu a:hover,
.aogfc-mobile-menu a:focus { color: var(--aogfc-header-primary); background: #eef7ff; }
.aogfc-mobile-menu .menu-item-has-children { position: relative; }
.aogfc-submenu-toggle {
    position: absolute;
    top: 3px;
    right: 4px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--aogfc-header-primary);
    cursor: pointer;
}
.aogfc-submenu-toggle::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
}
.aogfc-mobile-menu .menu-item-has-children.is-open > .aogfc-submenu-toggle::before { transform: translateY(2px) rotate(225deg); }
.aogfc-mobile-menu .sub-menu {
    display: none;
    padding: 8px 12px 12px;
    border-bottom: 1px solid #d7e9f8;
    background: #f7fbff;
}
.aogfc-mobile-menu .menu-item-has-children.is-open > .sub-menu { display: block; }
.aogfc-mobile-menu .sub-menu li + li { margin-top: 7px; }
.aogfc-mobile-menu .sub-menu .menu-item-has-children { position: relative; }
.aogfc-mobile-menu .sub-menu a {
    position: relative;
    min-height: 37px;
    display: flex;
    align-items: center;
    padding: 8px 30px 8px 12px;
    border: 1px solid #d8eafb;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    color: #152b45;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: none;
}
.aogfc-mobile-menu .sub-menu .menu-item-has-children > a {
    padding-right: 44px;
    color: #0758b8;
}
.aogfc-mobile-menu .sub-menu .sub-menu {
    margin: 7px 0 2px 10px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 2px solid #cfe4f7;
    background: transparent;
}
.aogfc-mobile-menu .sub-menu .sub-menu a {
    min-height: 34px;
    border-color: #e2edf8;
    background: #fff;
    font-size: 12px;
    font-weight: 750;
}
.aogfc-mobile-contact {
    display: grid;
    gap: 9px;
    padding: 2px 12px 18px;
}
.aogfc-mobile-contact a {
    color: var(--aogfc-header-primary);
    font-weight: 900;
}
.aogfc-mobile-contact__call,
.aogfc-mobile-contact__zalo,
.aogfc-mobile-contact__email {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
}
.aogfc-mobile-contact__call img,
.aogfc-mobile-contact__zalo img {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
.aogfc-mobile-contact__call {
    background: linear-gradient(135deg, #ed1c24 0%, #0766c8 100%);
    color: #fff !important;
    box-shadow: 0 12px 22px rgba(237,28,36,.18);
}
.aogfc-mobile-contact__call span { font-size: 12px; text-transform: uppercase; }
.aogfc-mobile-contact__call strong { font-size: 13px; }
.aogfc-mobile-contact__call span,
.aogfc-mobile-contact__call strong { color: inherit; }
.aogfc-mobile-contact__email {
    justify-content: flex-start;
    border: 1px solid #d8eafb;
    background: #fff;
    color: #0d5fb8;
    font-size: 13px;
    line-height: 1.25;
    word-break: break-word;
}
.aogfc-mobile-contact__email span {
    position: relative;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1f2;
    color: #ed1c24;
    font-size: 15px;
    font-weight: 900;
}
.aogfc-mobile-contact__email span::before {
    content: "";
    width: 14px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 3px;
}
.aogfc-mobile-contact__email span::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 7px;
    width: 12px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transform-origin: center;
}
.aogfc-mobile-contact__zalo {
    border: 1px solid #0b83dc;
    background: #fff;
    color: #0766c8;
}
body.aogfc-mobile-lock { overflow: hidden; }

@media (max-width: 1180px) {
    .aogfc-header-main__inner { grid-template-columns: 220px minmax(260px, 1fr) auto; gap: 14px; }
    .aogfc-header-social { display: none; }
    .aogfc-header-action-btn { padding-inline: 13px; font-size: 12px; }
    .aogfc-header-nav-row .aogfc-menu > li > a { padding-inline: 10px; font-size: 12px; }
}
@media (max-width: 1024px) {
    .aogfc-header-main__inner {
        min-height: 61px;
        grid-template-columns: minmax(180px, 242px) auto;
        justify-content: space-between;
    }
    .aogfc-header-main__inner > .aogfc-header-search { display: none; }
    .aogfc-site-header .aogfc-logo { max-width: 270px; }
    .aogfc-site-header .aogfc-logo img { max-width: 230px; max-height: 61px; }
    .aogfc-header-consult-actions { display: none; }
    .aogfc-header-nav-row__inner { grid-template-columns: auto minmax(0, 1fr); }
    .aogfc-menu-toggle--nav {
        display: inline-flex;
        width: auto;
        min-width: 44px;
        height: 40px;
        align-items: center;
        padding: 0 10px;
        color: #fff;
    }
    .aogfc-menu-toggle--nav b { display: inline; }
    .aogfc-header-nav-row .aogfc-main-nav { display: none; }
    .aogfc-header-search-mobile { display: block; }
    .aogfc-header-search-mobile .aogfc-search-form { height: 34px; grid-template-columns: 82px minmax(0, 1fr) 40px; }
    .aogfc-header-search-mobile .aogfc-search-form__selector,
    .aogfc-header-search-mobile .aogfc-search-form__input { font-size: 12px; }
    .aogfc-header-contact { display: none; }
}
@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
    body.admin-bar .aogfc-site-header.is-sticky-enabled.is-stuck { top: 46px; }
    body.admin-bar .aogfc-mobile-drawer { top: 46px; height: calc(100vh - 46px); }
    .aogfc-header-main { position: relative; }
    .aogfc-header-main__inner {
        position: relative;
        min-height: 60px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 8px;
    }
    .aogfc-site-header .aogfc-logo { max-width: 270px; }
    .aogfc-site-header .aogfc-logo img { max-width: 210px; max-height: 60px; }
    .aogfc-header-main__inner > .aogfc-logo {
        grid-column: 2;
        justify-self: center;
    }
    .aogfc-header-main__inner > .aogfc-header-search { display: none; }
    .aogfc-header-actions {
        grid-column: 3;
        justify-self: end;
    }
    .aogfc-header-main .aogfc-header-call {
        display: none;
    }
    .aogfc-header-main__inner .aogfc-menu-toggle {
        display: inline-flex;
        width: 38px;
        height: 38px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        grid-column: auto;
        padding: 0;
        border: 1px solid #cfe4f7;
        border-radius: 8px;
        background: #fff;
        color: #0758b8;
        box-shadow: 0 8px 18px rgba(7,88,184,.1);
    }
    .aogfc-header-main__inner .aogfc-menu-toggle > span:not(.screen-reader-text) {
        width: 20px;
        height: 2px;
        margin: 0;
        background: currentColor;
    }
    .aogfc-header-main__inner .aogfc-menu-toggle > span:nth-child(3) { width: 14px; }
    .aogfc-header-actions { gap: 0; }
    .aogfc-header-cta { display: none; }
    .aogfc-header-account { display: none; }
    .aogfc-header-cart { display: none; }
    .aogfc-header-nav-row { display: none; }
    .aogfc-header-nav-row__inner {
        width: calc(100% - 20px);
        min-height: 40px;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
    }
    .aogfc-header-search-mobile .aogfc-search-form { grid-template-columns: 78px minmax(0, 1fr) 38px; }
    .aogfc-header-search-mobile .aogfc-search-form__selector { padding-inline: 8px; }
    .aogfc-header-search-mobile .aogfc-search-form__input { padding-inline: 9px; }
    .aogfc-header-search-mobile .aogfc-search-results { position: fixed; left: 10px; right: 10px; top: 102px; max-height: min(360px, calc(100vh - 126px)); }
    .aogfc-main { padding-top: 0; }
}
@media (max-width: 430px) {
    .aogfc-search-results { max-height: 300px; }
}

/* New global footer */
.aogfc-footer-newsletter {
    background: linear-gradient(135deg, var(--aogfc-leaf-dark) 0%, var(--aogfc-leaf) 100%);
    color: #fff;
    padding: 32px 0;
}
.aogfc-footer-newsletter .aogfc-container,
.aogfc-site-footer .aogfc-container {
    width: min(1140px, calc(100% - 30px));
    margin-inline: auto;
}
.aogfc-footer-newsletter__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
    align-items: center;
    gap: 30px;
}
.aogfc-footer-newsletter h2 {
    margin: 0 0 6px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-footer-newsletter p {
    margin: 0;
    color: rgba(255,255,255,.82);
}
.aogfc-footer-newsletter__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 0;
}
.aogfc-footer-newsletter__form input,
.aogfc-footer-newsletter__form button {
    min-height: 50px;
    border: 0;
    font-size: 15px;
}
.aogfc-footer-newsletter__form input {
    min-width: 0;
    padding: 0 16px;
    border-radius: 4px 0 0 4px;
}
.aogfc-footer-newsletter__form button {
    border-radius: 0 4px 4px 0;
    background: var(--aogfc-blue);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.aogfc-footer-newsletter__status {
    grid-column: 1 / -1;
    min-height: 18px;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.88);
}
.aogfc-site-footer {
    border-top: 8px solid var(--aogfc-header-accent, #ed1c24);
    background:
        radial-gradient(circle at 12% 0, rgba(0, 91, 184, .12), transparent 28%),
        linear-gradient(180deg, #eef9ff 0%, #f8fcff 58%, #eaf6ff 100%);
    color: #0758b8;
}
.aogfc-site-footer__main {
    padding: 36px 0 32px;
}
.aogfc-site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(150px, 2fr) minmax(190px, 3fr) minmax(150px, 2fr);
    gap: 30px;
}
.aogfc-site-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 340px;
    min-height: 88px;
    margin-bottom: 16px;
    padding: 12px 18px;
    border: 1px solid rgba(7, 88, 184, .16);
    border-radius: 10px;
    background: linear-gradient(135deg, #fff, #eaf7ff);
    box-shadow: 0 16px 34px rgba(0, 91, 184, .1), inset 0 1px 0 rgba(255,255,255,.85);
}
.aogfc-site-footer__logo img {
    width: auto;
    max-width: 300px;
    max-height: 72px;
    object-fit: contain;
}
.aogfc-site-footer__brand h2,
.aogfc-site-footer__links h2 {
    margin: 0 0 18px;
    color: var(--aogfc-header-accent, #ed1c24);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-site-footer__intro {
    margin: 0 0 17px;
    max-width: 520px;
    color: #0758b8;
    font-size: 15px;
    line-height: 1.7;
}
.aogfc-site-footer__contact,
.aogfc-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.aogfc-site-footer__contact {
    display: grid;
    gap: 11px;
}
.aogfc-site-footer__contact li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    color: #0758b8;
    font-size: 15px;
    line-height: 1.5;
}
.aogfc-site-footer__contact-icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #0758b8;
    background: #fff;
    border: 1px solid rgba(7, 88, 184, .18);
    box-shadow: 0 8px 18px rgba(0, 91, 184, .09);
    border-radius: 50%;
}
.aogfc-site-footer__contact-icon svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aogfc-site-footer a {
    color: #0758b8;
}
.aogfc-site-footer a:hover,
.aogfc-site-footer a:focus {
    color: var(--aogfc-header-accent, #ed1c24);
}
.aogfc-site-footer__payments {
    margin-top: 22px;
}
.aogfc-site-footer__payments strong {
    display: block;
    margin-bottom: 10px;
    color: var(--aogfc-header-accent, #ed1c24);
    font-size: 14px;
}
.aogfc-site-footer__payments div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.aogfc-site-footer__payments img {
    width: 48px;
    height: 30px;
    object-fit: contain;
    padding: 4px;
    border-radius: 4px;
    background: #fff;
}
.aogfc-site-footer__links h2 button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    text-transform: inherit;
}
.aogfc-footer-menu {
    display: grid;
    gap: 10px;
}
.aogfc-footer-menu a {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    color: #0758b8;
    font-size: 14px;
    line-height: 1.45;
}
.aogfc-footer-menu a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--aogfc-header-accent, #ed1c24);
}
.aogfc-site-footer__bottom {
    min-height: 45px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(7, 88, 184, .14);
    background: #0758b8;
    color: #fff;
    font-size: 13px;
    text-align: center;
}
.aogfc-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 950;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--aogfc-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    cursor: pointer;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.aogfc-back-to-top::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translateY(3px) rotate(45deg);
}
.aogfc-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.aogfc-floating-contact {
    position: static;
    z-index: 1000;
}
.mess-fixed {
    position: fixed;
    right: 37px;
    bottom: 200px;
    z-index: 1000;
    width: 42px;
    height: 42px;
}
.mess-fixed a,
.hotline-phone-ring-img-circle .pps-btn-img,
.mess-ring-img-circle .pps-btn-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mess-fixed__icon {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--aogfc-blue);
    box-shadow: 0 8px 20px rgba(9, 132, 255, .24);
    transition: transform .18s ease, box-shadow .18s ease;
}
.mess-fixed__icon::before {
    content: "";
    position: absolute;
    inset: 9px;
    background: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.05 2 11.05c0 2.86 1.46 5.41 3.75 7.07V22l3.44-1.89c.89.25 1.83.39 2.81.39 5.52 0 10-4.05 10-9.05S17.52 2 12 2Zm1.04 12.2-2.55-2.72-5.01 2.72 5.5-5.85 2.61 2.72 4.95-2.72-5.5 5.85Z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.05 2 11.05c0 2.86 1.46 5.41 3.75 7.07V22l3.44-1.89c.89.25 1.83.39 2.81.39 5.52 0 10-4.05 10-9.05S17.52 2 12 2Zm1.04 12.2-2.55-2.72-5.01 2.72 5.5-5.85 2.61 2.72 4.95-2.72-5.5 5.85Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.mess-fixed__icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(9,132,255,.16);
    z-index: -1;
}
.mess-fixed a:hover .mess-fixed__icon,
.mess-fixed a:focus-visible .mess-fixed__icon {
    transform: scale(1.04);
    box-shadow: 0 10px 24px rgba(9, 132, 255, .3);
}
.hotline-phone-ring-wrap,
.mess-ring-wrap {
    position: fixed;
    right: max(8px, calc((100vw - 1180px) / 2 - 88px));
    z-index: 1000;
    width: 72px;
    height: 72px;
}
.hotline-phone-ring-wrap { bottom: 100px; }
.mess-ring-wrap { bottom: 30px; }
@media (max-width: 1360px) {
    .hotline-phone-ring-wrap,
    .mess-ring-wrap {
        right: -24px;
    }
}
.hotline-phone-ring,
.mess-ring {
    position: relative;
    z-index: 11;
    width: 72px;
    height: 72px;
}
.hotline-phone-ring-circle,
.mess-ring-circle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 62px;
    height: 62px;
    border-radius: 100%;
    background-color: transparent;
    opacity: .5;
    transform-origin: 50% 50%;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
}
.hotline-phone-ring-circle {
    border: 1.6px solid var(--aogfc-red);
}
.mess-ring-circle {
    border: 1.6px solid var(--aogfc-blue);
}
.hotline-phone-ring-circle-fill,
.mess-ring-circle-fill {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border: 1.6px solid transparent;
    border-radius: 100%;
    opacity: .6;
    transform-origin: 50% 50%;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
}
.hotline-phone-ring-circle-fill {
    background-color: rgba(230, 59, 59, .7);
}
.mess-ring-circle-fill {
    background-color: rgba(13, 148, 228, .7);
}
.hotline-phone-ring-img-circle,
.mess-ring-img-circle {
    position: absolute;
    top: 21px;
    left: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border: 1.6px solid transparent;
    border-radius: 100%;
    transform-origin: 50% 50%;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}
.hotline-phone-ring-img-circle {
    background-color: var(--aogfc-red);
    box-shadow: 0 5px 14px rgba(239,63,63,.28);
}
.mess-ring-img-circle {
    background-color: var(--aogfc-blue);
}
.hotline-phone-ring-img-circle .pps-btn-img {
    width: 33px;
    height: 33px;
}
.mess-ring-img-circle .pps-btn-img,
.mess-ring-img-circle img {
    width: 30px;
    height: 30px;
}
.aogfc-floating-icon {
    position: relative;
    z-index: 2;
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
}
.aogfc-floating-icon--phone {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.69-.36 1.05-.24 1.16.39 2.4.6 3.67.6.58 0 1.04.46 1.04 1.04v3.5c0 .58-.46 1.04-1.04 1.04C10.67 21.12 2.88 13.33 2.88 3.87c0-.58.46-1.04 1.04-1.04h3.51c.58 0 1.04.46 1.04 1.04 0 1.27.21 2.51.6 3.67.11.36.04.76-.25 1.05l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.69-.36 1.05-.24 1.16.39 2.4.6 3.67.6.58 0 1.04.46 1.04 1.04v3.5c0 .58-.46 1.04-1.04 1.04C10.67 21.12 2.88 13.33 2.88 3.87c0-.58.46-1.04 1.04-1.04h3.51c.58 0 1.04.46 1.04 1.04 0 1.27.21 2.51.6 3.67.11.36.04.76-.25 1.05l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hotline-phone-ring-img-circle img,
.mess-ring-img-circle img {
    position: relative;
    z-index: 2;
    max-width: none;
    object-fit: contain;
}
.aogfc-floating-contact__label {
    position: absolute;
    top: 50%;
    right: calc(100% + 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--aogfc-red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(16px, -50%) scale(.96);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 1;
}
.hotline-phone-ring-img-circle .aogfc-floating-contact__label {
    right: -14px;
    min-width: 226px;
    height: 48px;
    padding-right: 64px;
    justify-content: center;
}
.mess-fixed .aogfc-floating-contact__label,
.mess-ring-img-circle .aogfc-floating-contact__label {
    min-width: 130px;
    height: 42px;
    background: var(--aogfc-blue);
    font-size: 15px;
}
.mess-fixed a:hover .aogfc-floating-contact__label,
.mess-fixed a:focus-visible .aogfc-floating-contact__label,
.hotline-phone-ring-img-circle .pps-btn-img:hover .aogfc-floating-contact__label,
.hotline-phone-ring-img-circle .pps-btn-img:focus-visible .aogfc-floating-contact__label,
.mess-ring-img-circle .pps-btn-img:hover .aogfc-floating-contact__label,
.mess-ring-img-circle .pps-btn-img:focus-visible .aogfc-floating-contact__label {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    visibility: visible;
}
@keyframes phonering-alo-circle-anim {
    0% {
        opacity: .1;
        transform: rotate(0) scale(.5) skew(1deg);
    }
    30% {
        opacity: .5;
        transform: rotate(0) scale(.7) skew(1deg);
    }
    100% {
        opacity: .1;
        transform: rotate(0) scale(1) skew(1deg);
    }
}
@keyframes phonering-alo-circle-fill-anim {
    0% {
        opacity: .2;
        transform: rotate(0) scale(.7) skew(1deg);
    }
    50% {
        opacity: .6;
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        opacity: .2;
        transform: rotate(0) scale(.7) skew(1deg);
    }
}
@keyframes phonering-alo-circle-img-anim {
    0%,
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10%,
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20%,
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}
@media (max-width: 1024px) {
    .aogfc-footer-newsletter__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .aogfc-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }
}
@media (max-width: 760px) {
    .aogfc-footer-newsletter {
        padding: 26px 0;
    }
    .aogfc-footer-newsletter__form {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .aogfc-footer-newsletter__form input,
    .aogfc-footer-newsletter__form button {
        border-radius: 4px;
    }
    .aogfc-footer-newsletter__actions {
        justify-content: flex-start;
    }
    .aogfc-site-footer__main {
        padding: 28px 0 18px;
    }
    .aogfc-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .aogfc-site-footer__brand {
        padding-bottom: 18px;
    }
    .aogfc-site-footer__logo {
        max-width: 300px;
        min-height: 78px;
        padding: 10px 14px;
    }
    .aogfc-site-footer__logo img {
        max-width: 270px;
        max-height: 62px;
    }
    .aogfc-site-footer__links {
        border-top: 1px solid rgba(7, 88, 184, .14);
    }
    .aogfc-site-footer__links h2 {
        margin: 0;
    }
    .aogfc-site-footer__links h2 button {
        position: relative;
        min-height: 50px;
        padding-right: 34px;
    }
    .aogfc-site-footer__links h2 button::after {
        content: "";
        position: absolute;
        right: 3px;
        top: 18px;
        width: 9px;
        height: 9px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform .18s ease;
    }
    .hotline-phone-ring-wrap,
    .mess-ring-wrap {
        right: 4px;
        width: 74px;
        height: 74px;
    }
    .hotline-phone-ring-wrap { bottom: 78px; }
    .mess-ring-wrap { bottom: 18px; }
    .hotline-phone-ring,
    .mess-ring {
        width: 74px;
        height: 74px;
    }
    .hotline-phone-ring-circle,
    .mess-ring-circle {
        top: 7px;
        left: 7px;
        width: 58px;
        height: 58px;
    }
    .hotline-phone-ring-circle-fill,
    .mess-ring-circle-fill {
        top: 17px;
        left: 17px;
        width: 38px;
        height: 38px;
    }
    .hotline-phone-ring-img-circle,
    .mess-ring-img-circle {
        top: 25px;
        left: 25px;
        width: 26px;
        height: 26px;
    }
    .hotline-phone-ring-img-circle .pps-btn-img {
        width: 26px;
        height: 26px;
    }
    .mess-ring-img-circle .pps-btn-img,
    .mess-ring-img-circle img {
        width: 24px;
        height: 24px;
    }
    .aogfc-floating-icon {
        width: 14px;
        height: 14px;
    }
    .aogfc-floating-contact__label {
        display: none;
    }
    .aogfc-back-to-top {
        right: 16px;
        bottom: 142px;
    }
    .aogfc-static-flex-sidebar .aogfc-static-content {
        padding-right: 28px;
    }
    .aogfc-static-flex-sidebar .aogfc-static-content p,
    .aogfc-static-flex-sidebar .aogfc-static-content ul,
    .aogfc-static-flex-sidebar .aogfc-static-content ol {
        padding-right: 44px;
    }
    .aogfc-site-footer__links h2 button[aria-expanded="true"]::after {
        transform: rotate(225deg);
    }
    .aogfc-site-footer__panel {
        padding-bottom: 14px;
    }
    .aogfc-footer-menu {
        gap: 7px;
    }
    .aogfc-footer-menu a {
        min-height: 34px;
    }
    .aogfc-site-footer__bottom {
        padding: 12px 0 84px;
        line-height: 1.45;
    }
    .aogfc-floating-contact,
    .hotline-phone-ring-wrap,
    .mess-ring-wrap {
        display: none;
    }
    .aogfc-back-to-top {
        right: 12px;
        bottom: 18px;
    }
}

/* Flexible homepage layouts */
.aogfc-demo-home {
    background: #fff;
    color: var(--aogfc-header-primary, #0a0247);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
}
.aogfc-demo-home .aogfc-container {
    width: min(1170px, calc(100% - 30px));
    margin-inline: auto;
}
.aogfc-demo-home .aogfc-home-section {
    padding: 28px 0;
    background: #fff;
}
.aogfc-demo-home .aogfc-home-section:nth-of-type(even) { background: #fbfbfb; }
.aogfc-demo-home .aogfc-home-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 12px;
    border-bottom: 2px solid rgba(10, 2, 71, .16);
}
.aogfc-demo-home .aogfc-home-section__head h2 {
    position: relative;
    margin: 0;
    padding: 0 0 9px 22px;
    color: var(--aogfc-header-primary, #0a0247);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-section__head h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid currentColor;
}
.aogfc-demo-home .aogfc-home-section__head p {
    margin: 0 0 10px;
    color: #485067;
    font-size: 14px;
}
.aogfc-demo-home .aogfc-home-section__actions {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 7px;
}
.aogfc-demo-home .aogfc-home-section__actions button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(10, 2, 71, .2);
    border-radius: 50%;
    background: #fff;
    color: var(--aogfc-header-primary, #0a0247);
    cursor: pointer;
}
.aogfc-demo-home .aogfc-home-section__actions [data-slider-prev]::before { content: "<"; font-size: 18px; line-height: 1; }
.aogfc-demo-home .aogfc-home-section__actions [data-slider-next]::before { content: ">"; font-size: 18px; line-height: 1; }
.aogfc-demo-home .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-section__actions button:focus {
    background: var(--aogfc-header-primary, #0a0247);
    color: #fff;
}
.aogfc-demo-home .aogfc-home-cats > .aogfc-container,
.aogfc-demo-home .aogfc-home-products > .aogfc-container,
.aogfc-demo-home .aogfc-home-product-tabs > .aogfc-container {
    position: relative;
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions {
    position: absolute;
    left: -18px;
    right: -18px;
    top: 50%;
    z-index: 5;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    transform: translateY(-50%);
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button {
    width: 34px;
    height: 34px;
    border-color: rgba(7, 88, 184, .16);
    background: rgba(255, 255, 255, .92);
    color: #0758b8;
    box-shadow: 0 8px 22px rgba(0, 63, 134, .12);
    pointer-events: auto;
    transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button::before,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button::before,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions [data-slider-prev]::before,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions [data-slider-prev]::before,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions [data-slider-prev]::before {
    transform: translateX(2px) rotate(-45deg);
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions [data-slider-next]::before,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions [data-slider-next]::before,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions [data-slider-next]::before {
    transform: translateX(-2px) rotate(135deg);
}
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions button:focus,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button:focus,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button:hover,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button:focus {
    border-color: #0758b8;
    background: #0758b8;
    color: #fff;
    box-shadow: 0 10px 26px rgba(0, 91, 184, .2);
    transform: translateY(-1px);
}
.aogfc-demo-home .aogfc-home-section__more,
.aogfc-demo-home .aogfc-home-section__view-all {
    color: var(--aogfc-header-primary, #0a0247);
    font-size: 13px;
    font-weight: 900;
}
.aogfc-demo-home .aogfc-home-cat-rail,
.aogfc-demo-home .aogfc-home-products--slider .aogfc-home-product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--home-cols, 4) - 1) * 10px) / var(--home-cols, 4));
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.aogfc-demo-home .aogfc-home-cat-rail::-webkit-scrollbar,
.aogfc-demo-home .aogfc-home-product-grid::-webkit-scrollbar { height: 5px; }
.aogfc-demo-home .aogfc-home-cat-rail::-webkit-scrollbar-thumb,
.aogfc-demo-home .aogfc-home-product-grid::-webkit-scrollbar-thumb {
    background: rgba(10, 2, 71, .2);
    border-radius: 99px;
}
.aogfc-demo-home .aogfc-home-cat-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    display: block;
    scroll-snap-align: start;
    background: #e9eef8;
}
.aogfc-demo-home .aogfc-home-cat-card__image,
.aogfc-demo-home .aogfc-home-triptych__item {
    position: relative;
    display: block;
    overflow: hidden;
    background: #eef1f6;
}
.aogfc-demo-home .aogfc-home-cat-card__image { aspect-ratio: 1 / 1; }
.aogfc-demo-home .aogfc-home-triptych__item { margin: 0; aspect-ratio: 4 / 5; }
.aogfc-demo-home .aogfc-home-cat-card__image::after,
.aogfc-demo-home .aogfc-home-triptych__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .19);
    pointer-events: none;
}
.aogfc-demo-home .aogfc-home-cat-card__image img,
.aogfc-demo-home .aogfc-home-triptych__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.aogfc-demo-home .aogfc-home-cat-card:hover img,
.aogfc-demo-home .aogfc-home-cat-card:focus img,
.aogfc-demo-home .aogfc-home-triptych__item:hover img,
.aogfc-demo-home .aogfc-home-triptych__item:focus img,
.aogfc-demo-home .aogfc-product-card:hover img { transform: scale(1.05); }
.aogfc-demo-home .aogfc-home-cat-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 9px 8px 10px;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .65));
}
.aogfc-demo-home .aogfc-home-cat-card__body strong {
    display: block;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-cat-card__body small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-products--grid .aogfc-home-product-grid,
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-product-grid {
    display: grid;
    grid-template-columns: repeat(var(--home-cols, 4), minmax(0, 1fr));
    gap: 14px 12px;
}
.aogfc-demo-home .aogfc-product-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    overflow: visible;
}
.aogfc-demo-home .aogfc-product-card__image {
    aspect-ratio: 4 / 5;
    background: #f0f0f0;
    overflow: hidden;
}
.aogfc-demo-home .aogfc-product-card__body {
    padding: 9px 4px 0;
    text-align: left;
}
.aogfc-demo-home .aogfc-product-card__cat,
.aogfc-demo-home .aogfc-product-card__body p { display: none; }
.aogfc-demo-home .aogfc-product-card h3 {
    min-height: 42px;
    margin: 0 0 4px;
    color: var(--aogfc-header-primary, #0a0247);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}
.aogfc-demo-home .aogfc-product-card__price {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--aogfc-header-accent, #d81685);
    font-size: 14px;
    font-weight: 900;
}
.aogfc-demo-home .aogfc-home-triptych__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.aogfc-demo-home .aogfc-home-triptych__item span {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}
.aogfc-demo-home .aogfc-home-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 0 14px;
    padding: 0 0 8px;
}
.aogfc-demo-home .aogfc-home-tabs button {
    min-height: 40px;
    flex: 0 0 auto;
    border: 1px solid rgba(10, 2, 71, .18);
    background: #fff;
    color: var(--aogfc-header-primary, #0a0247);
    padding: 0 16px;
    font-weight: 900;
    cursor: pointer;
}
.aogfc-demo-home .aogfc-home-tabs button.is-active,
.aogfc-demo-home .aogfc-home-tabs button:hover {
    border-color: var(--aogfc-header-primary, #0a0247);
    background: var(--aogfc-header-primary, #0a0247);
    color: #fff;
}
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-tabs__panel:not(.is-active) { display: none; }
.aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-tabs__panel.is-active { display: block; }
.aogfc-demo-home .aogfc-home-section__bottom {
    margin-top: 20px;
    text-align: center;
}
.aogfc-demo-home .aogfc-home-section__view-all {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--aogfc-header-primary, #0a0247);
    padding: 0 18px;
    text-transform: uppercase;
}
.aogfc-demo-home .aogfc-home-section__view-all:hover {
    background: var(--aogfc-header-primary, #0a0247);
    color: #fff;
}
@media (max-width: 1024px) {
    .aogfc-demo-home .aogfc-home-cat-rail,
    .aogfc-demo-home .aogfc-home-products--slider .aogfc-home-product-grid {
        grid-auto-columns: calc((100% - (var(--home-cols-tablet, 3) - 1) * 10px) / var(--home-cols-tablet, 3));
    }
    .aogfc-demo-home .aogfc-home-products--grid .aogfc-home-product-grid,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-product-grid {
        grid-template-columns: repeat(var(--home-cols-tablet, 3), minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .aogfc-demo-home .aogfc-container { width: calc(100% - 20px); }
    .aogfc-demo-home .aogfc-home-section { padding: 22px 0; }
    .aogfc-demo-home .aogfc-home-section__head { align-items: flex-start; gap: 8px; }
    .aogfc-demo-home .aogfc-home-section__head h2 { font-size: 18px; padding-left: 18px; }
    .aogfc-demo-home .aogfc-home-section__head p { display: none; }
    .aogfc-demo-home .aogfc-home-cat-rail,
    .aogfc-demo-home .aogfc-home-products--slider .aogfc-home-product-grid {
        grid-auto-columns: calc((100% - (var(--home-cols-mobile, 2) - 1) * 8px) / var(--home-cols-mobile, 2));
        gap: 8px;
    }
    .aogfc-demo-home .aogfc-home-products--grid .aogfc-home-product-grid,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-product-grid {
        grid-template-columns: repeat(var(--home-cols-mobile, 2), minmax(0, 1fr));
        gap: 13px 8px;
    }
    .aogfc-demo-home .aogfc-home-cat-card__body strong { font-size: 11px; }
    .aogfc-demo-home .aogfc-home-cat-card__body small { font-size: 10px; }
    .aogfc-demo-home .aogfc-product-card h3 { font-size: 12px; min-height: 48px; }
    .aogfc-demo-home .aogfc-product-card__price { font-size: 12px; }
    .aogfc-demo-home .aogfc-home-triptych__grid { grid-template-columns: 1fr; gap: 12px; }
    .aogfc-demo-home .aogfc-home-tabs button { min-height: 36px; padding-inline: 12px; font-size: 12px; }
    .aogfc-demo-home .aogfc-home-cats .aogfc-home-section__actions,
    .aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions {
        left: 5px;
        right: 5px;
    }
    .aogfc-demo-home .aogfc-home-products .aogfc-home-section__actions button,
    .aogfc-demo-home .aogfc-home-product-tabs .aogfc-home-section__actions button {
        width: 32px;
        height: 32px;
    }
}
/* Demo-style header structure with vertical product menu */
.aogfc-site-header {
    position: relative;
    z-index: 300;
    background: #fff;
}
.aogfc-header-notice {
    min-height: 42px;
    background: #000;
    color: #fff;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}
.aogfc-header-notice .aogfc-container { min-height: 42px; }
.aogfc-header-usp {
    background: #fff;
    border-bottom: 1px solid #eee6f5;
}
.aogfc-header-usp__inner {
    min-height: 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
}
.aogfc-header-usp__item {
    min-height: 80px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    border-left: 1px solid #eee6f5;
}
.aogfc-header-usp__item:first-child { border-left: 0; }
.aogfc-header-usp__icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1px solid #e4edf7;
    border-radius: 18px;
    color: #0758b8;
    background: linear-gradient(145deg, #fff 0%, #f2f8ff 100%);
    box-shadow: 0 10px 22px rgba(0,91,184,.1);
}
.aogfc-header-usp__icon svg {
    width: 42px;
    height: 42px;
}
.aogfc-header-usp__icon .aogfc-usp-line {
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.aogfc-header-usp__icon .aogfc-usp-dot {
    stroke: var(--aogfc-header-accent, #ed1c24);
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.aogfc-header-usp__item strong {
    display: block;
    color: #111;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}
.aogfc-header-usp__item small {
    display: block;
    margin-top: 5px;
    color: #bebebe;
    font-size: 15px;
    line-height: 1.25;
}
.aogfc-header-main { background: var(--aogfc-header-primary, #0a0247); }
.aogfc-header-main__inner {
    min-height: 76px;
    grid-template-columns: 300px minmax(360px, 1fr) auto;
    gap: 24px;
}
.aogfc-site-header .aogfc-logo img {
    max-width: 210px;
    max-height: 70px;
}
.aogfc-search-form {
    height: 44px;
    grid-template-columns: minmax(240px, 1fr) 128px 64px;
    border: 0;
}
.aogfc-search-form__selector {
    grid-column: 2;
    grid-row: 1;
    border-left: 1px solid #e5e5e5;
    border-right: 0;
}
.aogfc-search-form__input {
    grid-column: 1;
    grid-row: 1;
}
.aogfc-search-form__submit {
    grid-column: 3;
    grid-row: 1;
    margin-left: 5px;
}
.aogfc-header-account {
    width: auto;
    min-width: 176px;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0;
}
.aogfc-header-account::after {
    content: "Đăng nhập / Đăng ký";
    margin-left: 10px;
    color: currentColor;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.aogfc-header-call {
    min-width: 148px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.aogfc-header-call:hover,
.aogfc-header-call:focus {
    border-color: var(--aogfc-header-accent, #ed1c24);
    background: var(--aogfc-header-accent, #ed1c24);
    color: #fff;
}
.aogfc-header-cart {
    width: 70px;
    height: 48px;
    align-content: center;
    justify-items: center;
    font-size: 0;
}
.aogfc-header-cart::after {
    content: "Giỏ Hàng";
    display: block;
    margin-top: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.aogfc-header-cart span {
    right: 12px;
    top: 0;
}
.aogfc-header-nav-row {
    min-height: 50px;
    background: #a6a6a6;
}
.aogfc-header-nav-row__inner {
    position: relative;
    min-height: 50px;
    grid-template-columns: 344px minmax(0, 1fr);
    gap: 0;
}
.aogfc-vertical-menu {
    position: relative;
    align-self: stretch;
    z-index: 310;
}
.aogfc-vertical-menu__toggle {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 22px;
    border: 0;
    background: var(--aogfc-header-primary, #0a0247);
    color: #fff;
    cursor: pointer;
    text-align: left;
}
.aogfc-vertical-menu__toggle span {
    font-size: 22px;
    line-height: 1;
}
.aogfc-vertical-menu__toggle strong {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.aogfc-vertical-menu__panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 344px;
    overflow: visible;
    background: #fff;
    border: 1px solid #dedede;
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.aogfc-vertical-menu.is-open .aogfc-vertical-menu__panel,
.aogfc-vertical-menu.is-home-open .aogfc-vertical-menu__panel,
.aogfc-vertical-menu:focus-within .aogfc-vertical-menu__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.aogfc-vertical-menu__list,
.aogfc-vertical-menu__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.aogfc-vertical-menu__list > li { position: relative; }
.aogfc-vertical-menu__list > li > a {
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 9px 34px 9px 18px;
    border-bottom: 1px solid #f1f1f1;
    color: #20242a;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
}
.aogfc-vertical-menu__list > .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #b9b9b9;
    border-bottom: 2px solid #b9b9b9;
    transform: translateY(-50%) rotate(-45deg);
}
.aogfc-vertical-menu__list > li:hover > a,
.aogfc-vertical-menu__list > li:focus-within > a {
    color: var(--aogfc-header-primary, #0a0247);
    background: #f7f8fb;
}
.aogfc-vertical-menu__list .sub-menu {
    position: absolute;
    top: -1px;
    left: 100%;
    z-index: 330;
    min-width: 240px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #dedede;
    box-shadow: 0 12px 26px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.aogfc-vertical-menu__list li:hover > .sub-menu,
.aogfc-vertical-menu__list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}
.aogfc-vertical-menu__list .sub-menu a {
    display: block;
    padding: 9px 16px;
    color: #252525;
    font-size: 14px;
    font-weight: 600;
}
.aogfc-vertical-menu__list .sub-menu a:hover,
.aogfc-vertical-menu__list .sub-menu a:focus {
    color: var(--aogfc-header-accent, #ed1c24);
    background: #f7f8fb;
}
.aogfc-vertical-menu__more a {
    color: #111 !important;
    font-weight: 900 !important;
}
.aogfc-header-nav-row .aogfc-main-nav {
    min-width: 0;
    padding-left: 24px;
}
.aogfc-header-nav-row .aogfc-menu {
    min-height: 50px;
    justify-content: flex-start;
}
.aogfc-header-nav-row .aogfc-menu > li > a {
    min-height: 50px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.aogfc-header-contact {
    min-height: 50px;
    padding-left: 14px;
    font-weight: 900;
}
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-notice,
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-usp,
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-nav-row {
    display: none;
}
@media (max-width: 1180px) {
    .aogfc-header-main__inner {
        grid-template-columns: 220px minmax(300px, 1fr) auto;
        gap: 14px;
    }
    .aogfc-header-nav-row__inner {
        grid-template-columns: 300px minmax(0, 1fr) auto;
    }
    .aogfc-header-nav-row .aogfc-main-nav { padding-left: 14px; }
    .aogfc-vertical-menu__panel,
    .aogfc-vertical-menu__toggle {
        width: 300px;
    }
}
@media (max-width: 1024px) {
    .aogfc-header-usp { display: none; }
    .aogfc-header-main__inner {
        grid-template-columns: minmax(180px, 242px) auto;
        min-height: 61px;
    }
    .aogfc-header-nav-row__inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
    }
    .aogfc-vertical-menu { display: none; }
}
@media (max-width: 760px) {
    .aogfc-header-notice {
        min-height: 34px;
        font-size: 12px;
    }
    .aogfc-header-notice .aogfc-container { min-height: 34px; }
    .aogfc-search-form {
        grid-template-columns: minmax(0, 1fr) 78px 38px;
    }
}

/* Header alignment refinements */
.aogfc-site-header {
    --aogfc-header-side: 324px;
    --aogfc-header-gap: 24px;
}
.aogfc-header-main {
    background: #eef8ff;
    border-top: 1px solid #dbeaf7;
    border-bottom: 1px solid #cfe2f5;
    overflow: visible;
}
.aogfc-header-main__inner {
    min-height: 76px;
    grid-template-columns: var(--aogfc-header-side) minmax(360px, 1fr) auto;
    gap: var(--aogfc-header-gap);
    overflow: visible;
}
.aogfc-site-header .aogfc-logo {
    max-width: var(--aogfc-header-side);
    overflow: visible;
}
.aogfc-site-header .aogfc-logo img {
    max-width: 270px;
    max-height: 100px;
    transform: translateX(14px) scale(1.12, 1.28);
    transform-origin: left center;
    filter: drop-shadow(0 5px 10px rgba(0,91,184,.16));
}
.aogfc-header-main .aogfc-header-call {
    border-color: #0758b8;
    background: #0758b8;
    color: #fff;
    box-shadow: 0 8px 18px rgba(7,88,184,.16);
}
.aogfc-header-main .aogfc-header-call:hover,
.aogfc-header-main .aogfc-header-call:focus {
    border-color: var(--aogfc-header-accent, #ed1c24);
    background: var(--aogfc-header-accent, #ed1c24);
    color: #fff;
}
.aogfc-header-main .aogfc-header-cart {
    color: #0758b8;
}
.aogfc-header-main .aogfc-menu-toggle {
    color: #0758b8;
}
.aogfc-header-nav-row__inner {
    grid-template-columns: calc(var(--aogfc-header-side) + var(--aogfc-header-gap)) minmax(0, 1fr);
}
.aogfc-vertical-menu__toggle,
.aogfc-vertical-menu__panel {
    width: calc(var(--aogfc-header-side) + var(--aogfc-header-gap));
}
@media (max-width: 1180px) {
    .aogfc-site-header {
        --aogfc-header-side: 236px;
        --aogfc-header-gap: 14px;
    }
    .aogfc-header-main__inner {
        grid-template-columns: var(--aogfc-header-side) minmax(300px, 1fr) auto;
    }
    .aogfc-site-header .aogfc-logo img {
        max-width: 238px;
        max-height: 88px;
        transform: translateX(8px) scale(1.08, 1.18);
    }
}
@media (max-width: 1024px) {
    .aogfc-header-main__inner {
        grid-template-columns: minmax(180px, 242px) auto;
    }
    .aogfc-site-header .aogfc-logo img {
        max-width: 230px;
        max-height: 61px;
        transform: none;
    }
}
@media (max-width: 760px) {
    .aogfc-header-main__inner {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }
    .aogfc-site-header .aogfc-logo img {
        max-width: 210px;
        max-height: 60px;
    }
}

/* Header and homepage standard container frame */
@media (min-width: 1025px) {
    :root {
        --aogfc-page-frame: var(--aogfc-container);
        --aogfc-frame-margin: max(24px, calc((100vw - 1350px) / 2));
        --aogfc-header-side: 324px;
        --aogfc-header-gap: 24px;
        --aogfc-frame-left-content: calc(var(--aogfc-frame-margin) + var(--aogfc-header-side) + var(--aogfc-header-gap) + 30px);
    }
    .aogfc-site-header .aogfc-container,
    .aogfc-header-usp__inner,
    .aogfc-header-main__inner,
    .aogfc-header-nav-row__inner {
        width: min(var(--aogfc-page-frame), calc(100vw - 48px));
    }
    .aogfc-demo-home .aogfc-container {
        width: min(var(--aogfc-page-frame), calc(100vw - 48px));
    }
    body.home .aogfc-demo-home > .aogfc-home-section:first-child > .aogfc-container,
    body.front-page .aogfc-demo-home > .aogfc-home-section:first-child > .aogfc-container {
        width: min(
            calc(var(--aogfc-page-frame) - var(--aogfc-header-side) - var(--aogfc-header-gap) - 30px),
            calc(100vw - var(--aogfc-frame-left-content) - var(--aogfc-frame-margin))
        );
        margin-left: var(--aogfc-frame-left-content);
        margin-right: var(--aogfc-frame-margin);
    }
}

/* Product category archive sidebar */
.aogfc-product-tax.has-sidebar .aogfc-tax-sidebar-wrap {
    min-width: 0;
}
.aogfc-product-tax .aogfc-tax-sidebar-wrap > .aogfc-filter-close {
    display: none;
}
.aogfc-product-tax .aogfc-product-cat-sidebar {
    position: sticky;
    top: 120px;
    overflow: hidden;
    border: 1px solid #dce7f4;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(7, 88, 184, .07);
}
.aogfc-product-tax .aogfc-product-cat-sidebar__head {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #0758b8;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 750;
    text-transform: uppercase;
}
.aogfc-product-tax .aogfc-product-cat-list {
    padding: 0;
    gap: 0;
}
.aogfc-product-tax .aogfc-product-cat-list__item {
    border-radius: 0;
}
.aogfc-product-tax .aogfc-product-cat-list__row {
    min-height: 42px;
    border: 0;
    border-bottom: 1px solid #edf1f6;
    border-radius: 0;
    grid-template-columns: minmax(0, 1fr) 32px;
}
.aogfc-product-tax .aogfc-product-cat-list__parent {
    padding: 9px 7px 9px 14px;
    color: #10213d;
    font-size: 14px;
    font-weight: 550;
    line-height: 1.18;
}
.aogfc-product-tax .aogfc-product-cat-list__parent small,
.aogfc-product-tax .aogfc-product-cat-children small {
    background: #eef8ff;
    color: #0758b8;
}
.aogfc-product-tax .aogfc-cat-toggle {
    width: 24px;
    height: 24px;
    margin-right: 7px;
    background: #f4f9ff;
    border: 1px solid #dce7f4;
}
.aogfc-product-tax .aogfc-cat-toggle::before {
    border-color: #0758b8;
}
.aogfc-product-tax .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row,
.aogfc-product-tax .aogfc-product-cat-list__row:hover {
    background: #eef8ff;
    border-color: #edf1f6;
    box-shadow: inset 4px 0 0 #ed1c24;
}
.aogfc-product-tax .aogfc-product-cat-list__item.is-active-parent > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__item.is-open > .aogfc-product-cat-list__row .aogfc-product-cat-list__parent,
.aogfc-product-tax .aogfc-product-cat-list__row:hover .aogfc-product-cat-list__parent {
    color: #0758b8;
}
.aogfc-product-tax .aogfc-product-cat-children {
    margin: 0;
    padding: 4px 8px 7px 17px;
    border-left: 4px solid #eef3fa;
    background: #fbfdff;
}
.aogfc-product-tax .aogfc-product-cat-children a {
    min-height: 30px;
    padding: 6px 8px 6px 10px;
    color: #334155;
    font-size: 13px;
    font-weight: 550;
    line-height: 1.18;
}
.aogfc-product-tax .aogfc-product-cat-children a:hover {
    background: #eef8ff;
    color: #0758b8;
}
.aogfc-product-tax .aogfc-product-cat-children .is-current a {
    background: #0758b8;
    color: #fff;
    box-shadow: 0 7px 14px rgba(7, 88, 184, .14);
}
.aogfc-product-tax .aogfc-product-cat-children .is-current small {
    color: #0758b8;
}
@media (max-width: 1024px) {
    .aogfc-product-tax .aogfc-tax-sidebar-wrap > .aogfc-filter-close {
        display: inline-flex;
    }
    .aogfc-product-tax .aogfc-product-cat-sidebar {
        position: static;
        top: auto;
    }
}
/* Service archive and detail */
.aogfc-service-archive, .aogfc-single-service { padding: 42px 0 64px; background: #fff; }
.aogfc-service-breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; color: #68716c; font-size: 13px; }
.aogfc-service-breadcrumb a { color: var(--aogfc-green); }
.aogfc-service-archive__head { max-width: 820px; margin-bottom: 28px; }
.aogfc-service-archive__head h1, .aogfc-single-service__head h1 { margin: 0 0 12px; font-size: 34px; line-height: 1.25; }
.aogfc-service-archive__head p, .aogfc-single-service__head p { margin: 0; color: #515b56; line-height: 1.7; }
.aogfc-service-categories { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 30px; }
.aogfc-service-categories a { display: flex; min-height: 70px; flex-direction: column; justify-content: center; padding: 12px 14px; border: 1px solid var(--aogfc-border); border-radius: 6px; background: #fff; }
.aogfc-service-categories a:hover { border-color: var(--aogfc-green); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.aogfc-service-categories strong { color: #17221d; font-size: 14px; line-height: 1.35; }
.aogfc-service-categories span { margin-top: 4px; color: #707973; font-size: 12px; }
.aogfc-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.aogfc-service-card { overflow: hidden; border: 1px solid var(--aogfc-border); border-radius: 6px; background: #fff; }
.aogfc-service-card__image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #f2f5f3; }
.aogfc-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.aogfc-service-card:hover .aogfc-service-card__image img { transform: scale(1.035); }
.aogfc-service-card__body { padding: 16px; }
.aogfc-service-card__cat { display: inline-block; margin-bottom: 7px; color: var(--aogfc-green); font-size: 12px; font-weight: 800; }
.aogfc-service-card h2 { min-height: 48px; margin: 0 0 8px; font-size: 17px; line-height: 1.4; }
.aogfc-service-card h2 a { color: #17221d; }
.aogfc-service-card p { margin: 0 0 12px; color: #5a645e; font-size: 13px; line-height: 1.55; }
.aogfc-service-card__more { color: var(--aogfc-green); font-size: 13px; font-weight: 800; }
.aogfc-service-seo { margin-top: 46px; }
.aogfc-single-service__inner { max-width: 980px; }
.aogfc-single-service__head { max-width: 820px; margin: 0 auto 24px; text-align: center; }
.aogfc-single-service__head > a { display: inline-block; margin-bottom: 8px; color: var(--aogfc-green); font-size: 13px; font-weight: 800; }
.aogfc-single-service__featured { max-width: 820px; margin: 0 auto 30px; }
.aogfc-single-service__featured img { width: 100%; height: auto; border-radius: 6px; }
.aogfc-service-content { max-width: 820px; margin: 0 auto; }
.aogfc-service-content img { max-width: 100%; height: auto; }
.aogfc-related-services { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--aogfc-border); }
.aogfc-related-services > h2 { margin: 0 0 22px; font-size: 24px; }
@media (max-width: 900px) {
    .aogfc-service-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .aogfc-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .aogfc-service-archive, .aogfc-single-service { padding: 26px 0 46px; }
    .aogfc-service-archive__head h1, .aogfc-single-service__head h1 { font-size: 25px; }
    .aogfc-service-categories { grid-template-columns: 1fr; }
    .aogfc-service-grid { grid-template-columns: 1fr; gap: 16px; }
    .aogfc-service-card h2 { min-height: 0; }
}

/* Compact two-tier header inspired by the supplied desktop reference. */
.aogfc-site-header {
    position: relative;
    z-index: 300;
    background: #fff;
    box-shadow: 0 3px 11px rgba(16, 56, 82, .16);
}
.aogfc-site-header .aogfc-container {
    width: min(1504px, calc(100vw - 48px));
}
.aogfc-header-notice {
    min-height: 42px;
    display: block;
    border: 0;
    background: linear-gradient(90deg, var(--aogfc-blue-dark), var(--aogfc-brand-primary) 62%, var(--aogfc-brand-secondary));
    box-shadow: inset 0 -2px 0 color-mix(in srgb, var(--aogfc-brand-accent) 76%, transparent);
    color: #fff;
    font-family: "Be Vietnam Pro", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -.012em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}
.aogfc-header-notice .aogfc-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding-left: var(--aogfc-header-logo-offset);
    white-space: nowrap;
}
.aogfc-header-notice a {
    color: inherit;
    font-weight: 600;
}
.aogfc-header-notice__promise::before,
.aogfc-header-notice__promise::after {
    content: "|";
    margin: 0 8px;
    font-weight: 400;
    opacity: .9;
}
.aogfc-header-main {
    overflow: visible;
    border: 0;
    background: #fff;
}
.aogfc-header-main__inner {
    min-height: 90px;
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 22px;
    overflow: visible;
}
.aogfc-site-header .aogfc-logo {
    width: 260px;
    height: 88px;
    max-width: none;
    display: flex;
    align-items: center;
    margin-left: var(--aogfc-header-logo-offset);
    overflow: hidden;
}
.aogfc-site-header .aogfc-logo img {
    width: auto;
    height: 88px;
    max-width: 260px;
    max-height: 88px;
    display: block;
    transform: scaleY(1.35);
    transform-origin: center;
    filter: none;
    object-fit: contain;
}
.aogfc-header-main .aogfc-main-nav {
    min-width: 0;
    display: block;
    border: 0;
    background: transparent;
}
.aogfc-header-main .aogfc-menu {
    min-height: 90px;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: clamp(16px, 2vw, 37px);
    margin: 0;
    padding: 0;
    list-style: none;
}
.aogfc-header-main .aogfc-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
}
.aogfc-header-main .aogfc-menu > li > a {
    min-height: 90px;
    display: flex;
    align-items: center;
    padding: 0;
    color: #161616;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 750;
    letter-spacing: -.02em;
    text-transform: uppercase;
    white-space: nowrap;
}
.aogfc-header-main .aogfc-menu > li > a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--aogfc-brand-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}
.aogfc-header-main .aogfc-menu > li:hover > a,
.aogfc-header-main .aogfc-menu > li.current-menu-item > a,
.aogfc-header-main .aogfc-menu > li.current-menu-ancestor > a {
    color: var(--aogfc-brand-primary);
}
.aogfc-header-main .aogfc-menu > li:hover > a::before,
.aogfc-header-main .aogfc-menu > li.current-menu-item > a::before,
.aogfc-header-main .aogfc-menu > li.current-menu-ancestor > a::before {
    transform: scaleX(1);
}
.aogfc-header-main .aogfc-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -18px;
    z-index: 320;
    width: 250px;
    min-width: 250px;
    display: block;
    margin: 0;
    padding: 8px 0;
    border: 1px solid #e6ecef;
    border-radius: 0 0 4px 4px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(20, 48, 65, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.aogfc-header-main .aogfc-menu > .menu-item-has-children:hover > .sub-menu,
.aogfc-header-main .aogfc-menu > .menu-item-has-children.is-hover > .sub-menu,
.aogfc-header-main .aogfc-menu > .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.aogfc-header-main .aogfc-menu .sub-menu *,
.aogfc-header-main .aogfc-menu > .menu-item-has-children:hover > .sub-menu *,
.aogfc-header-main .aogfc-menu > .menu-item-has-children.is-hover > .sub-menu *,
.aogfc-header-main .aogfc-menu > .menu-item-has-children:focus-within > .sub-menu * {
    visibility: visible;
    pointer-events: auto;
}
.aogfc-header-main .aogfc-menu .sub-menu li {
    display: block;
}
.aogfc-header-main .aogfc-menu .sub-menu a {
    display: block;
    padding: 10px 18px;
    color: #222;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: none;
}
.aogfc-header-main .aogfc-menu .sub-menu a:hover,
.aogfc-header-main .aogfc-menu .sub-menu a:focus {
    color: var(--aogfc-brand-primary);
    background: var(--aogfc-blue-soft);
}
.aogfc-header-search-compact {
    position: relative;
    width: 44px;
    height: 44px;
    justify-self: end;
}
.aogfc-header-search-trigger {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #172436;
    cursor: pointer;
}
.aogfc-header-search-trigger:hover,
.aogfc-header-search-trigger:focus {
    color: var(--aogfc-brand-primary);
}
.aogfc-header-search-panel {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    z-index: 340;
    width: min(560px, calc(100vw - 48px));
    padding: 10px;
    border: 1px solid #e1e9ed;
    background: #fff;
    box-shadow: 0 14px 32px rgba(20, 48, 65, .18);
}
.aogfc-header-search-panel[hidden] { display: none; }
.aogfc-header-search-panel .aogfc-search-form {
    height: 44px;
    grid-template-columns: 112px minmax(0, 1fr) 48px;
    border: 1px solid #dce5e9;
}
.aogfc-header-search-panel .aogfc-search-form__selector {
    grid-column: 1;
    border-right: 1px solid #e5e5e5;
    border-left: 0;
}
.aogfc-header-search-panel .aogfc-search-form__input { grid-column: 2; }
.aogfc-header-search-panel .aogfc-search-form__submit {
    grid-column: 3;
    margin-left: 0;
    background: var(--aogfc-brand-primary);
}
.aogfc-header-main__inner > .aogfc-menu-toggle {
    display: none;
}
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-main__inner {
    min-height: 72px;
}
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-main .aogfc-menu,
.aogfc-site-header.is-sticky-enabled.is-stuck .aogfc-header-main .aogfc-menu > li > a {
    min-height: 72px;
}

@media (min-width: 1241px) {
    .aogfc-header-main .aogfc-main-nav { padding-right: 24px; }
}

@media (max-width: 1240px) and (min-width: 1025px) {
    .aogfc-header-main__inner {
        grid-template-columns: 220px minmax(0, 1fr) 40px;
        gap: 16px;
    }
    .aogfc-site-header .aogfc-logo { width: 206px; height: 74px; margin-left: 10px; }
    .aogfc-site-header .aogfc-logo img { max-width: 206px; max-height: 74px; }
    .aogfc-header-main .aogfc-menu { gap: 14px; }
    .aogfc-header-main .aogfc-menu > li > a { font-size: 13px; }
    .aogfc-header-notice { font-size: 13px; }
}

@media (max-width: 1024px) {
    .aogfc-header-notice { display: none; }
    .aogfc-header-main__inner {
        position: relative;
        min-height: 68px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 8px;
    }
    .aogfc-header-main .aogfc-main-nav { display: none; }
    .aogfc-header-main__inner > .aogfc-logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        margin-left: 0;
    }
    .aogfc-site-header .aogfc-logo img {
        max-width: 190px;
        max-height: 58px;
        transform: none;
    }
    .aogfc-header-search-compact {
        grid-column: 3;
        grid-row: 1;
    }
    .aogfc-header-search-trigger {
        color: #172436;
    }
    .aogfc-header-search-panel {
        top: calc(100% + 10px);
        right: 0;
        width: calc(100vw - 48px);
    }
    .aogfc-header-search-panel .aogfc-search-form {
        grid-template-columns: 82px minmax(0, 1fr) 42px;
    }
    .aogfc-header-main__inner > .aogfc-menu-toggle {
        grid-column: 1;
        grid-row: 1;
        width: 42px;
        height: 42px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #172436;
        box-shadow: none;
    }
    .aogfc-header-main__inner > .aogfc-menu-toggle > span:not(.screen-reader-text) {
        width: 22px;
        height: 2px;
        margin: 0;
        background: currentColor;
    }
}

@media (max-width: 520px) {
    .aogfc-site-header .aogfc-container { width: calc(100% - 24px); }
    .aogfc-header-main__inner { min-height: 64px; }
    .aogfc-site-header .aogfc-logo img { max-width: 168px; max-height: 54px; }
}

/* Keep the wide brand mark natural without increasing the menu height. */
@media (min-width: 1241px) {
    .aogfc-header-main__inner {
        grid-template-columns: 310px minmax(0, 1fr) 44px;
    }
    .aogfc-site-header .aogfc-logo {
        width: 300px;
        height: 88px;
        overflow: visible;
    }
    .aogfc-site-header .aogfc-logo img {
        width: auto;
        height: 82px;
        max-width: none;
        max-height: 82px;
        transform: scaleX(1.18);
        transform-origin: left center;
    }
}
@media (max-width: 1240px) and (min-width: 1025px) {
    .aogfc-header-main__inner {
        grid-template-columns: 242px minmax(0, 1fr) 40px;
    }
    .aogfc-site-header .aogfc-logo {
        width: 232px;
        height: 74px;
    }
    .aogfc-site-header .aogfc-logo img {
        width: auto;
        height: 68px;
        max-width: none;
        max-height: 68px;
        transform: scaleX(1.14);
        transform-origin: left center;
    }
}
@media (max-width: 520px) {
    .aogfc-site-header .aogfc-logo img {
        width: auto;
        height: 54px;
        max-width: 184px;
        max-height: 54px;
    }
}

/* Mobile header: give the centered logo a little more breathing room. */
@media (max-width: 760px) {
    .aogfc-header-main__inner {
        height: 80px;
        min-height: 80px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }
    .aogfc-header-search-compact {
        display: none;
    }
    .aogfc-header-main__inner > .aogfc-logo {
        width: min(240px, 68vw);
        height: 80px;
        max-width: none;
        justify-content: center;
        overflow: visible;
    }
    .aogfc-header-main__inner > .aogfc-logo img {
        width: auto;
        height: 72px;
        max-width: min(220px, 64vw);
        max-height: 72px;
        transform: none;
        transform-origin: center;
    }
}
@media (max-width: 360px) {
    .aogfc-header-main__inner > .aogfc-logo img {
        height: 68px;
        max-height: 68px;
        transform: none;
    }
}

/* Final footer overrides: kept last so legacy footer rules cannot win. */
footer.aogfc-site-footer {
    border-top: 4px solid var(--aogfc-header-primary, #005bb8);
    background:
        radial-gradient(circle at 8% 0, rgba(7,137,214,.18), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(237,28,36,.08), transparent 25%),
        linear-gradient(135deg,#eef8ff 0%,#dcecf7 100%);
    color: #40596e;
}
footer.aogfc-site-footer .aogfc-container {
    width: min(1720px, calc(100% - clamp(32px, 5vw, 88px)));
    max-width: none;
}
footer.aogfc-site-footer .aogfc-site-footer__main { padding: 44px 0 36px; }
footer.aogfc-site-footer .aogfc-site-footer__grid {
    grid-template-columns: minmax(320px,1.05fr) minmax(280px,.9fr) minmax(470px,1.35fr);
    gap: clamp(38px,4.5vw,82px);
    align-items: start;
}
footer.aogfc-site-footer .aogfc-site-footer__logo {
    width: min(100%,420px);
    min-height: 0;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform .25s ease, filter .25s ease;
}
footer.aogfc-site-footer .aogfc-site-footer__logo:hover {
    filter: drop-shadow(0 10px 16px rgba(7,88,184,.18));
    transform: translateY(-2px);
}
footer.aogfc-site-footer .aogfc-site-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 130px;
    object-fit: contain;
}
footer.aogfc-site-footer .aogfc-site-footer__brand h2,
footer.aogfc-site-footer .aogfc-site-footer__column h2,
footer.aogfc-site-footer .aogfc-site-footer__partners h2,
footer.aogfc-site-footer .aogfc-site-footer__support h2 { color: #0c3152; }
footer.aogfc-site-footer .aogfc-site-footer__intro,
footer.aogfc-site-footer .aogfc-site-footer__registration,
footer.aogfc-site-footer .aogfc-site-footer__support > p { color: #40596e; }
footer.aogfc-site-footer .aogfc-site-footer__registration { border-color: rgba(7,88,184,.16); color: #60778a; }
footer.aogfc-site-footer .aogfc-site-footer__contact li { grid-template-columns: 38px minmax(0,1fr); color: #40596e; font-size: 14px; }
footer.aogfc-site-footer .aogfc-site-footer__contact b { color: #0c3152; }
footer.aogfc-site-footer .aogfc-site-footer__contact-icon { width: 38px; height: 38px; border-color: rgba(7,88,184,.15); color: var(--aogfc-header-secondary,#0789d6); background: rgba(7,137,214,.1); }
footer.aogfc-site-footer a { color: #0758a8; }
footer.aogfc-site-footer a:hover,
footer.aogfc-site-footer a:focus { color: var(--aogfc-header-accent,#ed1c24); }
footer.aogfc-site-footer .aogfc-site-footer__partner-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px 18px; }
footer.aogfc-site-footer .aogfc-site-footer__partner-grid span {
    height: 44px;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
footer.aogfc-site-footer .aogfc-site-footer__partner-grid span:hover {
    background: transparent;
    filter: drop-shadow(0 7px 8px rgba(7,88,184,.2));
    transform: translateY(-2px) scale(1.04);
    box-shadow: none;
}
footer.aogfc-site-footer .aogfc-site-footer__partner-grid img {
    display: block;
    width: 100%;
    height: 40px;
    max-width: none;
    max-height: none;
    mix-blend-mode: multiply;
    object-fit: contain;
    object-position: center;
}
footer.aogfc-site-footer .aogfc-site-footer__bottom { min-height: 46px; padding: 9px 0; border-top: 1px solid rgba(255,255,255,.1); background: #0c3152; color: rgba(255,255,255,.72); font-size: 12px; }

.aogfc-footer-quote-btn {
    position: relative;
    min-height: 58px;
    gap: 11px;
    overflow: hidden;
    padding: 8px 18px 8px 9px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    background: linear-gradient(120deg,var(--aogfc-header-primary,#0758b8),var(--aogfc-header-secondary,#0789d6));
    box-shadow: 0 14px 30px rgba(7,88,184,.32), inset 0 1px 0 rgba(255,255,255,.25);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.aogfc-footer-quote-btn::after,
.aogfc-quote-float::after {
    position: absolute;
    top: -35%;
    left: -55%;
    width: 38%;
    height: 170%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.38),transparent);
    content: "";
    transform: rotate(18deg);
    animation: aogfc-cta-shine 4.2s ease-in-out infinite;
    pointer-events: none;
}
.aogfc-footer-quote-btn:hover {
    filter: saturate(1.12) brightness(1.06);
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(7,88,184,.42), inset 0 1px 0 rgba(255,255,255,.28);
}
.aogfc-footer-quote-btn .aogfc-action-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.88);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 7px 16px rgba(0,0,0,.2);
}
.aogfc-footer-quote-btn > span { flex: 1; text-align: center; }
.aogfc-footer-quote-btn > i { font-size: 21px; font-style: normal; transition: transform .2s ease; }
.aogfc-footer-quote-btn:hover > i { transform: translateX(4px); }

.aogfc-quote-float {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 1100;
    min-height: 58px;
    gap: 10px;
    overflow: hidden;
    padding: 7px 18px 7px 7px;
    border: 2px solid rgba(255,255,255,.88);
    background: linear-gradient(120deg,var(--aogfc-header-primary,#0758b8),var(--aogfc-header-secondary,#0789d6));
    box-shadow: 0 14px 34px rgba(0,50,105,.38), 0 0 0 0 rgba(7,137,214,.35);
    animation: aogfc-quote-pulse 2.8s ease-out infinite;
}
.aogfc-quote-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 42px rgba(0,50,105,.48), 0 0 0 7px rgba(7,137,214,.12);
}
.aogfc-quote-float .aogfc-quote-float__icon {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 7px 16px rgba(0,0,0,.2);
}

.aogfc-quote-popup__btn {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    min-height: 66px;
    align-items: center;
    justify-content: initial;
    gap: 9px;
    overflow: hidden;
    padding: 9px 11px 9px 9px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 14px 28px rgba(7,38,67,.2), inset 0 1px 0 rgba(255,255,255,.24);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.aogfc-quote-popup__btn::before { position: absolute; top: -30px; right: -18px; width: 92px; height: 92px; border: 18px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.aogfc-quote-popup__btn:hover {
    filter: brightness(1.06);
    transform: translateY(-3px);
    box-shadow: 0 17px 32px rgba(7,38,67,.26);
}
.aogfc-quote-popup__btn--call { background: linear-gradient(135deg,#f02b39 0%,#d41120 68%,#a90714 100%); }
.aogfc-quote-popup__btn--zalo { background: linear-gradient(135deg,#10a2eb 0%,#0879d0 58%,#0758b8 100%); }
.aogfc-quote-popup__btn .aogfc-quote-popup__btn-icon { position: relative; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 7px 16px rgba(0,0,0,.16); }
.aogfc-quote-popup__btn-icon img { display: block; width: 34px; height: 34px; border: 0; border-radius: 9px; object-fit: contain; }
.aogfc-quote-popup__btn .aogfc-quote-popup__btn-copy { position: relative; z-index: 1; display: grid; width: auto; height: auto; min-width: 0; gap: 1px; padding: 0; border-radius: 0; background: transparent; }
.aogfc-quote-popup__btn-copy small { overflow: hidden; color: rgba(255,255,255,.76); font-size: 9px; font-weight: 600; letter-spacing: 0; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.aogfc-quote-popup__btn-copy strong { overflow: hidden; color: #fff; font-size: 13px; font-weight: 800; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.aogfc-quote-popup__btn .aogfc-quote-popup__btn-arrow { display: none; width: 0; height: 0; padding: 0; background: transparent; }

.aogfc-quote-popup__form { display: grid; gap: 11px; margin-top: 18px; }
.aogfc-quote-popup__fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; }
.aogfc-quote-popup__fields > label { display: grid; gap: 6px; min-width: 0; color: #36516a; font-size: 11px; font-weight: 700; }
.aogfc-quote-popup__fields em { color: var(--aogfc-header-accent,#ed1c24); font-style: normal; }
.aogfc-quote-popup__control { position: relative; display: block; }
.aogfc-quote-popup__control svg { position: absolute; top: 50%; left: 12px; width: 17px; height: 17px; transform: translateY(-50%); fill: none; stroke: #167fc4; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; pointer-events: none; }
.aogfc-quote-popup__control input { width: 100%; height: 47px; padding: 9px 11px 9px 38px; border: 1px solid #d6e4ef; border-radius: 11px; outline: 0; background: #f7fbfe; color: #12344f; font-family: inherit; font-size: 12px; font-weight: 600; line-height: 1.4; box-shadow: inset 0 1px 2px rgba(13,56,88,.035); transition: border-color .18s ease,box-shadow .18s ease,background .18s ease; }
.aogfc-quote-popup__control input::placeholder { color: #91a2af; font-weight: 500; }
.aogfc-quote-popup__control input:focus { border-color: #168bd0; background: #fff; box-shadow: 0 0 0 4px rgba(22,139,208,.12); }
.aogfc-quote-popup__submit { display: flex; min-height: 49px; align-items: center; justify-content: center; gap: 10px; padding: 10px 18px; border: 0; border-radius: 11px; background: linear-gradient(120deg,#0c3152,#0758b8 64%,#0789d6); color: #fff; font-size: 13px; font-weight: 800; box-shadow: 0 10px 22px rgba(7,88,184,.22); cursor: pointer; transition: transform .18s ease,box-shadow .18s ease,opacity .18s ease; }
.aogfc-quote-popup__submit:hover { transform: translateY(-2px); box-shadow: 0 14px 27px rgba(7,88,184,.3); }
.aogfc-quote-popup__submit:disabled { opacity: .68; cursor: wait; transform: none; }
.aogfc-quote-popup__submit svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.aogfc-quote-popup__status { min-height: 0; margin: 0; color: #687d8d; font-size: 11px; font-weight: 600; line-height: 1.45; }
.aogfc-quote-popup__status:empty { display: none; }
.aogfc-quote-popup__status.is-success { color: #087943; }
.aogfc-quote-popup__status.is-error { color: #c51b26; }
.aogfc-quote-popup__or { display: flex; align-items: center; gap: 10px; margin: 14px 0 0!important; color: #8293a1!important; font-size: 10px!important; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.aogfc-quote-popup__or::before,.aogfc-quote-popup__or::after { flex: 1; height: 1px; background: #e1eaf1; content: ""; }
.aogfc-quote-popup__honeypot { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.aogfc-quote-popup__actions { margin-top: 11px; }
.aogfc-quote-popup__actions + dl { margin-top:16px; border-top:1px solid #e1eaf1; }

.aogfc-floating-contact {
    position: fixed;
    left: 18px;
    right: auto;
    bottom: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aogfc-floating-contact__item {
    width: 58px;
    height: 58px;
    gap: 11px;
    padding-right: 0;
    border: 2px solid #fff;
    box-shadow: 0 13px 30px rgba(0,0,0,.3);
    transition: width .3s cubic-bezier(.2,.8,.2,1), transform .22s ease, box-shadow .22s ease;
    animation: aogfc-contact-breathe 3s ease-in-out infinite;
}
.aogfc-floating-contact__item > img {
    display: block;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}
.aogfc-floating-contact__item b { min-width: 0; padding-right: 18px; overflow: hidden; font-size: 13px; font-weight: 700; text-overflow: clip; white-space: nowrap; }
.aogfc-floating-contact__item--phone { background: linear-gradient(120deg,#ef2936,#c7101c); }
.aogfc-floating-contact__item--zalo { background: linear-gradient(120deg,#0789d6,#0758b8); animation-delay: .45s; }
.aogfc-floating-contact__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0,0,0,.36);
}
.aogfc-floating-contact__item--phone:hover { width: 184px; }
.aogfc-floating-contact__item--zalo:hover { width: 154px; }

@keyframes aogfc-cta-shine {
    0%,55% { left: -55%; }
    78%,100% { left: 125%; }
}
@keyframes aogfc-quote-pulse {
    0%,100% { box-shadow: 0 14px 34px rgba(0,50,105,.38),0 0 0 0 rgba(7,137,214,.28); }
    50% { box-shadow: 0 16px 38px rgba(0,50,105,.42),0 0 0 9px rgba(7,137,214,0); }
}
@keyframes aogfc-contact-breathe {
    0%,100% { box-shadow: 0 13px 30px rgba(0,0,0,.3),0 0 0 0 rgba(255,255,255,.18); }
    50% { box-shadow: 0 16px 34px rgba(0,0,0,.34),0 0 0 7px rgba(255,255,255,0); }
}

.aogfc-back-to-top { right: 25px; bottom: 82px; }
@media (max-width: 1120px) {
    footer.aogfc-site-footer .aogfc-site-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px 30px; }
    footer.aogfc-site-footer .aogfc-site-footer__partners { grid-column: 1 / -1; }
    footer.aogfc-site-footer .aogfc-site-footer__logo { width: min(100%,400px); }
}
@media (max-width: 680px) {
    footer.aogfc-site-footer .aogfc-container { width: calc(100% - 28px); }
    footer.aogfc-site-footer .aogfc-site-footer__main { padding: 32px 0 26px; }
    footer.aogfc-site-footer .aogfc-site-footer__grid { grid-template-columns: 1fr; gap: 27px; }
    footer.aogfc-site-footer .aogfc-site-footer__brand { padding-bottom: 0; }
    footer.aogfc-site-footer .aogfc-site-footer__logo { width: min(100%,340px); min-height: 0; padding: 0; }
    footer.aogfc-site-footer .aogfc-site-footer__logo img { max-width: 330px; max-height: 108px; }
    footer.aogfc-site-footer .aogfc-site-footer__partners { grid-column: auto; }
    footer.aogfc-site-footer .aogfc-site-footer__partner-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px 12px; }
    footer.aogfc-site-footer .aogfc-site-footer__partner-grid span { height: 38px; min-height: 0; }
    footer.aogfc-site-footer .aogfc-site-footer__partner-grid img { height: 34px; }
    footer.aogfc-site-footer .aogfc-site-footer__bottom { padding: 18px 56px 142px; }
    .aogfc-floating-contact { left: 10px; right: auto; bottom: 12px; display: flex; }
    .aogfc-floating-contact__item { width: 50px; height: 50px; animation: none; }
    .aogfc-floating-contact__item > img { flex-basis: 46px; width: 46px; height: 46px; }
    .aogfc-floating-contact__item:hover { width: 50px; transform: none; }
    .aogfc-floating-contact__item b { display: none; }
    .aogfc-quote-float { right: 10px; bottom: 12px; min-height: 50px; padding: 5px 13px 5px 5px; font-size: 12px; animation: none; }
    .aogfc-quote-float .aogfc-quote-float__icon { flex-basis: 36px; width: 36px; height: 36px; }
    .aogfc-footer-quote-btn { min-height: 56px; }
    .aogfc-quote-popup__fields { grid-template-columns: 1fr; }
    .aogfc-quote-popup__actions { grid-template-columns: 1fr; }
    .aogfc-quote-popup__intro { padding:28px 24px; }
    .aogfc-quote-popup__intro ul { display:none; }
    .aogfc-quote-popup__contact { padding:28px 22px; }
    .aogfc-quote-popup__contact h3 { margin-bottom:14px; }
    .aogfc-quote-popup__btn { min-height: 64px; grid-template-columns: 42px minmax(0,1fr); }
    .aogfc-quote-popup__btn-icon { width: 42px; height: 42px; }
    .aogfc-quote-popup__btn-icon img { width: 35px; height: 35px; }
    .aogfc-back-to-top { right: 18px; bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
    .aogfc-footer-quote-btn::after,
    .aogfc-quote-float::after,
    .aogfc-quote-float,
    .aogfc-floating-contact__item { animation: none; }
}

/* Product detail: brand-led CTA and compact production commitments. */
.aogfc-product-detail__summary { border-radius: 18px; box-shadow: 0 20px 48px rgba(7,55,98,.09); }
.aogfc-product-actions { gap: 12px; }
.aogfc-product-actions .aogfc-btn { min-height: 72px; justify-content: flex-start; gap: 12px; padding: 10px 14px; border-radius: 15px; text-align: left; text-transform: none; white-space: normal; }
.aogfc-product-actions .aogfc-btn::before { display: none; content: none; }
.aogfc-product-actions .aogfc-popup-open { background: linear-gradient(135deg,#ef2936 0%,#d31320 62%,#a90915 100%); box-shadow: 0 16px 30px rgba(211,19,32,.25); }
.aogfc-product-actions .aogfc-btn--zalo { background: linear-gradient(135deg,#0b9fda 0%,#0879d0 52%,#0758b8 100%); box-shadow: 0 16px 30px rgba(7,88,184,.25); }
.aogfc-product-action__icon { position: relative; z-index: 1; display: grid; flex:0 0 44px; width:44px; height:44px; place-items:center; border:1px solid rgba(255,255,255,.52); border-radius:13px; background:rgba(255,255,255,.17); box-shadow:inset 0 1px 0 rgba(255,255,255,.2); }
.aogfc-product-action__icon svg { width:23px; height:23px; fill:none; stroke:#fff; stroke-linecap:round; stroke-linejoin:round; stroke-width:1.7; }
.aogfc-product-action__copy { position:relative; z-index:1; display:grid; min-width:0; gap:3px; }
.aogfc-product-action__copy strong { color:#fff; font-size:13px; font-weight:800; line-height:1.3; }
.aogfc-product-action__copy small { color:rgba(255,255,255,.76); font-size:10px; font-weight:600; line-height:1.35; }
.aogfc-product-note { grid-template-columns:50px minmax(0,1fr); gap:14px; align-items:start; margin-top:20px; padding:18px; border:1px solid #d8e8f5; border-left:1px solid #d8e8f5; border-radius:15px; background:linear-gradient(135deg,#fff9ee 0%,#f2f9ff 68%,#e8f4ff 100%); box-shadow:0 10px 24px rgba(7,76,128,.07); }
.aogfc-product-note .aogfc-product-note__icon { display:grid; width:50px; height:50px; place-items:center; border-radius:15px; background:linear-gradient(145deg,#ffcb31,#f28a16); text-align:center; box-shadow:0 9px 18px rgba(242,138,22,.2); }
.aogfc-product-note__icon svg { width:25px; height:25px; fill:none; stroke:#fff; stroke-linecap:round; stroke-linejoin:round; stroke-width:1.8; }
.aogfc-product-note .aogfc-product-note__copy { display:grid; gap:4px; text-align:left; }
.aogfc-product-note__copy strong { color:#0c3152; font-size:14px; line-height:1.4; }
.aogfc-product-note__copy > span { color:#526a7e; font-size:12px; line-height:1.65; text-align:left; }
.aogfc-product-brand-box { margin-top:13px; padding:0; border:0; background:transparent; }
.aogfc-product-brand-box ul { grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; padding:0; list-style:none; }
.aogfc-product-brand-box li { position:relative; min-height:72px; padding:12px 10px 11px 35px; border:1px solid #e0eaf2; border-radius:12px; background:#f8fbfd; color:#405a6f; font-size:10px; font-weight:600; line-height:1.5; }
.aogfc-product-brand-box li::before { position:absolute; top:12px; left:10px; display:grid; width:18px; height:18px; place-items:center; border-radius:6px; background:#e5f5ee; color:#078455; content:"✓"; font-size:10px; font-weight:900; }

/* Service archive: clear hierarchy, category shortcuts and project cards. */
.aogfc-service-archive { padding:0 0 74px; background:#f4f8fb; }
.aogfc-service-archive__hero { position:relative; overflow:hidden; padding:34px 0 56px; background:radial-gradient(circle at 88% 18%,rgba(34,174,230,.32),transparent 27%),linear-gradient(132deg,#082f53 0%,#0758b8 70%,#087fc9 100%); color:#fff; }
.aogfc-service-archive__hero::after { position:absolute; right:-110px; bottom:-170px; width:390px; height:390px; border:52px solid rgba(255,255,255,.055); border-radius:50%; content:""; }
.aogfc-service-archive__hero .aogfc-container { position:relative; z-index:1; }
.aogfc-service-archive__hero .aogfc-service-breadcrumb { margin:0 0 32px; color:rgba(255,255,255,.62); }
.aogfc-service-archive__hero .aogfc-service-breadcrumb a { color:rgba(255,255,255,.82); }
.aogfc-service-archive__hero-grid { display:grid; grid-template-columns:minmax(0,1.45fr) minmax(260px,.55fr); gap:60px; align-items:end; }
.aogfc-service-archive__head { max-width:780px; margin:0; }
.aogfc-service-archive__head > span { display:inline-block; margin-bottom:12px; color:#8fd8ff; font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.aogfc-service-archive__head h1 { margin:0 0 14px; color:#fff; font-size:clamp(34px,4.4vw,58px); line-height:1.12; }
.aogfc-service-archive__head p { max-width:720px; margin:0; color:rgba(255,255,255,.8); font-size:15px; line-height:1.75; }
.aogfc-service-archive__metric { display:grid; grid-template-columns:auto 1fr; gap:2px 14px; align-items:end; padding:18px 20px; border:1px solid rgba(255,255,255,.22); border-radius:17px; background:rgba(255,255,255,.1); backdrop-filter:blur(8px); }
.aogfc-service-archive__metric strong { grid-row:1/3; color:#fff; font-size:50px; line-height:.95; }
.aogfc-service-archive__metric span { color:#fff; font-size:13px; font-weight:800; }
.aogfc-service-archive__metric small { grid-column:1/-1; margin-top:8px; color:rgba(255,255,255,.7); font-size:10px; line-height:1.5; }
.aogfc-service-archive__body { padding-top:34px; }
.aogfc-service-categories { grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:0 0 44px; }
.aogfc-service-categories a { display:grid; grid-template-columns:42px minmax(0,1fr) 22px; min-height:78px; align-items:center; gap:12px; padding:13px; border:1px solid #d9e5ee; border-radius:15px; background:#fff; box-shadow:0 10px 24px rgba(8,54,91,.06); }
.aogfc-service-categories a:hover { border-color:#69b8e8; box-shadow:0 16px 30px rgba(8,72,124,.13); transform:translateY(-3px); }
.aogfc-service-categories__icon { display:grid; width:42px; height:42px; place-items:center; border-radius:13px; background:linear-gradient(145deg,#e8f6ff,#d9effe); color:#0782cd; }
.aogfc-service-categories__icon svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-linecap:round; stroke-linejoin:round; stroke-width:1.7; }
.aogfc-service-categories__copy { display:grid; min-width:0; gap:3px; }
.aogfc-service-categories__copy strong { color:#143650; font-size:13px; line-height:1.35; }
.aogfc-service-categories__copy small { color:#718595; font-size:10px; }
.aogfc-service-categories__arrow { color:#0a83d0; font-size:20px; transition:transform .2s ease; }
.aogfc-service-categories a:hover .aogfc-service-categories__arrow { transform:translateX(4px); }
.aogfc-service-archive__list-head { display:grid; grid-template-columns:minmax(0,1fr) minmax(280px,.65fr); gap:34px; align-items:end; margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid #dbe6ee; }
.aogfc-service-archive__list-head span { color:#ed1c24; font-size:11px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.aogfc-service-archive__list-head h2 { margin:5px 0 0; color:#0c3152; font-size:clamp(23px,2.7vw,34px); line-height:1.3; }
.aogfc-service-archive__list-head p { margin:0; color:#64788a; font-size:13px; line-height:1.65; }
.aogfc-service-grid { gap:22px; }
.aogfc-service-card { position:relative; overflow:hidden; border:1px solid #dce7ef; border-radius:17px; box-shadow:0 14px 34px rgba(7,49,82,.07); transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease; }
.aogfc-service-card:hover { border-color:#9bcce9; transform:translateY(-6px); box-shadow:0 22px 44px rgba(7,65,108,.14); }
.aogfc-service-card__image { position:relative; aspect-ratio:16/10; background:#e7f1f8; }
.aogfc-service-card__view { position:absolute; right:13px; bottom:13px; display:grid; width:38px; height:38px; place-items:center; border:1px solid rgba(255,255,255,.6); border-radius:12px; background:rgba(7,49,82,.76); color:#fff; font-size:18px; backdrop-filter:blur(6px); transition:transform .2s ease,background .2s ease; }
.aogfc-service-card:hover .aogfc-service-card__view { background:#ed1c24; transform:rotate(5deg) scale(1.05); }
.aogfc-service-card__body { padding:20px; }
.aogfc-service-card__cat { margin-bottom:9px; color:#0780c9; font-size:10px; letter-spacing:.06em; text-transform:uppercase; }
.aogfc-service-card h2 { min-height:0; margin:0 0 9px; color:#0c3152; font-size:18px; line-height:1.42; }
.aogfc-service-card h2 a { color:inherit; }
.aogfc-service-card p { min-height:61px; margin:0 0 14px; color:#647789; font-size:12px; line-height:1.65; }
.aogfc-service-card__more { display:inline-flex; align-items:center; gap:8px; color:#0758b8; font-size:11px; }
.aogfc-service-card__more span { transition:transform .2s ease; }
.aogfc-service-card__more:hover span { transform:translateX(4px); }
.aogfc-service-seo { margin-top:52px; padding:clamp(20px, 3vw, 36px); border:1px solid #dce7ef; border-radius:18px; background:#fff; box-shadow:0 16px 34px rgba(7,49,82,.06); }
.aogfc-service-seo > :first-child { margin-top:0; }
.aogfc-service-seo > :last-child { margin-bottom:0; }

/* Single service: concise product-style hero and focused article body. */
.aogfc-single-service { padding:26px 0 72px; background:linear-gradient(180deg,#eef6fb 0,#fff 620px); }
.aogfc-single-service__inner { max-width:var(--aogfc-container); }
.aogfc-single-service > .aogfc-container > .aogfc-service-breadcrumb { margin:0 0 20px; }
.aogfc-service-hero { display:grid; grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr); overflow:hidden; border:1px solid #d9e7f0; border-radius:22px; background:#fff; box-shadow:0 24px 58px rgba(6,50,86,.11); }
.aogfc-service-hero--no-media { grid-template-columns:1fr; }
.aogfc-service-hero__copy { display:flex; flex-direction:column; justify-content:center; padding:44px; }
.aogfc-service-hero__cat { align-self:flex-start; margin-bottom:14px; padding:7px 12px; border-radius:999px; background:#e8f5fd; color:#087ec5; font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.aogfc-service-hero h1 { margin:0 0 15px; color:#0c3152; font-size:clamp(30px,3.6vw,48px); line-height:1.18; }
.aogfc-service-hero__copy > p { margin:0; color:#566c7f; font-size:14px; line-height:1.75; }
.aogfc-service-hero__facts { display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:20px; padding-top:18px; border-top:1px solid #e1ebf2; }
.aogfc-service-hero__facts span { display:inline-flex; align-items:center; gap:7px; color:#36546b; font-size:10px; font-weight:700; }
.aogfc-service-hero__facts svg { width:18px; height:18px; fill:none; stroke:#0a88d4; stroke-linecap:round; stroke-linejoin:round; stroke-width:1.8; }
.aogfc-service-hero__actions { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin-top:22px; }
.aogfc-service-cta { display:grid; grid-template-columns:38px minmax(0,1fr); min-height:62px; align-items:center; gap:9px; padding:9px 12px; border:0; border-radius:14px; color:#fff!important; text-align:left; text-decoration:none; box-shadow:0 12px 25px rgba(7,73,124,.18); cursor:pointer; }
.aogfc-service-cta--primary { background:linear-gradient(135deg,#ef2936,#c9111e); }
.aogfc-service-cta--zalo { background:linear-gradient(135deg,#099ada,#0758b8); }
.aogfc-service-cta > svg { width:38px; height:38px; padding:8px; border:1px solid rgba(255,255,255,.42); border-radius:11px; fill:none; stroke:#fff; stroke-linecap:round; stroke-linejoin:round; stroke-width:1.7; }
.aogfc-service-cta > span { display:grid; gap:2px; min-width:0; }
.aogfc-service-cta strong { color:#fff; font-size:11px; line-height:1.3; }
.aogfc-service-cta small { overflow:hidden; color:rgba(255,255,255,.75); font-size:8px; text-overflow:ellipsis; white-space:nowrap; }
.aogfc-service-hero__media { position:relative; height:520px; min-height:0; margin:0; overflow:hidden; background:#e5f0f7; }
.aogfc-service-hero__media::after { position:absolute; inset:0; background:linear-gradient(90deg,rgba(8,47,83,.13),transparent 32%); content:""; pointer-events:none; }
.aogfc-service-hero__media img { width:100%; height:100%; object-fit:cover; }
.aogfc-service-hero__media figcaption { position:absolute; z-index:1; right:18px; bottom:18px; padding:8px 11px; border-radius:9px; background:rgba(7,49,82,.76); color:#fff; font-size:9px; font-weight:700; backdrop-filter:blur(6px); }
.aogfc-service-detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:30px; align-items:start; margin-top:32px; }
.aogfc-service-content { max-width:none; margin:0; padding:32px 36px; border:1px solid #dde8f0; border-radius:18px; background:#fff; box-shadow:0 14px 34px rgba(7,49,82,.06); }
.aogfc-service-content h2 { margin-top:0; color:#0c3152; font-size:27px; line-height:1.35; }
.aogfc-service-content h3 { margin-top:28px; color:#0c3152; font-size:20px; }
.aogfc-service-content p,.aogfc-service-content li { color:#4f6476; font-size:14px; line-height:1.8; }
.aogfc-service-content ul { padding-left:20px; }
.aogfc-service-content li::marker { color:#0789d6; }
.aogfc-service-advisor { position:sticky; top:112px; padding:25px; border-radius:18px; background:linear-gradient(145deg,#0b365b,#0758b8); color:#fff; box-shadow:0 20px 44px rgba(7,70,119,.22); }
.aogfc-service-advisor__eyebrow { color:#8ed8ff; font-size:9px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.aogfc-service-advisor h2 { margin:7px 0 10px; color:#fff; font-size:22px; line-height:1.35; }
.aogfc-service-advisor p { margin:0; color:rgba(255,255,255,.74); font-size:11px; line-height:1.65; }
.aogfc-service-advisor ul { display:grid; gap:9px; margin:18px 0; padding:0; list-style:none; }
.aogfc-service-advisor li { position:relative; padding-left:24px; color:rgba(255,255,255,.88); font-size:10px; line-height:1.5; }
.aogfc-service-advisor li::before { position:absolute; top:0; left:0; display:grid; width:17px; height:17px; place-items:center; border-radius:6px; background:rgba(255,255,255,.15); content:"✓"; font-size:9px; }
.aogfc-service-advisor button { display:flex; width:100%; min-height:48px; align-items:center; justify-content:space-between; padding:10px 14px; border:0; border-radius:12px; background:#fff; color:#0758b8; font-size:11px; font-weight:800; cursor:pointer; }
.aogfc-service-advisor > a { display:block; margin-top:13px; color:#fff; font-size:10px; font-weight:700; text-align:center; }
.aogfc-related-services { margin-top:54px; padding-top:0; border:0; }
.aogfc-related-services > header { margin-bottom:22px; }
.aogfc-related-services > header span { color:#ed1c24; font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.aogfc-related-services > header h2 { margin:5px 0 0; color:#0c3152; font-size:28px; }

@media (max-width: 980px) {
    .aogfc-product-brand-box ul { grid-template-columns:1fr; }
    .aogfc-product-brand-box li { min-height:0; }
    .aogfc-service-archive__hero-grid { grid-template-columns:1fr; gap:26px; }
    .aogfc-service-archive__metric { max-width:340px; }
    .aogfc-service-categories { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .aogfc-service-hero { grid-template-columns:1fr; }
    .aogfc-service-hero__media { height:auto; min-height:0; aspect-ratio:16/10; order:-1; }
    .aogfc-service-detail-layout { grid-template-columns:1fr; }
    .aogfc-service-advisor { position:static; }
}
@media (max-width: 680px) {
    .aogfc-product-actions .aogfc-btn { min-height:68px; }
    .aogfc-product-note { grid-template-columns:42px minmax(0,1fr); padding:14px; }
    .aogfc-product-note .aogfc-product-note__icon { width:42px; height:42px; border-radius:12px; }
    .aogfc-service-archive__hero { padding:24px 0 42px; }
    .aogfc-service-archive__hero .aogfc-service-breadcrumb { margin-bottom:23px; }
    .aogfc-service-archive__head h1 { font-size:34px; }
    .aogfc-service-archive__metric { max-width:none; }
    .aogfc-service-categories { grid-template-columns:1fr; gap:9px; margin-bottom:34px; }
    .aogfc-service-archive__list-head { grid-template-columns:1fr; gap:11px; }
    .aogfc-service-card p { min-height:0; }
    .aogfc-single-service { padding-top:18px; }
    .aogfc-service-hero { border-radius:17px; }
    .aogfc-service-hero__copy { padding:25px 20px; }
    .aogfc-service-hero h1 { font-size:29px; }
    .aogfc-service-hero__actions { grid-template-columns:1fr; }
    .aogfc-service-content { padding:24px 20px; border-radius:15px; }
    .aogfc-service-content h2 { font-size:23px; }
    .aogfc-service-advisor { padding:22px 20px; }
}

/* Shared static pages: featured banner + editor-driven content */
.aogfc-static-template {
    min-height: 60vh;
    background: linear-gradient(180deg,#eef7ff 0,#f8fbff 360px,#fff 760px);
    color: #20344a;
}
.aogfc-page-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.6);
    border-bottom: 5px solid var(--aogfc-brand-primary);
    background: linear-gradient(120deg,#032c60,#087fca 68%,#ed1c24);
    box-shadow: 0 18px 42px rgba(1,42,91,.14);
}
.aogfc-page-banner::after {
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: linear-gradient(90deg,var(--aogfc-brand-primary) 0 48%,var(--aogfc-brand-secondary) 48% 74%,var(--aogfc-brand-accent) 74%);
    content: "";
}
.aogfc-page-banner__media { margin: 0; }
.aogfc-page-banner__image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    object-position: center;
}
.aogfc-page-banner__fallback {
    display: grid;
    min-height: clamp(210px,33.333vw,500px);
    place-items: center;
    grid-auto-flow: column;
    gap: 28px;
}
.aogfc-page-banner__fallback span { width: 64px; height: 64px; border: 8px solid rgba(255,255,255,.2); border-radius: 50%; }
.aogfc-static-template__body { padding: 32px 0 72px; }
.aogfc-static-template__crumb { margin: 0 0 22px; color: #587088; font-size: 14px; }
.aogfc-static-template__crumb .aogfc-breadcrumb { margin: 0; }
.aogfc-static-template__layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 350px;
    gap: 28px;
    align-items: start;
}
.aogfc-page-card,
.aogfc-page-aside {
    border: 1px solid #cfe2f3;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 44px rgba(0,50,105,.09);
}
.aogfc-page-card {
    max-width: 1100px;
    margin-inline: auto;
    padding: clamp(28px,3.4vw,48px);
    border-radius: 18px;
}
.aogfc-static-template__layout .aogfc-page-card { max-width: none; margin: 0; }
.aogfc-page-card__head {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dbeaf7;
}
.aogfc-page-card__head::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 82px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--aogfc-brand-primary),var(--aogfc-brand-secondary),var(--aogfc-brand-accent));
    content: "";
}
.aogfc-page-card__eyebrow,
.aogfc-page-aside__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--aogfc-brand-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.aogfc-page-card__head h1 {
    margin: 0;
    color: #073f86;
    font-size: clamp(32px,4vw,52px);
    line-height: 1.12;
    font-weight: 900;
}
.aogfc-page-card__head > p { max-width: 880px; margin: 16px 0 0; color: #5b6f83; font-size: 18px; line-height: 1.7; }
.aogfc-page-card .aogfc-editor-content { font-size: 17px; line-height: 1.78; }
.aogfc-page-card .aogfc-editor-content > p:first-child { color: #31485e; font-size: 18px; font-weight: 600; }
.aogfc-page-card .aogfc-editor-content h2 { margin: 34px 0 13px; color: #073f86; font-size: clamp(24px,2.4vw,31px); text-transform: none; }
.aogfc-page-card .aogfc-editor-content h3 { color: #0b5cae; }
.aogfc-page-card .aogfc-editor-content li::marker { color: var(--aogfc-brand-accent); font-weight: 900; }
.aogfc-page-card .aogfc-editor-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border: 0;
    border-left: 5px solid var(--aogfc-brand-accent);
    border-radius: 0 12px 12px 0;
    background: linear-gradient(90deg,#fff0f1,#f3f9ff);
    color: #153d64;
    font-weight: 700;
}
.aogfc-page-aside {
    position: sticky;
    top: 118px;
    padding: 26px;
    border-radius: 16px;
}
.aogfc-page-aside h2 { margin: 0 0 22px; color: #073f86; font-size: 23px; line-height: 1.35; }
.aogfc-page-aside ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.aogfc-page-aside li { position: relative; padding: 14px 14px 14px 18px; border: 1px solid #dbe9f5; border-radius: 11px; background: #f9fcff; overflow: hidden; }
.aogfc-page-aside li::before { position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg,var(--aogfc-brand-accent),var(--aogfc-brand-secondary)); content: ""; }
.aogfc-page-aside li span { display: block; margin-bottom: 5px; color: #e21d2b; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.aogfc-page-aside li strong,
.aogfc-page-aside li a { display: block; color: #233a51; font-size: 15px; font-weight: 800; line-height: 1.5; overflow-wrap: anywhere; }
.aogfc-page-aside__actions { display: grid; gap: 10px; margin-top: 20px; }
.aogfc-page-action {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 0;
    border-radius: 12px;
    color: #fff!important;
    cursor: pointer;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0,60,130,.18);
}
.aogfc-page-action--primary { background: linear-gradient(135deg,#ed1c24,#c80f19); }
.aogfc-page-action--secondary { background: linear-gradient(135deg,#109ee0,#0758b8); }
.aogfc-page-action--call { background: linear-gradient(135deg,#0d69c7,#073f86); }
.aogfc-page-action:hover { color: #fff!important; transform: translateY(-2px); box-shadow: 0 16px 28px rgba(0,60,130,.26); }
.aogfc-contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 32px;
    padding: 22px;
    border: 1px solid #cfe3f6;
    border-radius: 14px;
    background: linear-gradient(120deg,#eef8ff,#fff3f4);
}
.aogfc-contact-cta span { display: block; margin-bottom: 5px; color: #e21d2b; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.aogfc-contact-cta strong { display: block; color: #153d64; font-size: 18px; line-height: 1.45; }
.aogfc-contact-cta .aogfc-page-action { flex: 0 0 auto; }
.aogfc-page-card__form { margin-top: 34px; padding-top: 30px; border-top: 1px solid #dbeaf7; }
.aogfc-static-template__map { margin-top: 28px; overflow: hidden; border: 1px solid #cfe2f3; border-radius: 16px; background: #fff; box-shadow: 0 18px 44px rgba(0,50,105,.09); }
.aogfc-static-template__map iframe { display: block; width: 100%; height: 420px; border: 0; }

@media (max-width: 1024px) {
    .aogfc-static-template__layout { grid-template-columns: minmax(0,1fr); }
    .aogfc-page-aside { position: static; }
    .aogfc-page-aside ul { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
    .aogfc-page-banner__image { aspect-ratio: 3 / 1; }
    .aogfc-static-template__body { padding: 22px 0 46px; }
    .aogfc-static-template__body > .aogfc-container { width: min(100% - 28px, var(--aogfc-container)); }
    .aogfc-static-template__crumb { margin-bottom: 15px; font-size: 12px; }
    .aogfc-page-card { padding: 24px 19px; border-radius: 14px; }
    .aogfc-page-card__head { margin-bottom: 24px; padding-bottom: 20px; }
    .aogfc-page-card__head h1 { font-size: 31px; }
    .aogfc-page-card__head > p { font-size: 16px; line-height: 1.65; }
    .aogfc-page-card .aogfc-editor-content,
    .aogfc-page-card .aogfc-editor-content > p:first-child { font-size: 16px; }
    .aogfc-page-aside { padding: 20px 16px; border-radius: 14px; }
    .aogfc-page-aside ul { grid-template-columns: minmax(0,1fr); }
    .aogfc-contact-cta { align-items: stretch; flex-direction: column; padding: 18px; }
    .aogfc-contact-cta .aogfc-page-action { width: 100%; }
    .aogfc-static-template__map iframe { height: 310px; }
}
