/* ========================================================
   APEXCORE GLOBAL SERVICES LIMITED — style.css
   One unified stylesheet. No inline styles. No per-page CSS.
   ======================================================== */

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

/* ── Design Tokens ── */
:root {
  /* Brand colours */
  --primary: #1B4FA0;
  --primary-dark: #133a78;
  --primary-light: #2563C4;
  --accent: #2D7A3A;
  --accent-dark: #1f5828;
  --accent-light: #3aaa4e;
  --navy: #0D2C5E;
  --navy-deep: #071a3b;
  --surface: #E8F0FB;
  --red: #C0392B;
  --white: #FFFFFF;
  --off-white: #F7F9FC;

  /* Text */
  --text-1: #0D2C5E;
  --text-2: #2a3a5c;
  --text-3: #6b7a99;
  --text-inv: #FFFFFF;

  /* Backgrounds */
  --bg-dark: #0D2C5E;
  --bg-card: #FFFFFF;
  --bg-2: #F7F9FC;
  --bdr: rgba(27, 79, 160, 0.12);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Lora', serif;

  /* Layout */
  --max-w: 1240px;
  --gutter: 1.5rem;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition: 0.35s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(13, 44, 94, 0.1);
  --shadow-md: 0 8px 32px rgba(13, 44, 94, 0.18);
  --shadow-lg: 0 24px 64px rgba(13, 44, 94, 0.25);
  --shadow-glow: 0 0 60px rgba(27, 79, 160, 0.45);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-bg-dark: rgba(7, 26, 59, 0.55);
  --glass-border: rgba(255, 255, 255, 0.11);
  --glass-blur: blur(24px);
  --glow-primary: 0 0 70px rgba(27, 79, 160, 0.55);
  --glow-accent: 0 0 50px rgba(45, 122, 58, 0.45);
  --glow-subtle: 0 0 40px rgba(27, 79, 160, 0.2);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-1);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography Scale ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-1);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

h5 {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

p {
  color: var(--text-2);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(45, 122, 58, 0.12);
  border: 1px solid rgba(45, 122, 58, 0.3);
}

/* ── Layout Utilities ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--text-inv);
}

.section--dark .eyebrow {
  color: var(--accent-light);
}

.section--surface {
  background: var(--surface);
}

.section--off {
  background: var(--off-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-inv) !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.875rem 1.9rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(45, 122, 58, 0.4), 0 0 0 1px rgba(45, 122, 58, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(45, 122, 58, 0.6), 0 0 0 1px rgba(45, 122, 58, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-navy:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.btn-loading {
  opacity: 0.65;
  pointer-events: none;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bdr);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(27, 79, 160, 0.22);
}

/* Glass card — for use inside dark sections */
.card--dark,
.card--glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--text-inv);
}

.card--dark:hover,
.card--glass:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), var(--glow-subtle), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card--dark h3,
.card--dark h4,
.card--dark p,
.card--glass h3,
.card--glass h4,
.card--glass p {
  color: var(--text-inv);
}

/* ── Badge / Tag ── */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-green {
  background: rgba(45, 122, 58, 0.12);
  color: var(--accent);
}

.badge-blue {
  background: rgba(27, 79, 160, 0.12);
  color: var(--primary);
}

.badge-navy {
  background: var(--navy);
  color: var(--white);
}

.badge-red {
  background: rgba(192, 57, 43, 0.12);
  color: var(--red);
}

/* ── Section Header ── */
.section-header {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header.left {
  margin: 0 0 3rem;
  text-align: left;
}

.section-header p {
  font-size: 1.05rem;
  margin-top: 1rem;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(5, 18, 45, 0.7);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 0.75rem 0;
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav__links a:hover {
  color: var(--white);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--navy-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__mobile.open {
  display: flex;
  animation: waFadeIn 0.3s var(--ease);
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.nav__mobile a:hover {
  color: var(--accent-light);
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #030d1f 0%, #071a3b 45%, #0a2254 70%, #0e336e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Grid line overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow orbs */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 70% 50%, rgba(27, 79, 160, 0.38) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(45, 122, 58, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  color: var(--accent-light);
  background: rgba(45, 122, 58, 0.15);
  border-color: rgba(109, 232, 128, 0.35);
}

.hero__headline {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__headline span {
  background: linear-gradient(135deg, var(--accent-light) 0%, #a8f5b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.hero__stat {
  position: relative;
}

.hero__stat+.hero__stat::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* 3D Tilt Card */
.tilt-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: transform 0.1s;
  will-change: transform;
}

.tilt-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 122, 58, 0.2);
  color: #6de880;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(45, 122, 58, 0.4);
  margin-bottom: 1.5rem;
}

.tilt-card__live-dot {
  width: 7px;
  height: 7px;
  background: #6de880;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.tilt-card__stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tilt-card__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.tilt-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.25rem 0;
}

.tilt-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
}

.tilt-card__row strong {
  color: var(--accent-light);
  font-family: var(--font-display);
}

/* ── Floating grid dots ── */
.hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ═══════════════════════════════════════════
   MARQUEE TICKER
═══════════════════════════════════════════ */
.marquee-section {
  background: var(--accent);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 2.5rem;
}

.marquee-item::before {
  content: '✦';
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem {
  background: var(--bg-dark);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem__pain {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.problem__pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.problem__pain-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.problem__pain-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.problem__pain-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.15rem;
}

.problem__quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════
   SOLUTION / HOW IT WORKS
═══════════════════════════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-2);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.step__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.step__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   ADVANTAGES GRID
═══════════════════════════════════════════ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.advantage-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.advantage-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.advantage-card:hover::after {
  transform: scaleX(1);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.advantage-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════
   FOUNDER / PAUL MARTINS
═══════════════════════════════════════════ */
.founder {
  background: var(--bg-dark);
}

.founder__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}

.founder__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.founder__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.founder__img-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 26, 59, 0.95) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
}

.founder__img-name h3 {
  color: var(--white);
  font-size: 1.4rem;
}

.founder__img-name span {
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.founder__accent-bar {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.founder__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.founder__cert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.founder__cert-icon {
  color: var(--accent-light);
}

.founder__quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 2rem 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bdr);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--surface);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  z-index: 0;
  pointer-events: none;
}

.testimonial-card__body {
  position: relative;
  z-index: 1;
}

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__city {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   PROOF / GALLERY
═══════════════════════════════════════════ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.proof-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--surface);
}

.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.proof-item:hover img {
  transform: scale(1.05);
}

.proof-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 44, 94, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.proof-item:hover .proof-item__overlay {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   WEBINAR GRID
═══════════════════════════════════════════ */
.webinar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.webinar-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}

.webinar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   PARTNER / GTCFX SECTION
═══════════════════════════════════════════ */
.partner-section {
  background: var(--off-white);
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bdr);
  max-width: 320px;
  box-shadow: var(--shadow-sm);
}

.partner-logo-wrap img {
  max-height: 70px;
}

.award-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
}

.award-badge span {
  color: #F59E0B;
}

/* ═══════════════════════════════════════════
   IB / CTA BANNER SECTIONS
═══════════════════════════════════════════ */
.ib-teaser {
  background: var(--surface);
}

.ib-teaser__inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.ib-teaser__inner h3 {
  color: var(--white);
}

.ib-teaser__inner p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0e2d66 50%, var(--primary-dark) 100%);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 79, 160, 0.5) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 1rem auto 2.5rem;
  position: relative;
}

.cta-banner__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Mission Pull Quote */
.pull-quote {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.pull-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

.pull-quote__attr {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.82rem;
}

.footer__disclaimer {
  font-size: 0.75rem;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.55;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING WIDGET
═══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  position: relative;
  animation: waPulse 3s infinite;
  transition: transform 0.2s;
}

.wa-btn:hover {
  transform: scale(1.08);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-deep);
}

.wa-btn:hover .wa-tooltip {
  opacity: 1;
}

.wa-chat-panel {
  width: 320px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: none;
}

.wa-chat-panel.open {
  display: block;
  animation: waFadeIn 0.3s var(--ease);
}

.wa-panel-header {
  background: #075E54;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.wa-panel-avatar {
  width: 42px;
  height: 42px;
  background: #128C7E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.wa-panel-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.wa-panel-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.wa-panel-close {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  transition: color 0.2s;
}

.wa-panel-close:hover {
  color: var(--white);
}

.wa-panel-body {
  background: #ECE5DD;
  padding: 1rem;
  min-height: 120px;
}

.wa-bubble {
  background: var(--white);
  border-radius: 0 10px 10px 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-1);
  max-width: 90%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border: 8px solid transparent;
  border-right-color: var(--white);
  border-top-color: var(--white);
}

.wa-timestamp {
  font-size: 0.7rem;
  color: #888;
  text-align: right;
  margin-top: 0.4rem;
}

.wa-panel-footer {
  background: #F0F0F0;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.wa-textarea {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  background: var(--white);
  border-radius: 20px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  max-height: 120px;
  overflow-y: auto;
  line-height: 1.5;
}

.wa-send {
  width: 38px;
  height: 38px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.wa-send:hover {
  background: #1ebe57;
}

.wa-send svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.wa-privacy {
  text-align: center;
  font-size: 0.7rem;
  color: #aaa;
  padding: 0.4rem;
  background: #F0F0F0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-form {
  max-width: 680px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-1);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 79, 160, 0.12);
}

.form-control::placeholder {
  color: var(--text-3);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  cursor: pointer;
}

.form-honeypot {
  display: none;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-3);
}

.form-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#contact-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}

#contact-msg.success {
  background: rgba(45, 122, 58, 0.12);
  color: var(--accent);
  border: 1px solid rgba(45, 122, 58, 0.2);
  display: block;
}

#contact-msg.error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
  border: 1px solid rgba(192, 57, 43, 0.2);
  display: block;
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Accordion */
.faq {
  max-width: 760px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--bdr);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-3);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface);
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  border: 1px solid var(--bdr);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.blog-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes waFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.animate-fade-up {
  animation: fadeInUp 0.7s var(--ease) both;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.35s;
}

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .tilt-card {
    display: none;
  }

  .founder__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder__img-wrap {
    max-width: 360px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .advantage-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .problem__grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .webinar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ib-teaser__inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .section {
    padding: 3rem 0;
  }

  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .webinar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__ctas {
    flex-direction: column;
  }

  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .wa-chat-panel {
    width: calc(100vw - 2.5rem);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}