/* ============================================================
   APP INNOVA TECHNOLOGY — Global Stylesheet
   Light, clean, editorial B2B game publisher
   Font: Syne (display) + DM Sans (body)
   Color: Deep Navy + Coral + Soft White
   ============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:      #0D1B2A;
  --navy-2:    #1B2D40;
  --coral:     #FF5C3A;
  --coral-l:   #FF7A5C;
  --coral-xl:  #FFF0EC;
  --teal:      #00B5A3;
  --teal-l:    #E0F7F5;
  --gold:      #F5A623;
  --white:     #FFFFFF;
  --off-white: #F8F9FB;
  --bg:        #F4F5F7;
  --border:    #E2E5EA;
  --border-2:  #CDD2DA;
  --text:      #0D1B2A;
  --text-2:    #3D4F61;
  --text-3:    #7B8FA1;
  --text-4:    #A8B5C2;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --s-sm:  0 1px 4px rgba(13,27,42,.06);
  --s:     0 4px 20px rgba(13,27,42,.09);
  --s-md:  0 8px 32px rgba(13,27,42,.12);
  --s-lg:  0 16px 64px rgba(13,27,42,.15);
  --s-xl:  0 32px 80px rgba(13,27,42,.18);

  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 70px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.hidden { display: none !important; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  padding: 12px 28px; border-radius: 100px;
  transition: all .22s; white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 4px 16px rgba(255,92,58,.3); }
.btn-primary:hover { background: var(--coral-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,92,58,.4); }
.btn-dark    { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--s-md); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white   { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--s); }
.btn-sm  { padding: 8px 20px; font-size: .82rem; }
.btn-lg  { padding: 15px 36px; font-size: 1rem; }
.btn-icon-right::after { content: '→'; margin-left: 4px; }

/* ── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-nav.scrolled { border-color: var(--border); box-shadow: var(--s-sm); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--navy); flex-shrink: 0; }
.nav-logo-mark { width: 34px; height: 34px; background: var(--coral); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link { padding: 8px 14px; font-size: .88rem; font-weight: 500; color: var(--text-2); border-radius: 8px; transition: all .15s; }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--off-white); }
.nav-link.active { font-weight: 600; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
/* Mobile nav */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 800; background: #fff; padding: var(--nav-h) 24px 24px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.1rem; padding: 14px 16px; border-radius: var(--r); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--off-white) 60%, #F0F2F5 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,58,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,181,163,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--coral-xl); color: var(--coral); font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; letter-spacing: .5px; text-transform: uppercase; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; color: var(--navy); margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--coral); }
.hero-body { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-stat-n { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.hero-stat-l { font-size: .8rem; color: var(--text-3); font-weight: 500; margin-top: 2px; }
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--s-xl);
  overflow: hidden; position: relative;
}
.hero-card-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.hero-card-body { padding: 20px 24px; }
.hero-card-tag { font-size: .72rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.hero-card-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.hero-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--coral); color: #fff; border-radius: var(--r-lg);
  padding: 12px 16px; box-shadow: var(--s-md); font-size: .75rem; font-weight: 600; text-align: center;
}
.hero-badge-n { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; display: block; }
.hero-floating {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border-radius: var(--r); padding: 14px 18px;
  box-shadow: var(--s-md); display: flex; align-items: center; gap: 12px;
  font-size: .82rem;
}
.hero-floating-ico { width: 36px; height: 36px; background: var(--teal-l); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-off  { background: var(--off-white); }
.section-label { display: inline-flex; align-items: center; gap: 7px; font-size: .75rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.section-label::before { content: ''; display: block; width: 18px; height: 2px; background: var(--coral); border-radius: 2px; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-subtitle { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; max-width: 560px; }
.section-subtitle.light { color: rgba(255,255,255,.72); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head.center .section-subtitle { text-align: center; }

/* ── SERVICES GRID ──────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; transition: all .22s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { box-shadow: var(--s-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { width: 54px; height: 54px; border-radius: var(--r); background: var(--coral-xl); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.sc-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sc-body { font-size: .88rem; color: var(--text-2); line-height: 1.7; }
.sc-link { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 600; color: var(--coral); margin-top: 14px; transition: gap .15s; }
.sc-link:hover { gap: 9px; }

/* ── PRODUCTS / GAMES ───────────────────────────────────────── */
.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.game-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); transition: all .25s;
}
.game-card:hover { box-shadow: var(--s-lg); transform: translateY(-6px); border-color: transparent; }
.game-card-img {
  height: 260px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.game-card-img.fish { background: linear-gradient(135deg, #0a3d62 0%, #0c6291 50%, #1e90cc 100%); }
.game-card-img.domino { background: linear-gradient(135deg, #1a0533 0%, #3d0f6e 50%, #6c2bd9 100%); }
.game-card-img-emoji { font-size: 7rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.game-card-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.2); }
.game-card-platform { position: absolute; bottom: 16px; right: 16px; display: flex; gap: 6px; }
.platform-tag { background: rgba(0,0,0,.4); backdrop-filter: blur(4px); color: #fff; font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.game-card-body { padding: 28px 32px; }
.game-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.game-category { font-size: .72rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: .5px; }
.game-release { font-size: .72rem; color: var(--text-3); }
.game-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.game-desc { font-size: .9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.game-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 22px; }
.game-tag { background: var(--off-white); color: var(--text-2); font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; border: 1px solid var(--border); }
.game-actions { display: flex; gap: 10px; }

/* ── PARTNERS ───────────────────────────────────────────────── */
.partners-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.partner-item { display: flex; align-items: center; gap: 10px; padding: 16px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); transition: all .2s; }
.partner-item:hover { box-shadow: var(--s); border-color: var(--border-2); transform: translateY(-2px); }
.partner-logo-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.partner-name { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--navy); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: all .22s; }
.testi-card:hover { box-shadow: var(--s-md); transform: translateY(-3px); }
.testi-card.featured { background: var(--navy); color: #fff; border-color: transparent; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); font-size: .9rem; }
.testi-quote { font-size: .9rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-card.featured .testi-quote { color: rgba(255,255,255,.8); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava { width: 42px; height: 42px; border-radius: 50%; background: var(--coral-xl); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; overflow: hidden; }
.testi-ava img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--navy); }
.testi-card.featured .testi-name { color: #fff; }
.testi-role { font-size: .75rem; color: var(--text-3); }
.testi-card.featured .testi-role { color: rgba(255,255,255,.55); }
.testi-company-logo { height: 20px; margin-left: auto; opacity: .5; }

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-2)); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 8rem; }
.about-stat-card { position: absolute; bottom: -20px; right: -20px; background: #fff; border-radius: var(--r); padding: 18px 22px; box-shadow: var(--s-lg); text-align: center; }
.about-stat-card .n { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--coral); }
.about-stat-card .l { font-size: .78rem; color: var(--text-3); font-weight: 500; }
.value-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--coral-xl); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.value-title { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 3px; }
.value-body  { font-size: .84rem; color: var(--text-2); line-height: 1.6; }

/* ── CAREERS ─────────────────────────────────────────────────── */
.jobs-grid { display: flex; flex-direction: column; gap: 12px; }
.job-card { display: flex; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 28px; gap: 24px; transition: all .2s; }
.job-card:hover { box-shadow: var(--s); border-color: var(--border-2); transform: translateX(4px); }
.job-dept { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--coral-xl); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.job-info { flex: 1; }
.job-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.job-meta { display: flex; gap: 14px; }
.job-tag { font-size: .75rem; color: var(--text-3); display: flex; align-items: center; gap: 4px; }
.job-type { font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.jt-full { background: var(--teal-l); color: var(--teal); }
.jt-part { background: var(--coral-xl); color: var(--coral); }
.jt-remote { background: #F3F0FF; color: #6C47FF; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ci-item { display: flex; gap: 14px; }
.ci-icon { width: 44px; height: 44px; border-radius: var(--r); background: var(--coral-xl); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-label { font-size: .75rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.ci-value { font-size: .92rem; color: var(--navy); font-weight: 500; }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 40px; }
.cf-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .78rem; font-weight: 700; color: var(--text-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: .9rem; color: var(--text); background: var(--off-white); transition: all .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--coral); background: #fff; box-shadow: 0 0 0 3px rgba(255,92,58,.1); }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-4); }
.field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); height: 300px; margin-top: 28px; }
.map-wrap iframe { width: 100%; height: 100%; display: block; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #fff; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 14px; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--coral); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .82rem; font-weight: 800; }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 20px; }
.footer-soc { display: flex; gap: 8px; }
.fsoc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .82rem; color: rgba(255,255,255,.6); transition: all .15s; }
.fsoc:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.footer-col h4 { font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 10px; transition: color .14s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .14s; }
.footer-bottom a:hover { color: #fff; }

/* ── FLOATING WHATSAPP ───────────────────────────────────────── */
.wa-float {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 800; display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.wa-btn {
  display: flex; align-items: center; gap: 0;
  background: #25D366; color: #fff;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 4px 20px rgba(37,211,102,.35);
  overflow: hidden; transition: all .25s;
  text-decoration: none; white-space: nowrap;
}
.wa-btn:hover { box-shadow: -6px 6px 28px rgba(37,211,102,.5); transform: translateX(-4px); }
.wa-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: #1ebe5e; flex-shrink: 0; }
.wa-label { max-width: 0; overflow: hidden; font-size: .82rem; font-weight: 700; transition: max-width .3s ease, padding .3s ease; padding: 0; }
.wa-btn:hover .wa-label { max-width: 180px; padding: 0 14px 0 6px; }
.wa-tooltip { background: var(--navy); color: #fff; font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 8px 0 0 8px; opacity: 0; transition: opacity .3s; pointer-events: none; white-space: nowrap; }
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: linear-gradient(160deg, #fff 0%, var(--off-white) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow { font-size: .75rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 16px; height: 2px; background: var(--coral); border-radius: 2px; }
.page-hero-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.page-hero-sub { font-size: 1.05rem; color: var(--text-2); max-width: 560px; line-height: 1.7; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner { background: var(--coral); border-radius: var(--r-xl); padding: 56px 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.1); pointer-events: none; }
.cta-title { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-sub { color: rgba(255,255,255,.82); font-size: .95rem; }

/* ── COUNTERS STRIP ──────────────────────────────────────────── */
.counters-strip { background: var(--navy); padding: 48px 0; }
.counters-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.counter-item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,.1); }
.counter-item:last-child { border-right: none; }
.counter-n { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--coral); }
.counter-l { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { opacity: 0; animation: fadeUp .6s ease forwards; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .22s; }
.fade-up-3 { animation-delay: .34s; }
.fade-up-4 { animation-delay: .46s; }
[data-anim] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* ── UTILS ──────────────────────────────────────────────────── */
.text-coral { color: var(--coral); }
.text-teal  { color: var(--teal); }
.text-muted { color: var(--text-3); }
.tag { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 100px; }
.tag-coral { background: var(--coral-xl); color: var(--coral); }
.tag-teal  { background: var(--teal-l); color: var(--teal); }
.tag-navy  { background: rgba(13,27,42,.08); color: var(--navy); }
.divider   { height: 1px; background: var(--border); margin: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .about-grid      { grid-template-columns: 1fr; }
  .games-grid      { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .counters-row    { grid-template-columns: repeat(2,1fr); }
  .cta-banner      { flex-direction: column; text-align: center; padding: 40px 32px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .section { padding: 64px 0; }
  .container-wide { padding: 0 24px; }
}
