/* ==========================================================================
   Brand Cloud USA — site.css
   1. Design tokens   2. Base    3. Keyframes
   4. Components      5. Utilities (auto-extracted repeated styles)
   6. Responsive
   Colours live in :root — change them there to re-skin the whole site.
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  --navy: #2E4560;        /* primary text / dark brand */
  --navy-900: #22374F;
  --navy-700: #3B5677;
  --blue: #3E5C88;        /* brand primary — links & buttons */
  --blue-400: #5B7FB4;
  --blue-300: #6E93C4;
  --slate: #4E6076;       /* body copy */
  --slate-400: #6B7A8D;
  --slate-300: #9AA8B8;
  --line: #E3EAF2;
  --line-input: #D9E2EC;
  --bg-tint: #EFF3F8;     /* light section background */
  --blue-tint: #CFE4F6;
  --green-tint: #DDF2E9;
  --accent: #2FBF8F;      /* green accent */
  --accent-700: #57A98A;
  --yellow: #FFD966;
  --gold: #F2C94C;
  --danger: #D64545;
  --font-body: 'Jost', sans-serif;
  --font-display: 'Archivo', sans-serif;
  --header-h: 73px;
  --shell: 1360px;        /* header max width */
  --shell-narrow: 1200px; /* footer / content max width */
}

/* 2. Base ---------------------------------------------------------------- */
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--navy); background: #ffffff; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
input, select, textarea, button { font-family: var(--font-body); }
h1, h2, h3 { overflow-wrap: break-word; }
img { max-width: 100%; }
div[style*="grid-template-columns"] > div, .grid-1 > div, .grid-2 > div, .grid-3 > div { min-width: 0; }

/* 3. Keyframes ----------------------------------------------------------- */
@keyframes bcRise  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes bcNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
@keyframes bcFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes bcOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bcPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.45); } 70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
@keyframes bcDrift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 20px) scale(1.08); } }

/* 4. Components ---------------------------------------------------------- */

/* --- Site furniture --- */
.nav-link { font-size: 15px; font-weight: 500; }
.burger-bar { display: block; width: 24px; height: 2px; background: var(--navy); }
.field { display: flex; flex-direction: column; gap: 10px; }
.field-label { font-weight: 600; font-size: 16px; }
.req { color: var(--danger); }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { max-width: 1360px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.header-logo { height: 44px; display: block; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger { flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; cursor: pointer; }
.nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.header-spacer { height: 73px; flex: none; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 72px 32px; display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-logo { height: 56px; width: auto; align-self: flex-start; }
.footer-social { display: flex; gap: 18px; align-items: center; }
.footer-right { display: flex; gap: 64px; flex-wrap: wrap; align-items: flex-start; }
.footer-nav { display: flex; flex-direction: column; gap: 16px; }
.footer-bar { background: var(--navy-700); color: rgba(255,255,255,.85); }
.footer-bar-inner { max-width: 1200px; margin: 0 auto; padding: 18px 32px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 14px; }
.input { width: 100%; box-sizing: border-box; background: #ffffff; border: 1px solid var(--line-input); border-radius: 10px; padding: 15px 16px; font-size: 16px; color: var(--navy); }
.nav-link.is-current { font-size: 15px; font-weight: 600; color: var(--navy); border-bottom: 2px solid var(--navy); padding-bottom: 4px; }
.form { margin-top: 48px; display: flex; flex-direction: column; gap: 26px; }
.input.input-country { flex: 0 0 200px; background: #ffffff; border: 1px solid var(--line-input); border-radius: 10px; padding: 15px 12px; font-size: 16px; color: var(--navy); }
.input.input-phone { flex: 1; min-width: 220px; box-sizing: border-box; background: #ffffff; border: 1px solid var(--line-input); border-radius: 10px; padding: 15px 16px; font-size: 16px; color: var(--navy); }
.input.input-area { width: 100%; box-sizing: border-box; background: #ffffff; border: 1px solid var(--line-input); border-radius: 10px; padding: 15px 16px; font-size: 16px; color: var(--navy); resize: vertical; }

/* --- Buttons --- */
.btn-1 { display: inline-block; background: var(--blue); color: #ffffff; padding: 16px 40px; border-radius: 999px; font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease; }
.btn-2 { display: inline-block; background: var(--blue); color: #ffffff; padding: 12px 26px; border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease; }
.btn-3 { display: inline-block; background: var(--blue); color: #ffffff; padding: 14px 32px; border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease; }
.btn-4 { align-self: flex-start; background: var(--accent); color: #ffffff; padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.btn-5 { background: var(--navy); color: #ffffff; padding: 8px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.btn-6 { display: inline-block; border: 2px solid #ffffff; color: #ffffff; padding: 16px 40px; border-radius: 999px; font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease; }
.btn-7 { pointer-events: auto; display: inline-block; background: #ffffff; color: var(--navy); padding: 19px 50px; border-radius: 999px; font-size: 16px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; animation: bcPulse 2.4s ease-out infinite; transition: background .25s ease, color .25s ease, transform .2s ease; }
.btn-8 { align-self: flex-start; background: var(--bg-tint); color: var(--slate-400); padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.btn-9 { display: inline-block; background: var(--blue); color: #ffffff; padding: 17px 40px; border-radius: 999px; font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease; }
.btn-10 { display: inline-block; background: var(--blue); color: #ffffff; padding: 17px 44px; border-radius: 999px; font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease; }

/* --- Cards & panels --- */
.card-1 { display: inline-flex; align-items: center; gap: 7px; background: var(--blue); color: #ffffff; border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 600; }
.card-2 { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 30px 28px; display: flex; flex-direction: column; gap: 10px; }
.card-3 { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; }
.card-4 { box-sizing: border-box; min-height: clamp(240px, 34vh, 380px); background: #ffffff; border: 1px solid var(--navy-700); border-radius: 6px; box-shadow: 0 14px 36px rgba(46,69,96,.10); padding: 30px 28px 26px; display: flex; flex-direction: column; gap: 20px; }
.card-5 { display: flex; align-items: center; gap: 16px; padding: 8px 12px; font-size: 15px; font-weight: 600; color: var(--navy); background: var(--blue-tint); border: 1.5px dashed var(--blue); border-radius: 4px; }
.card-6 { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1.5px solid var(--navy); border-radius: 999px; padding: 12px 20px; }
.card-7 { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 38px 34px; display: flex; flex-direction: column; gap: 14px; }
.card-8 { background: var(--bg-tint); border-radius: 20px; padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; gap: 34px; }
.card-9 { background: #ffffff; border-radius: 16px; padding: 22px 24px; display: flex; align-items: center; justify-content: center; }
.card-10 { background: #ffffff; border-radius: 16px; padding: 26px 28px; }
.card-11 { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-tint); border-radius: 999px; padding: 9px 18px; font-size: 14.5px; font-weight: 500; color: var(--navy); }
.card-12 { box-sizing: border-box; min-height: clamp(300px, 40vh, 460px); background: #ffffff; border: 1px solid var(--navy-700); border-radius: 6px; box-shadow: 0 14px 36px rgba(46,69,96,.10); padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 16px; }
.card-13 { background: #ffffff; border: 1px solid var(--line); color: var(--slate-400); border-radius: 999px; padding: 6px 15px; font-size: 12.5px; font-weight: 500; }
.card-14 { display: flex; align-items: center; gap: 12px; padding: 9px 12px; font-size: 15px; font-weight: 500; color: var(--navy); background: var(--bg-tint); border-radius: 8px; }
.card-15 { background: #ffffff; border-radius: 16px; box-shadow: 0 24px 60px rgba(46,69,96,.16); padding: 28px 30px; display: flex; flex-direction: column; gap: 16px; }
.card-16 { box-sizing: border-box; background: #ffffff; border: 1px solid var(--navy-700); border-radius: 6px; box-shadow: 0 14px 36px rgba(46,69,96,.10); padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 14px; }

/* --- Headings --- */
.title-1 { margin: 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 700; text-transform: uppercase; font-size: 20px; letter-spacing: .03em; color: var(--yellow); }
.title-2 { margin: 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: 20px; color: var(--yellow); }
.title-3 { margin: 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3.8vw, 50px); color: var(--navy); }
.title-4 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; font-size: 44px; color: var(--yellow); }
.title-5 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: clamp(19px, 2.1vw, 27px); color: var(--blue); }
.title-6 { margin: 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; line-height: 1.08; font-size: clamp(34px, 4.2vw, 60px); }
.title-7 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 52px; line-height: 1; }
.title-8 { margin: 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; line-height: 1.06; font-size: clamp(38px, 4.8vw, 66px); }
.title-9 { margin: 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; line-height: 1.08; font-size: clamp(34px, 4.6vw, 60px); }
.title-10 { margin: 14px 0 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: clamp(28px, 3.6vw, 46px); color: var(--navy); }
.title-11 { margin: 0; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: clamp(24px, 2.6vw, 34px); color: var(--navy); }

/* --- Grids --- */
.grid-1 { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; text-align: left; }
.grid-2 { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.grid-3 { margin: 44px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }

/* --- Layout boxes --- */
.box-1 { display: inline-flex; }
.box-2 { display: flex; flex-direction: column; gap: 14px; }
.box-3 { display: flex; gap: 18px; flex-wrap: wrap; }
.box-4 { display: flex; align-items: center; gap: 16px; padding: 8px 12px; font-size: 15px; color: var(--slate); }
.box-5 { display: flex; flex-direction: column; gap: 24px; }
.box-6 { display: flex; gap: 18px; }
.box-7 { position: relative; overflow: hidden; background: var(--bg-tint); display: flex; align-items: center; padding: 100px 32px; }
.box-8 { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.box-9 { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.box-10 { display: flex; flex-direction: column; gap: 28px; }
.box-11 { display: flex; flex-direction: column; gap: 20px; }
.box-12 { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 32px; }
.box-13 { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.box-14 { position: relative; overflow: hidden; background: var(--navy-700); display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 32px; }
.box-15 { display: flex; flex-direction: column; gap: 12px; }
.box-16 { font-size: 15px; font-weight: 600; color: var(--navy); display: flex; gap: 20px; flex-wrap: wrap; }
.box-17 { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--slate-400); }
.box-18 { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.box-19 { flex: 1 1 380px; display: flex; justify-content: center; }
.box-20 { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-right: 48px; }
.box-21 { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--blue); }
.box-22 { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.box-23 { position: relative; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.box-24 { position: relative; overflow: hidden; background: #ffffff; display: flex; align-items: center; padding: 100px 32px; }
.box-25 { display: flex; flex-direction: column; gap: 8px; }
.box-26 { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.box-27 { display: flex; gap: 8px; flex-wrap: wrap; }
.box-28 { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }

/* --- Text utilities --- */
.txt-1 { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.txt-2 { margin: 0; font-size: 16.5px; line-height: 1.75; color: var(--slate); }
.txt-3 { margin-top: 48px; }
.txt-4 { color: var(--navy); }
.txt-5 { margin: 0; font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,.82); }
.txt-6 { text-align: center; }
.txt-7 { color: rgba(255,255,255,.85); }
.txt-8 { font-size: 16.5px; font-weight: 500; color: var(--navy); }
.txt-9 { margin: 0; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.82); }
.txt-10 { margin: 22px auto 0; max-width: 680px; font-size: 19px; line-height: 1.7; color: var(--slate); }
.txt-11 { margin-left: auto; color: var(--gold); font-size: 20px; line-height: 1; }
.txt-12 { margin: 0; font-size: 23px; font-weight: 600; color: #ffffff; }
.txt-13 { margin: 0; font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,.82); }
.txt-14 { font-size: 15px; color: var(--slate-400); }
.txt-15 { margin: 0; font-size: clamp(21px, 2.3vw, 28px); font-weight: 600; line-height: 1.4; color: var(--navy); }
.txt-16 { margin: 0; font-size: 16.5px; line-height: 1.7; color: var(--navy); }
.txt-17 { margin-top: 12px; font-size: 14.5px; color: var(--slate-400); }
.txt-18 { margin: 0; font-size: 21px; font-weight: 600; color: var(--navy); }
.txt-19 { margin: 12px 0 0; font-size: 16.5px; line-height: 1.8; color: var(--slate); }
.txt-20 { font-size: 13.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); }
.txt-21 { margin: 20px auto 0; max-width: 720px; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.6; font-weight: 500; color: var(--yellow); }
.txt-22 { font-size: 14.5px; letter-spacing: .04em; color: rgba(255,255,255,.75); }
.txt-23 { margin: 0 0 16px; font-size: 15px; color: var(--slate-400); }
.txt-24 { color: #ffffff; }
.txt-25 { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.txt-26 { font-size: 13.5px; color: var(--slate-400); }
.txt-27 { font-size: 13.5px; }
.txt-28 { color: var(--accent); font-weight: 600; }
.txt-29 { color: var(--slate-400); }
.txt-30 { font-size: 34px; }
.txt-31 { margin-top: 8px; font-size: 18px; letter-spacing: .04em; color: var(--slate); }
.txt-32 { margin: 0; font-size: 25px; font-weight: 600; color: var(--navy); text-align: center; }
.txt-33 { margin: 0; font-size: 16.5px; line-height: 1.75; color: var(--slate); flex: 1; text-align: left; }
.txt-34 { margin: 26px 0 0; max-width: 560px; font-size: 19px; line-height: 1.7; color: var(--slate); }
.txt-35 { margin-top: 36px; }
.txt-36 { margin: 0; font-size: 15px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.txt-37 { margin: 18px 0 0; font-size: 17.5px; line-height: 1.75; color: var(--slate); }
.txt-38 { font-size: 17px; font-weight: 700; color: var(--navy); }
.txt-39 { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-300); padding-bottom: 7px; border-bottom: 2.5px solid transparent; }
.txt-40 { margin: 0; font-size: 15px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); }
.txt-41 { margin: 0 0 16px; text-align: center; font-size: 15px; color: var(--slate-400); }

/* --- Decorative layers --- */
.deco-1 { position: absolute; inset: 0; pointer-events: none; background-image: url('assets/network-light.svg'); background-size: cover; background-position: center; opacity: .35; }
.deco-2 { position: absolute; inset: 0; pointer-events: none; background-image: url('assets/network-light.svg'); background-size: cover; background-position: center; opacity: .22; }
.deco-3 { position: absolute; left: -10%; bottom: -26%; width: 30vw; height: 30vw; border: 1.5px solid rgba(62,92,136,.14); border-radius: 50%; pointer-events: none; }
.deco-4 { position: absolute; inset: 0; pointer-events: none; background-image: url('assets/network-dark.svg'); background-size: cover; background-position: center; opacity: .45; }
.deco-5 { position: absolute; right: -8%; top: -22%; width: 34vw; height: 34vw; border: 1.5px solid rgba(255,255,255,.14); border-radius: 50%; pointer-events: none; }
.deco-6 { position: absolute; inset: 0; pointer-events: none; }
.deco-7 { position: absolute; top: -10%; left: -6%; width: 34%; height: 48%; background: var(--green-tint); border-radius: 14px; transform: rotate(-6deg); }
.deco-8 { position: absolute; top: -10%; bottom: -10%; left: 62%; width: 10px; background: #ffffff; transform: rotate(12deg); }
.deco-9 { position: absolute; inset: 0; }
.deco-10 { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(160deg, rgba(24,38,60,.94) 0%, rgba(46,69,96,.90) 55%, rgba(62,92,136,.82) 100%); }
.deco-11 { position: absolute; right: -8%; top: -35%; width: 44vw; height: 44vw; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(47,191,143,.30), rgba(47,191,143,0) 65%); animation: bcDrift 12s ease-in-out infinite; }
.deco-12 { position: absolute; left: -12%; bottom: -45%; width: 38vw; height: 38vw; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), rgba(255,255,255,0) 65%); animation: bcDrift 15s ease-in-out infinite reverse; }
.deco-13 { position: absolute; bottom: -14%; right: -8%; width: 32%; height: 46%; background: var(--blue-tint); border-radius: 16px; transform: rotate(4deg); }
.deco-14 { position: absolute; top: 32%; left: -5%; right: -5%; height: 10px; background: #ffffff; transform: rotate(-6deg); }
.deco-15 { position: absolute; top: 70%; left: -5%; right: -5%; height: 7px; background: #ffffff; transform: rotate(3deg); }
.deco-16 { position: absolute; top: 8%; left: 6%; font-size: 11px; font-weight: 600; color: var(--accent-700); letter-spacing: .04em; }
.deco-17 { position: absolute; bottom: 10%; right: 7%; font-size: 11px; color: var(--slate-300); letter-spacing: .04em; }
.deco-18 { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: soft-light; background: var(--blue-300); opacity: .34; }
.deco-19 { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(62,92,136,.12) 0%, rgba(62,92,136,.03) 45%, rgba(62,92,136,.10) 100%); }
.deco-20 { position: absolute; top: -20px; right: -14px; width: 64px; height: 64px; border-radius: 50%; background: var(--accent); box-shadow: 0 14px 30px rgba(47,191,143,.45); display: flex; align-items: center; justify-content: center; }

/* --- Misc utilities --- */
.u-1 { display: block; color: #ffffff; }
.u-2 { display: block; color: var(--navy); }
.u-3 { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; text-align: center; }
.u-4 { background: #ffffff; }
.u-5 { width: 100%; max-width: 380px; height: auto; display: block; }
.u-6 { flex: none; margin-left: auto; }
.u-7 { position: relative; max-width: 880px; pointer-events: none; }
.u-8 { flex: 0 0 220px; font-weight: 600; font-size: 16px; color: var(--slate-400); }
.u-9 { align-self: flex-end; font-weight: 600; font-size: 16px; }
.u-10 { flex: 1 1 480px; }
.u-11 { position: relative; width: 100%; max-width: 420px; }
.u-12 { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.u-13 { flex: none; }
.u-14 { border-top: 1px solid var(--bg-tint); padding-top: 14px; font-size: 13px; color: var(--slate-400); text-align: center; }
.u-15 { position: relative; max-width: 1200px; }
.u-16 { position: relative; overflow: hidden; background: #ffffff; padding: 100px 32px; }
.u-17 { flex: 1 1 460px; }
.u-18 { flex: 1 1 360px; }
.u-19 { flex: 1; font-size: 17px; min-width: 240px; }

/* Burger + nav behaviour (mobile menu is pure CSS via a hidden checkbox) */
.burger { display: none; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

/* Hover states — !important so they win over remaining inline styles */
.hv-navy:hover { background: var(--navy) !important; color: #ffffff !important; transform: translateY(-3px) !important; box-shadow: 0 14px 30px rgba(46,69,96,.35) !important; }
.hv-accent:hover { background: var(--accent) !important; color: #ffffff !important; transform: scale(1.05) !important; }
.hv-accent-line:hover { background: var(--accent) !important; border: 2px solid var(--accent) !important; color: #ffffff !important; transform: translateY(-3px) !important; box-shadow: 0 14px 30px rgba(0,0,0,.3) !important; }
.hv-navy-lg:hover { background: var(--navy) !important; color: #ffffff !important; transform: translateY(-3px) !important; box-shadow: 0 18px 40px rgba(46,69,96,.35) !important; }
.hv-navy-plain:hover { background: var(--navy) !important; transform: translateY(-3px) !important; box-shadow: 0 14px 30px rgba(46,69,96,.35) !important; }

/* Rotating hero word */
.hero-rotate { display: inline-block; color: #ffffff; animation: bcRise .55s cubic-bezier(.2,.7,.2,1) both; }

/* FAQ accordion */
.faq-item { background: #ffffff; border-radius: 14px; box-shadow: 0 6px 20px rgba(46,69,96,.06); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 28px; font-size: 18px; font-weight: 600; color: var(--navy); font-family: inherit; }
.faq-icon { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 999px; background: var(--bg-tint); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--blue); color: #ffffff; transform: rotate(45deg); }
.faq-a { margin: 0; padding: 0 28px 26px; font-size: 16.5px; line-height: 1.75; color: var(--slate); }
.faq-a[hidden] { display: none; }

/* Contact form states */
.form-thanks { margin-top: 48px; background: #ffffff; border-radius: 16px; padding: 56px 40px; text-align: center; box-shadow: 0 10px 30px rgba(46,69,96,.08); }
.form-thanks-title { font-size: 26px; font-weight: 600; color: var(--navy); }
.form-thanks-text { margin: 14px 0 0; font-size: 17px; color: var(--slate); }
.form-error { margin: 0; text-align: center; font-size: 15.5px; color: var(--danger); }
[hidden] { display: none !important; }
.is-busy { opacity: .6; pointer-events: none; }

/* 6. Responsive ---------------------------------------------------------- */
@media (max-width: 960px) {
  .burger { display: flex !important; }
  nav.nav { display: none !important; }
  #bc-nav-toggle:checked ~ nav.nav {
    display: flex !important; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 20px; background: #ffffff;
    padding: 24px 32px 30px; border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px rgba(46,69,96,.14);
  }
  nav.nav a { font-size: 17px; }
  section { min-height: 0 !important; }
  section[data-split] { padding-top: 0 !important; padding-bottom: 0 !important; }
  section[data-split] > div[style*="min-height: clamp"] { min-height: 75vw !important; }
}
@media (max-width: 720px) {
  div[style*="grid-template-columns"], .grid-1, .grid-2, .grid-3 { grid-template-columns: 1fr !important; }
  .bc-stats { align-content: start !important; }
  .bc-stats > div { padding: 18px 24px !important; border-left: none !important; border-right: none !important; }
  .bc-stats > div:nth-child(2) { border-top: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .bc-stats > div > div:first-child { font-size: 38px !important; }
  .bc-stats > div > div:first-child span { font-size: 26px !important; }
  .bc-stats > div > div:last-child { margin-top: 4px !important; font-size: 15px !important; }
}
