/* ==========================================================================
   Global Logistics Trade — theme styles
   ========================================================================== */
:root {
    --gl-bg: #FFFFFF;
    --gl-surface: #F8F9FA;
    --gl-border: #E5E7EB;
    --gl-text: #0A0A0A;
    --gl-text-2: #4B5563;
    --gl-navy: #002366;
    --gl-accent: #FF3B30;
    --gl-highlight: #FFCC00;
    --gl-ink: #0A0A0A;
}
/* Reset — force full-width body/html even if a plugin, parent theme,
   page-builder or shared hosting wrapper tries to constrain them. */
html, body {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow-x: hidden;
}
body.wp-theme-global-logistics-trade { box-sizing: border-box !important; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--gl-bg); color: var(--gl-text); font-family: 'Manrope', system-ui, sans-serif; -webkit-font-smoothing: antialiased; width: 100%; min-width: 100%; max-width: 100%; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.02em; color: var(--gl-ink); margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.gl-container { max-width: 1360px; margin: 0 auto; padding: 0 1.5rem; }
.gl-main { min-height: 60vh; }
.gl-overline { font-family: 'Manrope', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--gl-text-2); }
.text-navy { color: var(--gl-navy); }
.text-accent { color: var(--gl-accent); }
.text-hl { color: var(--gl-highlight); }
.text-white-50 { color: rgba(255,255,255,0.5); }

/* ===== Header / Nav ===== */
.gl-header { position: sticky; top: 0; z-index: 50; background: #fff; }
.gl-topbar { border-bottom: 1px solid var(--gl-border); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gl-text-2); font-weight: 600; }
.gl-topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 32px; }
.gl-nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.gl-brand { display: flex; align-items: center; gap: 12px; }
.gl-brand-text strong { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 17px; }
.gl-brand-text span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gl-text-2); font-weight: 600; }
.gl-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.gl-menu a { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14px; color: var(--gl-text-2); padding: 6px 0; position: relative; }
.gl-menu a:hover, .gl-menu li.current-menu-item a, .gl-menu li.current_page_item a { color: var(--gl-ink); }
.gl-menu li.current-menu-item a::after, .gl-menu li.current_page_item a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gl-accent); }
.gl-nav-cta { display: flex; align-items: center; gap: 12px; }
.gl-burger { display: none; width: 44px; height: 44px; border: 1px solid var(--gl-border); background: #fff; align-items: center; justify-content: center; cursor: pointer; }
.gl-mobile-nav { background: #fff; border-top: 1px solid var(--gl-border); }
.gl-mobile-menu { list-style: none; margin: 0; padding: 16px 0; display: flex; flex-direction: column; }
.gl-mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--gl-border); font-family: 'Outfit', sans-serif; font-weight: 600; display: block; }
.gl-btn-block { display: flex; justify-content: center; margin-top: 14px; }
@media (max-width: 1024px) {
    .gl-main-nav { display: none; }
    .gl-burger { display: inline-flex; }
    .gl-nav-cta .gl-btn-primary { display: none; }
}
@media (min-width: 1025px) {
    .gl-mobile-nav { display: none !important; }
}

/* ===== Buttons ===== */
.gl-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14px; transition: transform .25s ease, background .25s ease, color .25s ease; border: 1px solid transparent; cursor: pointer; line-height: 1; }
.gl-btn-primary { background: var(--gl-ink); color: #fff; border-color: var(--gl-ink); }
.gl-btn-primary:hover { background: var(--gl-navy); border-color: var(--gl-navy); transform: translateY(-1px); }
.gl-btn-accent { background: var(--gl-accent); color: #fff; border-color: var(--gl-accent); }
.gl-btn-accent:hover { background: #e02b20; transform: translateY(-1px); }
.gl-btn-ghost { background: transparent; color: var(--gl-ink); border-color: var(--gl-ink); }
.gl-btn-ghost:hover { background: var(--gl-ink); color: #fff; }
.gl-btn-ghost-dark { background: transparent; color: #fff; border-color: #fff; }
.gl-btn-ghost-dark:hover { background: #fff; color: var(--gl-ink); }
.gl-btn[disabled] { opacity: .6; cursor: not-allowed; }

/* ===== Chips / Pills / utilities ===== */
.gl-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border: 1px solid var(--gl-border); font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gl-text-2); background: #fff; }
.gl-pill { display: inline-flex; align-items: center; gap: 8px; padding: 5px 13px; border-radius: 999px; background: rgba(0,35,102,0.07); color: var(--gl-navy); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 13px; }
.gl-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gl-accent); box-shadow: 0 0 0 4px rgba(255,59,48,0.18); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

/* ===== Hero ===== */
.gl-hero { position: relative; background: #fff; overflow: hidden; padding: 72px 0 64px; }
.gl-hero-bg { position: absolute; inset: 0; opacity: .12; background-size: cover; background-position: center; }
.gl-hero-mask { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,1) 100%), linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0) 100%); }
.gl-hero-grid { position: relative; display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.gl-hero-title { font-size: clamp(2.25rem, 6vw, 6.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.92; margin: 24px 0 0; }
.gl-hero-title em { font-style: italic; font-weight: 300; }
.gl-hero-title .hl { position: relative; display: inline-block; }
.gl-hero-title .hl::before { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 16px; background: var(--gl-highlight); transform: skewX(-6deg); z-index: -1; }
.gl-hero-body { max-width: 660px; margin-top: 28px; color: var(--gl-text-2); font-size: 18px; line-height: 1.6; }
.gl-hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.gl-hero-modes { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gl-hero-mode { border: 1px solid var(--gl-border); background: #fff; padding: 16px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.gl-hero-mode:hover { transform: translateY(-4px); border-color: var(--gl-ink); box-shadow: 0 18px 40px -24px rgba(0,0,0,0.18); }
.gl-hero-mode-top { display: flex; justify-content: space-between; align-items: center; }
.gl-hero-mode-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 20px; margin-top: 20px; }
.gl-hero-mode-sub { font-size: 13px; color: var(--gl-text-2); }
.gl-hero-side { position: relative; min-height: 420px; border: 1px solid var(--gl-border); overflow: hidden; background: #eee; background-size: cover; background-position: center; }
.gl-hero-corridor { position: absolute; bottom: 16px; left: 16px; right: 16px; background: #fff; border: 1px solid var(--gl-border); padding: 18px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.25); }
.gl-hero-corridor-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; margin-top: 4px; }
.gl-hero-progress { margin-top: 12px; height: 3px; background: var(--gl-border); position: relative; }
.gl-hero-progress span { position: absolute; left: 0; top: 0; height: 100%; background: var(--gl-accent); width: 62%; }
@media (max-width: 960px) {
    .gl-hero-grid { grid-template-columns: 1fr; }
    .gl-hero-side { min-height: 280px; }
    .gl-hero-modes { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Sections ===== */
.gl-section { padding: 80px 0; }
.gl-section--lg { padding: 112px 0; }
.gl-section-dark { background: #0A0A0A; color: #F5F5F5; position: relative; }
.gl-section-dark h1, .gl-section-dark h2, .gl-section-dark h3 { color: #fff; }
.gl-section-surface { background: var(--gl-surface); border-top: 1px solid var(--gl-border); border-bottom: 1px solid var(--gl-border); }
.gl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.gl-grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 30px; }
@media (max-width: 960px) { .gl-grid-2 { grid-template-columns: 1fr; } .gl-grid-12 { grid-template-columns: 1fr; gap: 20px; } }

/* ===== Services grid ===== */
.gl-services-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 40px; }
.gl-services-title { font-size: clamp(2rem, 4vw, 3.75rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; max-width: 640px; margin-top: 12px; }
.gl-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--gl-border); border-left: 1px solid var(--gl-border); }
.gl-service-card { border-right: 1px solid var(--gl-border); border-bottom: 1px solid var(--gl-border); background: #fff; padding: 32px; position: relative; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.gl-service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(0,0,0,0.18); border-color: #0A0A0A; }
.gl-service-img { aspect-ratio: 5/3; margin: -32px -32px 24px; overflow: hidden; background: #eee; }
.gl-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gl-service-card:hover .gl-service-img img { transform: scale(1.05); }
.gl-service-top { display: flex; justify-content: space-between; }
.gl-service-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; margin-top: 20px; }
.gl-service-short { font-size: 14px; color: var(--gl-text-2); margin-top: 8px; line-height: 1.5; }
.gl-service-list { margin-top: 18px; padding: 0; list-style: none; font-size: 14px; }
.gl-service-list li { display: flex; align-items: center; gap: 8px; padding: 2px 0; }
.gl-service-list li::before { content: ""; display: inline-block; width: 4px; height: 4px; background: var(--gl-accent); }
@media (max-width: 960px) { .gl-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gl-services-grid { grid-template-columns: 1fr; } }

/* ===== Tracking widget ===== */
.gl-tools-col-5 { grid-column: span 5; }
.gl-tools-col-7 { grid-column: span 7; }
@media (max-width: 960px) { .gl-tools-col-5, .gl-tools-col-7 { grid-column: span 1; } }
.gl-track-card { background: #fff; border: 1px solid var(--gl-border); padding: 30px; min-height: 320px; }
.gl-track-empty { text-align: center; padding: 40px 0; color: var(--gl-text-2); }
.gl-track-row { display: flex; gap: 12px; align-items: center; }
.gl-input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--gl-ink); font-family: 'Manrope', sans-serif; font-size: 15px; background: #fff; outline: none; }
.gl-input:focus, .gl-select:focus, .gl-textarea:focus { box-shadow: 0 0 0 3px rgba(0,35,102,0.15); }
.gl-track-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.gl-stat-bar { margin-top: 24px; }
.gl-stat-bar-track { height: 6px; background: var(--gl-border); margin-top: 8px; position: relative; }
.gl-stat-bar-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--gl-accent); transition: width .5s ease; }
.gl-timeline { margin-top: 32px; padding-left: 20px; border-left: 1px solid var(--gl-border); }
.gl-timeline-item { position: relative; margin-bottom: 20px; }
.gl-timeline-item::before { content: ""; position: absolute; left: -26px; top: 6px; width: 12px; height: 12px; background: #fff; border: 2px solid var(--gl-ink); }
.gl-timeline-title { font-family: 'Outfit', sans-serif; font-weight: 700; }
.gl-timeline-meta { font-size: 13px; color: var(--gl-text-2); }

/* ===== Rate calculator ===== */
.gl-calc { border: 1px solid var(--gl-ink); background: #fff; }
.gl-calc-row { display: grid; border-bottom: 1px solid var(--gl-border); }
.gl-calc-row > div { padding: 20px; border-right: 1px solid var(--gl-border); }
.gl-calc-row > div:last-child { border-right: 0; }
.gl-calc-row--2 { grid-template-columns: 1fr 1fr; }
.gl-calc-row--4 { grid-template-columns: repeat(4, 1fr); }
.gl-calc-footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px; flex-wrap: wrap; }
.gl-calc-label { font-family: 'Manrope', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; color: var(--gl-text-2); display: block; margin-bottom: 8px; }
.gl-calc-field { border: 0; padding: 0; width: 100%; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; background: transparent; outline: none; }
.gl-select { height: auto; }
.gl-calc-result { margin-top: 24px; background: var(--gl-ink); color: #fff; padding: 32px; border: 1px solid var(--gl-border); }
.gl-calc-result-grid { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: end; gap: 24px; margin-top: 16px; }
.gl-meganum { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; font-size: clamp(2.5rem, 5vw, 5rem); color: #fff; }
.gl-calc-cells { display: grid; grid-template-columns: repeat(2, auto); gap: 32px 18px; }
.gl-calc-cell .gl-calc-cell-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.gl-calc-cell .gl-calc-cell-value { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 20px; margin-top: 2px; }
@media (max-width: 700px) { .gl-calc-row--4 { grid-template-columns: 1fr 1fr; } }

/* ===== Trading block ===== */
.gl-trading { position: relative; overflow: hidden; color: #fff; background: #0A0A0A; padding: 96px 0; }
.gl-trading-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .3; }
.gl-trading-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.55), rgba(0,0,0,0.9)); }
.gl-trading-inner { position: relative; }
.gl-trading-head { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: end; }
.gl-trading-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.025em; line-height: 0.95; margin-top: 16px; color: #fff; }
.gl-trading-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.15); border-left: 1px solid rgba(255,255,255,0.15); }
.gl-trading-card { padding: 32px; border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); transition: background .3s; }
.gl-trading-card:hover { background: rgba(255,255,255,0.05); }
.gl-trading-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 48px; color: rgba(255,255,255,0.2); letter-spacing: -0.04em; }
.gl-trading-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 24px; margin-top: 24px; }
.gl-trading-copy { color: rgba(255,255,255,0.7); margin-top: 12px; line-height: 1.6; font-size: 14px; }
@media (max-width: 960px) { .gl-trading-grid { grid-template-columns: repeat(2, 1fr); } .gl-trading-head { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .gl-trading-grid { grid-template-columns: 1fr; } }

/* ===== Events block ===== */
.gl-events-bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; gap: 12px; min-height: 560px; }
.gl-bento-item { border: 1px solid var(--gl-border); overflow: hidden; background: #fff; }
.gl-bento-item img { width: 100%; height: 100%; object-fit: cover; }
.gl-bento-1 { grid-column: span 4; grid-row: span 4; }
.gl-bento-2 { grid-column: span 2; grid-row: span 3; background: var(--gl-ink); color: #fff; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.gl-bento-3 { grid-column: span 2; grid-row: span 3; background: var(--gl-highlight); padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.gl-bento-4 { grid-column: span 3; grid-row: span 2; }
.gl-bento-5 { grid-column: span 3; grid-row: span 2; padding: 20px; }
.gl-bento-big { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 26px; line-height: 1.2; }
@media (max-width: 960px) { .gl-events-bento { grid-template-columns: repeat(2, 1fr); } .gl-bento-1, .gl-bento-2, .gl-bento-3, .gl-bento-4, .gl-bento-5 { grid-column: span 2; grid-row: span 2; min-height: 220px; } }

/* ===== Stats ===== */
.gl-stats-head { display: grid; grid-template-columns: 3fr 2fr; gap: 32px; align-items: end; margin-top: 12px; }
.gl-stats-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 0.95; color: #fff; }
.gl-stats-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.15); border-left: 1px solid rgba(255,255,255,0.15); }
.gl-stat-cell { padding: 32px; border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
.gl-stat-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(3rem, 6vw, 5rem); letter-spacing: -0.04em; color: #fff; }
.gl-values-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gl-value-card { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.02); padding: 24px; transition: background .3s; }
.gl-value-card:hover { background: rgba(255,255,255,0.05); }
.gl-value-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 24px; color: var(--gl-highlight); }
.gl-value-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 19px; margin-top: 16px; color: #fff; }
@media (max-width: 960px) { .gl-stats-grid { grid-template-columns: repeat(2, 1fr); } .gl-values-grid { grid-template-columns: 1fr 1fr; } .gl-stats-head { grid-template-columns: 1fr; } }

/* ===== Partners marquee ===== */
.gl-partners { padding: 54px 0; border-top: 1px solid var(--gl-border); border-bottom: 1px solid var(--gl-border); background: #fff; }
.gl-divider-label { display: flex; align-items: center; gap: 16px; color: var(--gl-text-2); }
.gl-divider-label::before, .gl-divider-label::after { content: ""; height: 1px; background: var(--gl-border); flex: 1; }
.gl-marquee { overflow: hidden; margin-top: 24px; }
.gl-marquee-track { display: flex; gap: 48px; animation: gl-scroll 40s linear infinite; white-space: nowrap; }
.gl-marquee:hover .gl-marquee-track { animation-play-state: paused; }
.gl-marquee span { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(18px, 2vw, 28px); letter-spacing: 0.12em; color: #b8bec7; user-select: none; transition: color .3s; }
.gl-marquee span:hover { color: #000; }
@keyframes gl-scroll { to { transform: translateX(-50%); } }

/* ===== Testimonials ===== */
.gl-testi-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gl-testi-card { border: 1px solid var(--gl-border); background: #fff; padding: 28px; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.gl-testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(0,0,0,0.18); border-color: var(--gl-ink); }
.gl-testi-quote { font-family: 'Outfit', sans-serif; font-size: 19px; line-height: 1.35; margin-top: 18px; }
.gl-testi-cite { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gl-border); font-size: 14px; }
.gl-testi-cite strong { font-weight: 600; }
.gl-testi-cite span { display: block; color: var(--gl-text-2); }
@media (max-width: 900px) { .gl-testi-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.gl-faq-list { border-top: 1px solid var(--gl-border); }
.gl-faq-item { border-bottom: 1px solid var(--gl-border); }
.gl-faq-btn { width: 100%; background: none; border: 0; padding: 22px 0; text-align: left; cursor: pointer; display: flex; align-items: start; gap: 18px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; color: var(--gl-ink); }
.gl-faq-btn .idx { color: var(--gl-text-2); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 6px; min-width: 28px; }
.gl-faq-btn .plus { margin-left: auto; transition: transform .3s; font-size: 20px; color: var(--gl-text-2); }
.gl-faq-item.open .gl-faq-btn .plus { transform: rotate(45deg); }
.gl-faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s ease; padding: 0 24px 0 46px; color: var(--gl-text-2); font-size: 15px; line-height: 1.6; }
.gl-faq-item.open .gl-faq-answer { max-height: 500px; padding-bottom: 24px; }

/* ===== CTA banner ===== */
.gl-cta-banner { padding: 64px 0; background: var(--gl-highlight); }
.gl-cta-banner .gl-container { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.gl-cta-banner-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800; margin-top: 12px; letter-spacing: -0.02em; line-height: 1.05; }

/* ===== Footer ===== */
.gl-footer { background: #0A0A0A !important; color: #F5F5F5 !important; margin-top: 96px; padding: 96px 0 40px; }
.gl-footer, .gl-footer *, .gl-footer *::before, .gl-footer *::after { box-sizing: border-box; }
.gl-footer h1, .gl-footer h2, .gl-footer h3 { color: #fff !important; margin: 0; }
.gl-footer p { color: rgba(255,255,255,0.72) !important; margin: 0; }
.gl-footer a { color: inherit; text-decoration: none; }
.gl-footer .gl-overline { display: block; }

.gl-footer-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: start; }
.gl-footer-intro .gl-overline { color: #FF3B30 !important; }
.gl-footer-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(2.5rem, 6vw, 6rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.025em !important;
    margin: 18px 0 28px !important;
    color: #fff !important;
}
.gl-footer-title .text-hl { color: #FFCC00 !important; }
.gl-footer-lead { max-width: 560px; font-size: 17px !important; line-height: 1.6 !important; margin: 0 0 32px !important; color: rgba(255,255,255,0.72) !important; }
.gl-footer-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.gl-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.gl-footer-col .gl-overline { color: rgba(255,255,255,0.5) !important; margin-bottom: 18px; }
.gl-footer-list { list-style: none; margin: 0; padding: 0; }
.gl-footer-list li { display: flex; align-items: flex-start; gap: 12px; padding: 6px 0; font-size: 15px; color: rgba(255,255,255,0.82) !important; line-height: 1.6; }
.gl-footer-icon { color: #FFCC00 !important; flex-shrink: 0; margin-top: 3px; display: inline-flex; }
.gl-footer-list a { color: rgba(255,255,255,0.92) !important; }
.gl-footer-list a:hover { color: #fff !important; }
.gl-footer-menu { list-style: none; margin: 0; padding: 0; }
.gl-footer-menu li { padding: 0; }
.gl-footer-menu a { display: block; padding: 6px 0; font-family: 'Outfit', sans-serif !important; font-weight: 600 !important; font-size: 15px !important; color: rgba(255,255,255,0.82) !important; }
.gl-footer-menu a:hover { color: #fff !important; }

.gl-footer-bottom { margin-top: 64px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.55) !important; }
.gl-footer-bottom-item { text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }
.gl-footer-bottom-item.gl-credit { text-transform: none; letter-spacing: normal; font-weight: 400; display: inline-flex; align-items: center; gap: 6px; }
.gl-credit a { color: #fff !important; font-family: 'Outfit', sans-serif !important; font-weight: 600 !important; }
.gl-credit a:hover { color: #FFCC00 !important; }
.gl-heart { color: #FF3B30 !important; font-size: 14px; }

@media (max-width: 900px) {
    .gl-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .gl-footer-cols { grid-template-columns: 1fr 1fr; }
    .gl-footer-title { font-size: clamp(2.25rem, 9vw, 4.5rem) !important; }
}
@media (max-width: 560px) {
    .gl-footer-cols { grid-template-columns: 1fr; }
    .gl-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== Page header ===== */
.gl-pageheader { position: relative; padding: 80px 0; background: #fff; border-bottom: 1px solid var(--gl-border); overflow: hidden; }
.gl-pageheader-bg { position: absolute; inset: 0; opacity: .15; background-size: cover; background-position: center; }
.gl-pageheader-mask { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0.5), #fff); }
.gl-pageheader-inner { position: relative; }
.gl-pageheader-title { font-size: clamp(2.75rem, 7vw, 7rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.92; margin-top: 18px; max-width: 1000px; }
.gl-pageheader-sub { max-width: 700px; margin-top: 24px; font-size: 18px; color: var(--gl-text-2); line-height: 1.6; }

/* ===== Contact form ===== */
.gl-contact-wrap { display: grid; grid-template-columns: 5fr 7fr; gap: 40px; }
.gl-contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-top: 12px; }
.gl-contact-list { margin-top: 32px; padding: 0; list-style: none; }
.gl-contact-list li { display: flex; gap: 16px; padding: 12px 0; }
.gl-contact-list svg { color: var(--gl-navy); margin-top: 6px; }
.gl-contact-hours { margin-top: 32px; padding: 18px; border: 1px solid var(--gl-border); background: var(--gl-surface); font-size: 14px; }
.gl-contact-form { border: 1px solid var(--gl-ink); background: #fff; }
.gl-contact-form textarea { resize: none; }
.gl-success { border: 1px solid var(--gl-ink); background: var(--gl-ink); color: #fff; padding: 40px; }
.gl-success h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-top: 20px; line-height: 1.05; color: #fff; }
@media (max-width: 960px) { .gl-contact-wrap { grid-template-columns: 1fr; } }

/* ===== Journal ===== */
.gl-blog-hero { display: grid; grid-template-columns: 7fr 5fr; border: 1px solid var(--gl-border); overflow: hidden; }
.gl-blog-hero-img { aspect-ratio: 16/10; overflow: hidden; }
.gl-blog-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.gl-blog-hero-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.gl-blog-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gl-blog-card { border: 1px solid var(--gl-border); background: #fff; padding: 28px; transition: transform .35s, box-shadow .35s, border-color .35s; }
.gl-blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(0,0,0,0.18); border-color: var(--gl-ink); }
.gl-blog-meta { display: flex; align-items: center; gap: 12px; }
.gl-blog-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 20px; margin-top: 20px; letter-spacing: -0.01em; line-height: 1.25; }
.gl-blog-excerpt { margin-top: 12px; font-size: 14px; color: var(--gl-text-2); line-height: 1.6; }
.gl-blog-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gl-border); display: flex; justify-content: space-between; align-items: center; }
@media (max-width: 900px) { .gl-blog-hero, .gl-blog-grid { grid-template-columns: 1fr; } }

/* ===== Generic grid lines for category cards ===== */
.gl-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--gl-border); border-left: 1px solid var(--gl-border); background: #fff; }
.gl-cat-cell { padding: 28px; border-right: 1px solid var(--gl-border); border-bottom: 1px solid var(--gl-border); }
@media (max-width: 960px) { .gl-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gl-cat-grid { grid-template-columns: 1fr; } }

/* ===== Intro-style big paragraph ===== */
.gl-lead { max-width: 820px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.3; letter-spacing: -0.015em; }
.gl-prose { max-width: 820px; color: var(--gl-text-2); font-size: 17px; line-height: 1.7; margin-top: 24px; }
.gl-prose p { margin: 0 0 14px; }

/* ===== Toast ===== */
#gl-toast { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.gl-toast { background: var(--gl-ink); color: #fff; padding: 14px 18px; min-width: 260px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4); border-left: 4px solid var(--gl-highlight); animation: gl-toast-in .3s ease both; pointer-events: all; font-size: 14px; }
.gl-toast.error { border-left-color: var(--gl-accent); }
.gl-toast.success { border-left-color: #22c55e; }
@keyframes gl-toast-in { from { opacity: 0; transform: translateY(-8px);} to { opacity: 1; transform: translateY(0);} }

/* ===== Utility ===== */
.gl-hide-sm { display: inline-block; }
@media (max-width: 700px) { .gl-hide-sm { display: none; } }
.gl-rise { animation: gl-rise .8s ease both; }
@keyframes gl-rise { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }

/* Selection */
::selection { background: #0A0A0A; color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #dcdcdc; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #b0b0b0; }
