@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --green: #7CB518;
  --green-dark: #6aa014;
  --blue: #1976D2;
  --blue-dark: #1565C0;
  --navy: #0a1628;
  --navy-2: #0d2137;
  --ink: #1a2b1a;
  --muted: rgba(26, 43, 26, .62);
  --muted-light: rgba(255, 255, 255, .62);
  --bg-light: #f8fdf2;
  --line: rgba(10, 22, 40, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--ink); background: #fff; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #0d2137; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.topbar .container { max-width: none; padding: 0 20px; }
.topbar-in { display: flex; align-items: center; height: 90px; gap: 16px; justify-content: space-between; }
.tb-logo { display: inline-flex; flex-shrink: 0; margin-right: auto; }

/* Brand logo (real logo image, black bg blended into dark bars) */
.gx-logo-img { height: 76px; width: auto; display: block; mix-blend-mode: screen; }
.tb-nav { display: flex; gap: 26px; align-items: center; flex: 0 0 auto; }
.tb-link { position: relative; font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255, 255, 255, .72); transition: color .2s; padding: 4px 0; }
.tb-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.tb-link:hover { color: var(--green); }
.tb-link:hover::after { transform: scaleX(1); }
.tb-link.active { color: var(--green); }
.tb-link.active::after { transform: scaleX(1); }
.tb-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.tb-lang { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 1px; cursor: pointer; padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 6px; transition: all .2s; user-select: none; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border-radius: 4px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .3px; cursor: pointer; transition: all .25s; border: none; white-space: nowrap; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .3); }
.btn-outline-light:hover { border-color: var(--green); color: var(--green); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.section { padding: 88px 0; }
.section-alt { background: var(--bg-light); }
.kicker { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.kicker::before { content: ''; width: 26px; height: 2px; background: var(--green); }
.kicker.blue { color: var(--blue); }
.kicker.blue::before { background: var(--blue); }
.h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 700; line-height: 1.08; margin: 0 0 14px; }
.h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; line-height: 1.15; margin: 0 0 12px; }
.lead { font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 680px; margin: 0; }

.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 28px; transition: border-color .2s; }
.card:hover { border-color: rgba(10, 22, 40, .22); }
.card-dark { background: var(--navy-2); border: 1px solid rgba(255, 255, 255, .08); color: #fff; }
.card-dark:hover { box-shadow: 0 14px 34px rgba(0, 0, 0, .35); }
.card .icon { width: 46px; height: 46px; border-radius: 4px; display: flex; align-items: center; justify-content: center; background: rgba(124, 181, 24, .1); margin-bottom: 18px; }
.card .icon.blue { background: rgba(25, 118, 210, .1); }
.card h3 { font-size: 18px; margin: 0 0 8px; }
.card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.card-dark p { color: var(--muted-light); }

.chip { padding: 7px 13px; border-radius: 3px; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; }
.chip-green { border: 1px solid rgba(124, 181, 24, .35); color: var(--green); background: rgba(124, 181, 24, .07); }
.chip-blue { border: 1px solid rgba(25, 118, 210, .3); color: var(--blue); background: rgba(25, 118, 210, .06); }
.chip-gray { border: 1px solid var(--line); color: var(--muted); background: #fff; }

/* References list */
.ref-list { border-top: 1px solid var(--line); }
.ref-item { display: flex; flex-direction: column; gap: 3px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.ref-firm { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink); }
.ref-region { font-size: 12px; color: var(--muted); letter-spacing: .3px; text-transform: uppercase; }

/* Prominent use-case tags */
.tag { display: inline-block; padding: 12px 22px; border-radius: 3px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .2px; background: var(--green); color: #fff; transition: background .2s; }
.tag:hover { background: var(--green-dark); }
.tag.blue { background: var(--blue); }
.tag.blue:hover { background: var(--blue-dark); }

.page-hero { padding: 152px 0 76px; background: var(--navy); color: #fff; position: relative; border-bottom: 3px solid var(--green); }
.page-hero .lead { color: var(--muted-light); }
.page-hero.light { background: var(--bg-light); color: var(--ink); border-bottom: 1px solid var(--line); }
.page-hero.light .lead { color: var(--muted); }

.band { background: var(--navy); padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #fff; flex-wrap: wrap; border-radius: 4px; }
.band h2 { margin: 0; font-size: clamp(22px, 2.6vw, 30px); }

/* Emphasis for standout phrases */
.hl { color: var(--green); }
.page-hero.light .hl { color: var(--blue); }
.hl-underline { box-shadow: inset 0 -0.32em 0 rgba(124,181,24,.28); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
table.spec { width: 100%; border-collapse: collapse; min-width: 900px; font-size: 14px; }
table.spec th, table.spec td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.spec thead th { background: var(--navy); color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 13px; letter-spacing: .5px; white-space: nowrap; }
table.spec thead th small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-top: 3px; }
table.spec tbody tr:last-child td { border-bottom: none; }
table.spec tbody tr:nth-child(even) { background: rgba(124, 181, 24, .045); }
table.spec td:first-child { font-weight: 600; color: var(--muted); white-space: nowrap; }

.spec-mini { margin: 16px 0 20px; }
.spec-mini div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 13px; }
.spec-mini span { color: var(--muted); }
.spec-mini b { font-family: 'Space Grotesk', sans-serif; font-weight: 600; }

.acc { border: 1px solid var(--line); border-radius: 4px; background: #fff; margin-bottom: 10px; overflow: hidden; }
.acc-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px; }
.acc-body { padding: 0 24px 20px; font-size: 14px; line-height: 1.7; color: var(--muted); }
.acc-icon { transition: transform .25s; color: var(--green); font-size: 20px; font-weight: 700; line-height: 1; }
.acc.open .acc-icon { transform: rotate(45deg); }

.form { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form .full { grid-column: 1 / -1; }
.input, .select, .textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 4px; font-family: inherit; font-size: 14px; background: #fff; color: var(--ink); outline: none; transition: border .2s; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--green); }
.textarea { min-height: 120px; resize: vertical; }
.label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }

.info-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; font-size: 14px; }
.info-row .ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(124, 181, 24, .12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-row a { color: var(--ink); transition: color .2s; display: block; line-height: 1.7; }
.info-row a:hover { color: var(--green); }

.footer { background: var(--navy); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 48px; }
.footer h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin: 0 0 16px; }
.footer a, .footer p { font-size: 14px; color: rgba(255, 255, 255, .62); line-height: 1.9; margin: 0; }
.footer a { display: block; transition: color .2s; }
.footer a.social { display: inline-flex; }
.footer a:hover { color: var(--green); }
.footer-logo { margin-bottom: 16px; }
.footer-logo .gx-logo-img { height: 92px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; color: rgba(255, 255, 255, .4); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social { width: 40px; height: 40px; border-radius: 4px; border: 1px solid rgba(128, 128, 128, .4); display: inline-flex; align-items: center; justify-content: center; color: inherit; transition: all .2s; flex-shrink: 0; }
.social:hover { background: var(--green); border-color: var(--green); color: #fff; }
.social svg { width: 18px; height: 18px; display: block; }

.fab { position: fixed; bottom: 32px; right: 32px; z-index: 120; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, .4); transition: transform .3s; }
.fab:hover { transform: scale(1.1); }

.stat { display: flex; align-items: baseline; gap: 6px; }
.stat b { font-family: 'Space Grotesk', sans-serif; font-size: 15px; color: var(--green); }
.stat span { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, .45); }

@media (max-width: 960px) {
  .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tb-nav { display: none; }
}
@media (max-width: 640px) {
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .band { padding: 32px; }
  .page-hero { padding: 120px 0 56px; }
  .topbar .gx-logo-img { height: 60px; }
}
