/* ============================================================
   ProwessBridge Tech & ProCXel — Ultra-Clear Luxury Tech Design System
   Version: 18.0 Visual Enhancement Masterpiece
   Theme: Obsidian & Sapphire Dark + Crystal Clean Executive Contrast
   Palette:
     - Obsidian Dark: #030812 (Deep Background)
     - Sapphire Slate: #071322 (Section Alt)
     - Glass Card: rgba(13, 29, 49, 0.75) / Solid: #0b1e33
     - Glow Borders: rgba(44, 170, 176, 0.28)
     - Brand Teal: #2caab0 (Glow: rgba(44, 170, 176, 0.35))
     - Brand Green: #7bc62d (Glow: rgba(123, 198, 45, 0.35))
     - Brand Orange: #f77f00 (Glow: rgba(247, 127, 0, 0.35))
     - Brand Pink: #e63973 (Glow: rgba(230, 57, 115, 0.35))
   ============================================================ */

:root {
  /* Dark Canvas */
  --bg-main: #040a14;
  --bg-darker: #02060c;
  --bg-surface: #071526;
  --bg-surface-2: #0b1e36;
  --bg-card: rgba(11, 28, 48, 0.7);
  --bg-card-solid: #0d223a;
  --bg-card-hover: #122c4b;
  
  /* Borders & Glass */
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-card: #163252;
  --border-glow: rgba(44, 170, 176, 0.35);
  
  /* Typography Colors */
  --text-white: #ffffff;
  --text-primary: #e6f0fa;
  --text-secondary: #94a9c2;
  --text-dim: #627791;
  
  /* Light Theme Canvas */
  --bg-light: #f4f8fc;
  --bg-light-surface: #ffffff;
  --text-dark-title: #0a1b2d;
  --text-dark-body: #475a70;
  --border-light: #d6e2ee;
  
  /* Brand Accents */
  --teal: #2caab0;
  --teal-light: #48cfd5;
  --green: #7bc62d;
  --orange: #f77f00;
  --pink: #e63973;
  --pink-light: #ff5c93;
  --navy-accent: #0f2b48;
  
  /* Gradients */
  --gradient-brand: linear-gradient(90deg, #2caab0 0%, #7bc62d 30%, #f77f00 65%, #e63973 100%);
  --gradient-brand-subtle: linear-gradient(90deg, rgba(44,170,176,0.15), rgba(230,57,115,0.15));
  --gradient-btn: linear-gradient(110deg, #0d2642 0%, #153f68 50%, #2caab0 100%);
  --gradient-btn-pink: linear-gradient(110deg, #2caab0 0%, #c42760 50%, #e63973 100%);
  --gradient-card: linear-gradient(145deg, rgba(14, 34, 58, 0.8) 0%, rgba(7, 18, 32, 0.8) 100%);
  --gradient-glow-sphere: radial-gradient(circle, rgba(44, 170, 176, 0.22) 0%, rgba(230, 57, 115, 0.1) 45%, transparent 70%);

  /* Typography */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow-teal: 0 0 35px rgba(44, 170, 176, 0.2);
  --shadow-glow-pink: 0 0 35px rgba(230, 57, 115, 0.2);
}

/* RESET & CORE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* TOP TICKER BAR */
.top-bar {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.82rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1001;
}

.top-bar-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}

.top-bar .badges {
  display: flex;
  gap: 22px;
  align-items: center;
}

.top-bar .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-bar .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

/* HEADER & NAVBAR (LUXURY GLASS) */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100px;
  padding: 4px 0;
}

.logo-wrapper img {
  height: 88px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
  transition: transform 0.3s ease;
}

.logo-wrapper:hover img {
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #122438;
  position: relative;
  padding: 8px 0;
  letter-spacing: -0.01em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-brand);
  transition: width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.btn-nav {
  background: var(--gradient-btn-pink) !important;
  color: #ffffff !important;
  padding: 12px 24px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 0.94rem !important;
  box-shadow: 0 8px 22px rgba(230, 57, 115, 0.32);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 57, 115, 0.45);
}

.btn-nav::after {
  display: none !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #122438;
  cursor: pointer;
  padding: 8px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(44, 170, 176, 0.4);
  border-color: var(--teal);
}

.btn-pink {
  background: var(--gradient-btn-pink);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(230, 57, 115, 0.35);
}

.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(230, 57, 115, 0.5);
}

.btn-white {
  background: #ffffff;
  color: #0b1f36;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  font-weight: 800;
}

.btn-white:hover {
  background: #f0f6fc;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* HERO SYSTEM */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 90px;
  background: 
    radial-gradient(circle at 85% 20%, rgba(44, 170, 176, 0.22) 0%, transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(230, 57, 115, 0.14) 0%, transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(123, 198, 45, 0.09) 0%, transparent 28%),
    linear-gradient(135deg, #02060c 0%, #05101e 50%, #081a2e 100%);
  border-bottom: 1px solid var(--border-card);
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -130px;
  top: 10px;
  border-radius: 50%;
  border: 1px solid rgba(44, 170, 176, 0.22);
  box-shadow: 0 0 0 38px rgba(44, 170, 176, 0.03), 0 0 0 90px rgba(230, 57, 115, 0.02);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(120, 170, 210, 0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(120, 170, 210, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--teal);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.kicker-bar {
  width: 28px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin-bottom: 24px;
  max-width: 950px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.82;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* HOME HERO SPECIFIC */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 170, 176, 0.2) 0%, rgba(230, 57, 115, 0.09) 50%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 40px rgba(44, 170, 176, 0.15);
}

.hero-logo-box {
  position: relative;
  width: 305px;
  height: 305px;
  border-radius: 50%;
  background: #ffffff;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(44, 170, 176, 0.3);
  border: 4px solid rgba(44, 170, 176, 0.4);
  transition: transform 0.4s ease;
}

.hero-logo-box:hover {
  transform: scale(1.04);
}

.hero-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-pill {
  position: absolute;
  padding: 12px 22px;
  background: rgba(11, 28, 48, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
  animation: floatAnim 4.8s ease-in-out infinite alternate;
  z-index: 3;
}

.pill-1 { top: 6%; left: 1%; color: var(--teal); animation-delay: 0s; }
.pill-2 { top: 10%; right: 0%; color: var(--pink); animation-delay: 1.2s; }
.pill-3 { bottom: 10%; left: 3%; color: var(--orange); animation-delay: 2.4s; }
.pill-4 { bottom: 6%; right: 2%; color: var(--green); animation-delay: 1.8s; }

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-16px); }
}

/* STATS STRIP */
.stats-strip {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 38px 30px;
  border-right: 1px solid var(--border-card);
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  display: block;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* SECTIONS (LIGHT & DARK) */
.section {
  padding: 105px 0;
  position: relative;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark-title);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  margin-bottom: 55px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 14px 0 18px;
  color: var(--text-white);
}

.section-light .section-header h2 {
  color: var(--text-dark-title);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.78;
}

.section-light .section-header p {
  color: var(--text-dark-body);
}

/* CARD GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARDS (HIGH DEPTH & GLOW) */
.card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 38px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(7, 24, 42, 0.12);
  border-color: #b5cbe0;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-brand);
}

.card.card-dark {
  background: var(--gradient-card);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.card.card-dark:hover {
  border-color: var(--teal);
  box-shadow: 0 22px 55px rgba(44, 170, 176, 0.25);
}

/* ICON BADGE CONTAINER */
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(44, 170, 176, 0.12);
  border: 1px solid rgba(44, 170, 176, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 1.5rem;
}

.icon-badge.pink {
  background: rgba(230, 57, 115, 0.12);
  border-color: rgba(230, 57, 115, 0.3);
  color: var(--pink);
}

.icon-badge.orange {
  background: rgba(247, 127, 0, 0.12);
  border-color: rgba(247, 127, 0, 0.3);
  color: var(--orange);
}

.icon-badge.green {
  background: rgba(123, 198, 45, 0.12);
  border-color: rgba(123, 198, 45, 0.3);
  color: var(--green);
}

.card-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-dark-title);
}

.card.card-dark h3 {
  color: var(--text-white);
}

.card p {
  font-size: 0.98rem;
  color: var(--text-dark-body);
  line-height: 1.74;
}

.card.card-dark p {
  color: var(--text-secondary);
}

.card ul {
  margin-top: 20px;
}

.card ul li {
  font-size: 0.95rem;
  color: var(--text-dark-body);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card.card-dark ul li {
  color: var(--text-secondary);
}

.card ul li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 1.05rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink);
  margin-top: 24px;
}

.card-link:hover {
  color: var(--teal);
  transform: translateX(6px);
}

/* PROCXEL BRAND STYLING */
.procxel-brand-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.procxel-brand-title span {
  color: var(--teal);
}

.procxel-brand-title strong {
  background: linear-gradient(90deg, var(--green), var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.procxel-brand-title small {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 14px;
}

.procxel-banner {
  background: linear-gradient(135deg, #091f38 0%, #0e2f52 100%);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  padding: 50px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.procxel-banner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 170, 176, 0.25), transparent 70%);
}

.tags-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tag-badge {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.tag-badge:hover {
  background: rgba(44, 170, 176, 0.18);
  border-color: var(--teal);
}

/* INTERACTIVE AI SCREENER SIMULATOR (ENHANCED) */
.screener-demo-card {
  background: #020812;
  border: 1px solid var(--border-card);
  border-radius: 22px;
  padding: 36px;
  margin-top: 32px;
  box-shadow: inset 0 2px 20px rgba(0,0,0,0.6);
}

.screener-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-card);
  padding-bottom: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.screener-metric {
  display: flex;
  gap: 22px;
  align-items: center;
}

.score-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0% 96%, #162f4d 96% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(44, 170, 176, 0.35);
  transition: all 0.4s ease;
}

.score-circle-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #020812;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--teal);
}

.skill-bars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.skill-bar-item {
  background: rgba(255, 255, 255, 0.035);
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-track {
  height: 7px;
  background: #11263d;
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 5px;
  background: var(--gradient-brand);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* INTERACTIVE TABS */
.tabs-nav {
  display: flex;
  gap: 14px;
  border-bottom: 2px solid var(--border-card);
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 14px 28px;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.tab-btn:hover {
  color: #ffffff;
}

.tab-btn.active {
  color: var(--teal);
  background: rgba(44, 170, 176, 0.1);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--teal);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CONTACT & FORMS */
.form-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(44, 170, 176, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a9c2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.form-select option {
  background-color: var(--bg-surface);
  color: #ffffff;
}

.form-status {
  padding: 16px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 0.94rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(123, 198, 45, 0.15);
  border: 1px solid var(--green);
  color: #a2f052;
}

/* FAQ ACCORDION */
.faq-item {
  border: 1px solid var(--border-card);
  border-radius: 18px;
  margin-bottom: 16px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--teal);
}

.faq-item.open {
  border-color: var(--teal);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 26px 28px;
}

/* CTA BANNER */
.cta-section {
  padding: 45px 0 100px;
}

.cta-container {
  background: linear-gradient(120deg, #020812 0%, #09223e 50%, #12476d 100%);
  border: 1px solid var(--border-card);
  border-radius: 32px;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-container::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-text p {
  color: var(--text-secondary);
  font-size: 1.12rem;
  max-width: 640px;
}

/* FOOTER */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-card);
  padding: 80px 0 35px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 78px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-brand p {
  font-size: 0.98rem;
  line-height: 1.78;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.footer-col a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-container { flex-direction: column; align-items: flex-start; padding: 50px 38px; }
  .skill-bars { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-container { min-height: 92px; }
  .logo-wrapper { height: 82px; }
  .logo-wrapper img { height: 72px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 94px;
    left: 4%;
    right: 4%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
    gap: 20px;
  }
  .main-nav.open { display: flex; }
  .hamburger { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-in { justify-content: center; }
  .top-bar .badges span:last-child { display: none; }
  .top-bar-in > div:last-child { display: none; }
  .page-hero { padding: 80px 0 65px; }
  .screener-top { flex-direction: column; align-items: flex-start; }
}
