/* ============================================================
   BRAVE TECHNOLOGIES — Design System
   Brand: Navy #1C2B4A | Amber #E8900A | White #FFFFFF
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --navy:         #1C2B4A;
  --navy-mid:     #243356;
  --navy-light:   #2E4272;
  --navy-deep:    #0F1A2E;
  --amber:        #E8900A;
  --amber-light:  #F5A623;
  --amber-dark:   #C47608;
  --white:        #FFFFFF;
  --off-white:    #F4F7FC;
  --silver:       #C8D4E4;
  --silver-light: #EDF1F7;
  --text:         #1A2035;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --border:       #E2E8F0;
  --font-head:    'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1200px;
  --wide-w:       1400px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.15);
  --shadow-navy:  0 8px 40px rgba(28,43,74,0.30);
  --transition:   0.3s ease;
}

/* --- 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);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
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: inherit; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); line-height: 1.8; }

.text-white, .text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white p { color: var(--white); }
.text-white p, .text-white li { color: rgba(255,255,255,0.78); }

/* --- Layout ----------------------------------------------- */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--wide-w); margin: 0 auto; padding: 0 24px; }

.section       { padding: 96px 0; }
.section-sm    { padding: 64px 0; }
.section-lg    { padding: 128px 0; }
.section-dark  { background: var(--navy); }
.section-deep  { background: var(--navy-deep); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }

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

/* --- Section Header --------------------------------------- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; color: var(--text-mid); }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,144,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* --- Badges ----------------------------------------------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-amber { background: rgba(232,144,10,0.12); color: var(--amber); }
.badge-navy  { background: rgba(28,43,74,0.08); color: var(--navy); }
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  max-width: var(--wide-w);
  margin: 0 auto;
}

.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo svg { height: 44px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-menu > li.current-menu-item > a { color: var(--amber); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.nav-menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--text-mid);
  font-size: 0.88rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-menu .sub-menu li a:hover {
  background: var(--off-white);
  color: var(--navy);
}

.nav-cta { margin-left: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--navy-deep);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav ul li a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-nav .mobile-cta { margin-top: 16px; }
.mobile-nav .mobile-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(46,66,114,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232,144,10,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, #152040 50%, #1a2a48 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { animation: fadeInUp 0.8s ease both; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(232,144,10,0.12);
  border: 1px solid rgba(232,144,10,0.25);
  border-radius: 100px;
  color: var(--amber-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.hero-text h1 span { color: var(--amber); }

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-visual {
  animation: fadeInRight 0.8s 0.2s ease both;
  position: relative;
}
.hero-screen {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: var(--shadow-navy), 0 0 80px rgba(232,144,10,0.08);
}
.hero-screen-bar {
  background: rgba(0,0,0,0.25);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-screen-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-screen-dot:nth-child(1) { background: #FF5F57; }
.hero-screen-dot:nth-child(2) { background: #FFBD2E; }
.hero-screen-dot:nth-child(3) { background: #28C840; }
.hero-screen-bar span {
  margin-left: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-head);
}
.hero-screen-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  min-height: 280px;
}
.screen-sidebar {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.screen-nav-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.screen-nav-item.active {
  background: var(--amber);
  color: var(--white);
}
.screen-nav-item::before {
  content: '';
  width: 4px; height: 4px;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}
.screen-main { display: flex; flex-direction: column; gap: 12px; }
.screen-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 14px;
  flex: 1;
}
.screen-metric-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; font-family: var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; }
.screen-metric-val { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.screen-metric-val.amber { color: var(--amber); }
.screen-metrics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.screen-bar-chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 14px; }
.screen-bars { display: flex; gap: 8px; align-items: flex-end; height: 60px; margin-top: 8px; }
.screen-bar {
  flex: 1;
  background: linear-gradient(to top, var(--amber), var(--amber-light));
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--amber); padding: 0; }
.stats-strip-inner {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  divide: true;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28,43,74,0.15);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  opacity: 0;
  transition: var(--transition);
}
.card:hover::before { opacity: 1; }

.card-dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.08);
}
.card-dark h3 { color: var(--white); }
.card-dark p  { color: rgba(255,255,255,0.65); }
.card-dark:hover { border-color: rgba(232,144,10,0.3); }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(232,144,10,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--amber);
}
.card-dark .card-icon { background: rgba(232,144,10,0.15); }
.card-icon svg { width: 28px; height: 28px; }

.card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.card p  { font-size: 0.92rem; margin-bottom: 20px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber);
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ============================================================
   FEATURE SPLIT (text + visual side by side)
   ============================================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-text .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.feature-text h2 { margin-bottom: 20px; }
.feature-text p  { margin-bottom: 28px; }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-check {
  width: 22px; height: 22px;
  background: rgba(232,144,10,0.1);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-top: 2px;
}
.feature-check svg { width: 12px; height: 12px; }
.feature-item p { margin: 0; font-size: 0.92rem; }

.feature-visual-wrap {
  position: relative;
}
.feature-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232,144,10,0.08), transparent 70%);
  z-index: 0;
  border-radius: var(--radius-xl);
}
.feature-visual-wrap img,
.feature-visual-wrap .feature-mockup {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-navy);
}
.feature-mockup {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  min-height: 320px;
}

/* ============================================================
   TECH LOGOS / PARTNERS
   ============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.tech-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 24px rgba(232,144,10,0.12);
  transform: translateY(-4px);
}
.tech-card-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.tech-card-logo svg,
.tech-card-logo img { max-height: 40px; max-width: 120px; }
.tech-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.tech-desc { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(232,144,10,0.2));
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  border: 3px solid var(--amber);
  position: relative;
}
.section-dark .step-num { background: var(--navy-deep); }
.section-light .step-num { background: var(--white); border-color: var(--amber); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.industry-item {
  position: relative;
  background: var(--navy-mid);
  padding: 40px 32px;
  overflow: hidden;
  transition: var(--transition);
}
.industry-item:hover { background: var(--navy-light); }
.industry-item:hover .industry-icon { color: var(--amber); }
.industry-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  transition: var(--transition);
}
.industry-item h4 { color: var(--white); margin-bottom: 8px; }
.industry-item p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 32px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,144,10,0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 40px; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
}
.footer-main {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 72px 40px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-logo { margin-bottom: 20px; }
.footer-brand .footer-logo img { height: 40px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-btn:hover { background: var(--amber); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--amber); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  align-items: flex-start;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px;
  max-width: var(--wide-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--amber); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--amber); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,43,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.form-notice.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-notice.error   { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--off-white); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 28px 24px; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-date { font-size: 0.78rem; color: var(--text-light); }
.post-cat { font-size: 0.75rem; font-weight: 600; color: var(--amber); }
.post-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.post-card-body p  { font-size: 0.88rem; margin-bottom: 20px; }
.read-more { font-size: 0.88rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.read-more:hover { color: var(--amber); gap: 10px; }

/* ============================================================
   404
   ============================================================ */
.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--off-white);
}
.not-found-code {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -40px;
}
.not-found-msg h1 { margin-bottom: 16px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-content         { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
  .hero-visual          { max-width: 640px; margin: 0 auto; }
  .footer-main          { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-split        { grid-template-columns: 1fr; gap: 48px; }
  .feature-split.reverse { direction: ltr; }
  .grid-4               { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner  { padding: 0 24px; }
  .section    { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2     { grid-template-columns: 1fr; }
  .grid-3     { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .industry-grid { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .stats-strip-inner { flex-wrap: wrap; }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); flex: 1 0 50%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .process-steps::before { display: none; }
  .hero-screen-body { grid-template-columns: 1fr; }
  .screen-sidebar { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .section-header { margin-bottom: 40px; }
}
