/* =================================================================
   oxibetcasinologin.com — Oxibet Brand Protection Site
   Dark navy theme. Brand navy #172a3b, accent gold #f2b441.
   Sibling of oxibet.casino / oxibetcanada.com / oxibetcasino.com.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --navy:        #172a3b;
  --navy-700:    #21384a;
  --navy-600:    #2c4658;
  --navy-800:    #0f2030;
  --navy-900:    #0a1826;
  --gold:        #f2b441;
  --gold-light:  #ffd484;
  --gold-dark:   #d99a26;
  --green:       #289507;
  --green-dark:  #1f7d04;
  --star:        #ffc107;
  --blue:        #6FB2F4;
  --red:         #e0574f;
  --bg:          #172a3b;
  --surface:     #21384a;
  --surface-2:   #1c3142;
  --ink:         #ffffff;
  --ink-soft:    rgba(255,255,255,.72);
  --ink-dim:     rgba(255,255,255,.55);
  --line:        rgba(255,255,255,.12);
  --line-soft:   rgba(255,255,255,.06);
  --radius:      16px;
  --radius-sm:   12px;
  --radius-pill: 40px;
  --shadow:      0 4px 6px rgba(0,0,0,.3);
  --shadow-lg:   0 8px 24px rgba(0,0,0,.4);
  --maxw:        1200px;
  --font:        'Poppins', system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.5;
  color: var(--ink); background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--gold-dark); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy); padding: 10px 16px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700; z-index: 300; }
.skip-link:focus { left: 0; }

h1 { font-size: 42px; font-weight: 600; line-height: 1.2; color: var(--ink); }
h2 { font-size: 34px; font-weight: 600; line-height: 1.2; margin-top: 40px; color: var(--ink); }
h3 { font-size: 26px; font-weight: 600; line-height: 1.25; margin-top: 30px; color: var(--ink); }
h4 { font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--ink); }

/* ---------------------------------------------------------------
   HEADER / NAV
   --------------------------------------------------------------- */
.site-header { background: rgba(23,42,59,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 16px; padding-block: 10px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand img { height: 42px; width: auto; transition: transform .3s ease; }
.brand:hover img { transform: scale(1.04); }
.brand .tag { color: var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border-left: 2px solid var(--gold); padding-left: 10px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; margin-left: auto; font-weight: 600; font-size: 15px; }
.nav-links a { color: var(--ink); padding: 6px 2px; position: relative; }
.nav-links > li > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .28s cubic-bezier(.22,1,.36,1); }
.nav-links > li > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1) !important; }
.nav-links .lang-switch a { color: var(--ink-soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: var(--radius-sm); font-size: .86rem; transition: color .25s, border-color .25s, background .25s; }
.nav-links .lang-switch a::after { display: none; }
.nav-links .lang-switch a:hover { color: var(--navy); border-color: var(--gold); background: var(--gold); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; border-radius: var(--radius-sm); position: relative; margin-left: auto; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; width: 24px; height: 3px; background: var(--ink); left: 10px; border-radius: 2px; transition: .25s ease; }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: var(--navy-800); padding: 14px; display: none; border-bottom: 1px solid var(--line); margin-left: 0; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; animation: navDrop .3s cubic-bezier(.22,1,.36,1); }
  @keyframes navDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .nav-links a { padding: 13px 14px; border-radius: var(--radius-sm); }
  .nav-links > li > a:not(.nav-cta)::after { display: none; }
  .nav-links a.active { background: var(--surface); }
  .brand .tag { display: none; }
  .nav-links .lang-switch a { text-align: center; }
}

/* ---------------------------------------------------------------
   BUTTONS + CTA ANIMATION SYSTEM
   --------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 1.02rem;
  padding: 15px 34px; border-radius: var(--radius-sm); border: 0; cursor: pointer;
  text-decoration: none !important; line-height: 1.25; text-align: center;
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, background .28s ease, color .28s ease;
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.btn .btn-arrow { display: inline-block; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* Shimmer sweep — runs on a loop and again, faster, on hover */
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.55) 48%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.55) 52%, transparent 80%);
  transform: translateX(-120%);
  animation: shimmer 4.5s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 42%, var(--gold-dark) 100%);
  background-size: 180% 180%;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(242,180,65,.28), 0 0 0 0 rgba(242,180,65,.45);
  animation: ctaGlow 2.8s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 6px 18px rgba(242,180,65,.24), 0 0 0 0 rgba(242,180,65,.40); }
  50%     { box-shadow: 0 10px 26px rgba(242,180,65,.40), 0 0 0 9px rgba(242,180,65,0); }
}
.btn-primary:hover {
  color: var(--navy-900);
  transform: translateY(-3px) scale(1.025);
  filter: brightness(1.07) saturate(1.05);
  box-shadow: 0 14px 30px rgba(242,180,65,.45);
  animation-play-state: paused;
}
.btn-primary:hover::before { animation-duration: 1.1s; }
.btn-primary:active { transform: translateY(-1px) scale(.99); box-shadow: 0 5px 14px rgba(242,180,65,.35); }

.btn-green { background: linear-gradient(135deg, #35b30c 0%, var(--green) 45%, var(--green-dark) 100%); color: #fff; box-shadow: 0 6px 18px rgba(40,149,7,.3); }
.btn-green:hover { color: #fff; transform: translateY(-3px) scale(1.025); box-shadow: 0 14px 30px rgba(40,149,7,.45); }
.btn-green:active { transform: translateY(-1px) scale(.99); }

.btn-ghost { background: transparent; color: var(--ink); border: 2px solid rgba(255,255,255,.45); }
.btn-ghost::before { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .38s cubic-bezier(.22,1,.36,1); }
.btn-ghost:hover { color: var(--navy); border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-ghost:active { transform: translateY(-1px); }

.btn-sm { padding: 11px 22px; font-size: .93rem; }
.btn-block { width: 100%; }

/* Click ripple (injected by site.js) */
.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.55); transform: scale(0); animation: ripple .62s cubic-bezier(.22,1,.36,1); pointer-events: none; z-index: -1; }
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* Header CTA */
.nav-cta {
  /* display must be inline-flex: overflow:hidden has no effect on inline boxes,
     and the shimmer ::before would otherwise paint outside the button. */
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%) !important;
  color: var(--navy) !important; font-weight: 700 !important;
  padding: 10px 22px !important; border-radius: var(--radius-sm) !important;
  box-shadow: 0 4px 14px rgba(242,180,65,.3);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease;
  animation: ctaGlow 2.8s ease-in-out infinite;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.6) 50%, transparent 80%);
  transform: translateX(-120%); animation: shimmer 4.5s cubic-bezier(.4,0,.2,1) infinite;
}
.nav-cta:hover { text-decoration: none !important; transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 22px rgba(242,180,65,.45); animation-play-state: paused; }
.nav-cta::after { display: none !important; }

/* Sticky mobile CTA bar */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: none; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(15,32,48,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .42s cubic-bezier(.22,1,.36,1); }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; padding: 14px 20px; font-size: 1rem; }
/* Reserve room so the fixed bar never covers the end of the footer. */
@media (max-width: 760px) { .sticky-cta { display: block; } body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); } }

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero { position: relative; background: radial-gradient(1100px 520px at 12% -10%, rgba(242,180,65,.14) 0%, rgba(242,180,65,0) 62%), linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 100%); padding: 40px 0 24px; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -140px; top: -160px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(111,178,244,.13) 0%, rgba(111,178,244,0) 70%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.breadcrumbs { font-size: .88rem; color: var(--ink-dim); padding: .5em 0; }
.breadcrumbs a { color: var(--ink-dim); }
.breadcrumbs a:hover { color: var(--gold); }
.hero h1 { margin-top: 16px; color: var(--ink); max-width: 22ch; }
.hero .lead { margin-top: 18px; max-width: 66ch; color: var(--ink-soft); font-size: 1.08rem; }
.hero-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 16px; font-size: .86rem; color: var(--ink-dim); }

.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* Hero offer chip strip */
.offer-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.offer-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 16px; font-size: .9rem; font-weight: 600; color: var(--ink); transition: border-color .25s, transform .25s, background .25s; }
.offer-chip:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(242,180,65,.1); }
.offer-chip b { color: var(--gold); }

main { padding-block: 12px 20px; }
.prose { max-width: var(--maxw); margin-inline: auto; }
.prose.wide { max-width: var(--maxw); }
.prose h2 { color: var(--ink); margin-top: 1.5em; margin-bottom: .4em; scroll-margin-top: 90px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--ink); margin-top: 1.15em; margin-bottom: .35em; scroll-margin-top: 90px; }
.prose h4 { margin-top: 1.1em; margin-bottom: .3em; }
.prose p { margin-bottom: 1.1em; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 1.3em 0; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: .55em; color: var(--ink); }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold-light); }
.prose em { color: var(--ink-soft); }

.section-lead { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 1.4em; }

.prose ol { counter-reset: step; list-style: none; padding-left: 0; }
.prose ol > li { counter-increment: step; position: relative; padding-left: 3em; margin-bottom: 1em; }
.prose ol > li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 28px; height: 28px; line-height: 26px; text-align: center; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); font-weight: 700; background: var(--navy-800); }

/* ---------------------------------------------------------------
   TABLES
   --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; margin: 1.6em 0; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); font-size: .97rem; color: var(--ink); }
thead { background: var(--navy-800); }
thead th { color: var(--gold); text-align: left; font-weight: 600; font-size: .98rem; padding: 14px 16px; border-bottom: 1px solid var(--line); }
tbody td { padding: 13px 16px; border-top: 1px solid var(--line-soft); vertical-align: top; color: var(--ink); }
tbody tr:nth-child(even) td { background: var(--surface-2); }
tbody tr { transition: background .2s; }
tbody tr:hover td { background: rgba(242,180,65,.07); }
tbody td:first-child { font-weight: 600; }
.yes { color: #6ee07a; font-weight: 700; }
.no  { color: #ff8d85; font-weight: 700; }

/* ---------------------------------------------------------------
   CARDS / GRIDS / COMPONENTS
   --------------------------------------------------------------- */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin: 1.8em 0; }
.fact { background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s; }
.fact:hover { transform: translateY(-4px); border-color: rgba(242,180,65,.5); }
.fact .k { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-dim); font-weight: 600; }
.fact .v { font-size: 1.55rem; font-weight: 700; color: var(--gold); margin-top: 6px; }

.callout { background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 24px; margin: 1.6em 0; box-shadow: var(--shadow); color: var(--ink); }
.callout.rg { border-left-color: var(--green); }
.callout.warn { border-left-color: var(--red); }
.callout h3 { margin-top: 0; color: var(--ink); font-size: 1.25rem; }
.callout p:last-child { margin-bottom: 0; }
.callout p, .callout strong, .callout li { color: var(--ink); }
.callout a { color: var(--gold); }
.callout ul { margin-bottom: 0; }

.steps { list-style: none; margin: 1.6em 0; counter-reset: stp; padding-left: 0; }
.steps > li { counter-increment: stp; position: relative; list-style: none; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px 20px 76px; margin-bottom: 14px; box-shadow: var(--shadow); color: var(--ink); transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s; }
.steps > li:hover { transform: translateX(4px); border-color: rgba(242,180,65,.45); }
.steps > li::before { content: counter(stp); position: absolute; left: 20px; top: 20px; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--navy); font-weight: 700; display: grid; place-items: center; font-size: 1.1rem; }
.steps h3 { margin-top: 0; color: var(--ink); font-size: 1.22rem; }
.steps > li p { margin-bottom: 0; color: var(--ink); }
.steps > li p + p { margin-top: .7em; }
.steps > li ul { margin: .7em 0 0; }
.steps > li ul li { color: var(--ink); }

/* Two-column pros/cons */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 1.8em 0; }
.split > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.split .pros { border-top: 4px solid var(--green); }
.split .cons { border-top: 4px solid var(--red); }
.split h3 { margin-top: 0; font-size: 1.2rem; }
.split ul { margin-bottom: 0; padding-left: 1.2em; }
.split li { font-size: .96rem; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

/* Feature tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 1.8em 0; }
.tile { background: linear-gradient(165deg, var(--surface) 0%, var(--navy-800) 100%); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: transform .32s cubic-bezier(.22,1,.36,1), border-color .32s, box-shadow .32s; }
.tile:hover { transform: translateY(-5px); border-color: rgba(242,180,65,.5); box-shadow: var(--shadow-lg); }
.tile h3 { margin-top: 0; font-size: 1.18rem; }
.tile h4 { margin-top: 0; margin-bottom: .5em; color: var(--gold); }
.tile p:last-child { margin-bottom: 0; }
.tile .tnum { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }

/* Chip list (studios, leagues, methods) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.4em 0 1.8em; padding-left: 0 !important; list-style: none; }
.chips li { margin-bottom: 0 !important; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 18px; font-size: .92rem; font-weight: 600; color: var(--ink); transition: border-color .25s, transform .25s, color .25s; }
.chips li:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.faq { margin: 1.4em 0; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: border-color .25s; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 1.06rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after { content: '+'; font-size: 1.6rem; color: var(--gold); transition: transform .28s cubic-bezier(.22,1,.36,1); line-height: 1; flex: none; }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details[open] { border-color: rgba(242,180,65,.55); }
.faq .faq-body { padding: 0 22px 18px; color: var(--ink); animation: faqOpen .32s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq .faq-body p { margin-bottom: .6em; color: var(--ink); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(140deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%); border: 1px solid rgba(242,180,65,.55); color: #fff; border-radius: var(--radius); padding: 46px 44px; margin: 2.6em 0 0; text-align: center; }
.cta-band::before { content: ''; position: absolute; inset: -2px; background: conic-gradient(from 0deg, rgba(242,180,65,0) 0%, rgba(242,180,65,.55) 18%, rgba(242,180,65,0) 36%, rgba(242,180,65,0) 100%); animation: sweep 7s linear infinite; z-index: 0; opacity: .5; }
@keyframes sweep { to { transform: rotate(360deg); } }
.cta-band::after { content: ''; position: absolute; inset: 1px; background: linear-gradient(140deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%); border-radius: calc(var(--radius) - 1px); z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 56ch; margin: 12px auto 26px; }
.cta-band .cta-terms { font-size: .8rem; color: var(--ink-dim); margin: 18px auto 0; max-width: 62ch; }

.card-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 20px; margin: 2em 0; }
.card-link { position: relative; overflow: hidden; border-radius: var(--radius); padding: 26px 24px; color: #fff !important; box-shadow: var(--shadow); transition: transform .32s cubic-bezier(.22,1,.36,1), border-color .32s, box-shadow .32s; text-decoration: none !important; background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%); border: 1px solid var(--line); }
.card-link:nth-child(2) { background: linear-gradient(180deg, #2a4a18 0%, #0f2030 100%); }
.card-link:nth-child(3) { background: linear-gradient(180deg, #74541b 0%, #2a3818 100%); }
.card-link:nth-child(4) { background: linear-gradient(180deg, #1d3d55 0%, #0f2030 100%); }
.card-link:hover { transform: translateY(-6px); text-decoration: none; border-color: var(--gold); box-shadow: var(--shadow-lg); }
.card-link h3 { margin: 0 0 8px; color: #fff; font-size: 1.3rem; }
.card-link p { margin: 0; color: rgba(255,255,255,.85); font-size: .94rem; }
.card-link .arrow { color: var(--gold); font-weight: 700; margin-top: 14px; display: inline-block; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.card-link:hover .arrow { transform: translateX(6px); }

.rg-strip { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 2em 0 0; font-size: .93rem; color: var(--ink-soft); box-shadow: var(--shadow); }
.rg-strip a { color: var(--gold); }
.badge18 { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--navy); font-weight: 700; border-radius: 50%; width: 46px; height: 46px; display: grid; place-items: center; flex: none; font-size: .9rem; }

.note-small { font-size: .88rem; color: var(--ink-dim); margin-top: 1.6em; }

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: var(--ink-soft); padding: 52px 0 28px; margin-top: 50px; font-size: .93rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer img.flogo { height: 38px; width: auto; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--ink-soft); transition: color .22s, padding-left .22s; }
.site-footer a:hover { color: var(--gold); text-decoration: none; }
.site-footer ul a:hover { padding-left: 4px; }
.site-footer p a { color: var(--gold); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-disclaimer .badges { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.footer-disclaimer .badges span { border: 1px solid rgba(255,255,255,.22); border-radius: 8px; padding: 5px 12px; font-weight: 700; color: rgba(255,255,255,.8); font-size: .76rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; } .site-footer img.flogo { margin-inline: auto; } }

/* ---------------------------------------------------------------
   SCROLL REVEAL + MOTION
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: reveal .55s cubic-bezier(.22,1,.36,1) forwards; }
  .hero .eyebrow.reveal { animation-delay: .02s; }
  .hero h1.reveal { animation-delay: .08s; }
  .hero .lead.reveal { animation-delay: .16s; }
  .hero .hero-cta.reveal { animation-delay: .24s; }
  .hero .offer-strip.reveal { animation-delay: .3s; }
  .hero .hero-note.reveal { animation-delay: .36s; }
  @keyframes reveal { to { opacity: 1; transform: none; } }

  .inview { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
  .inview.is-visible { opacity: 1; transform: none; }
  .inview.d1 { transition-delay: .07s; }
  .inview.d2 { transition-delay: .14s; }
  .inview.d3 { transition-delay: .21s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .inview { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 576px) {
  h1 { font-size: 31px; }
  h2 { font-size: 25px; }
  h3 { font-size: 21px; }
  .cta-band { padding: 32px 22px; }
  .hero-cta .btn { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .steps > li { padding: 18px 18px 18px 68px; }
  .steps > li::before { left: 16px; top: 18px; }
}
