/* ============================================
   SALESTAR — Gong.io Design Language
   ============================================ */

:root {
  --color-primary: #302E33;
  --color-primary-light: #E94629;
  --color-accent: #E94629;
  --color-teal: #E94629;
  --color-blue: #0170B9;
  --color-text: #302E33;
  --color-text-muted: #6E7682;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F7F8;
  --color-bg-emphasis: #FEF0ED;
  --color-border: #E4E6EC;
  --color-footer: #302E33;
  --color-pink-hot: #E94629;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1200px;
  --section-pad: clamp(60px, 8vw, 100px);
  --radius: 15px;
  --radius-pill: 9999px;

  --shadow-card: 0 1px 2px rgba(29,2,84,0.04), 0 4px 12px rgba(29,2,84,0.06), 0 12px 32px rgba(29,2,84,0.04);
  --shadow-hover: 0 2px 4px rgba(29,2,84,0.06), 0 8px 24px rgba(29,2,84,0.1), 0 20px 48px rgba(29,2,84,0.06);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: #C7351E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 70, 41, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary-light);
  border: 1.5px solid var(--color-primary-light);
}
.btn-secondary:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--color-text);
}
.btn-white:hover {
  background: var(--color-teal);
  transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img.logo-image {
  height: 32px;
  width: auto;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: #E94629;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
  position: relative;
}
.nav-desktop a:hover { color: var(--color-accent); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-desktop a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  background: #fff;
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(29,2,84,0.12);
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .btn { margin-top: 16px; text-align: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(80px, 12vw, 140px) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,70,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(48,46,51,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--color-bg-emphasis);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.hero-label-dot {
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-label-dot svg { width: 12px; height: 12px; }
.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 20px;
  color: var(--color-text);
}
.hero h1 .accent {
  color: var(--color-primary);
  position: relative;
}
.hero p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
}
.hero-dashboard {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.hero-dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}
.hero-dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-dashboard-body {
  padding: 24px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.hero-metric {
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: 10px;
}
.hero-metric-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.hero-metric-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}
.hero-chart {
  height: 120px;
  background: linear-gradient(180deg, rgba(233,70,41,0.04) 0%, transparent 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.hero-chart-line {
  position: absolute;
  bottom: 20px;
  left: 10%;
  right: 10%;
  height: 60px;
}
.hero-chat-bubble {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #302E33;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px 12px 4px 12px;
  font-size: 13px;
  max-width: 220px;
  box-shadow: 0 8px 24px rgba(48,46,51,0.3);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   LOGO BAR
   ============================================ */
.logo-bar {
  padding: 48px 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.logo-bar-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.logo-ticker img {
  height: 28px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all var(--transition);
}
.logo-ticker img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ============================================
   TABS SECTION (Productivity/Predictability/Growth)
   ============================================ */
.tabs-section {
  padding: var(--section-pad) 0;
}
.tabs-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.tabs-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.tabs-section .section-sub {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.tab-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.tab-pill {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-pill:hover { border-color: var(--color-primary-light); color: var(--color-primary-light); }
.tab-pill.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tab-content-text h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}
.tab-content-text h3 .highlight {
  color: var(--color-primary-light);
}
.tab-content-text p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}
.tab-content-quote {
  padding: 20px 24px;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
}
.tab-content-quote p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 8px;
}
.tab-content-quote cite {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: normal;
}
.tab-content-visual {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-content-visual img {
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

/* ============================================
   PURPLE TAGLINE SECTION
   ============================================ */
.purple-tagline {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #FEF0ED 0%, #FDF5F3 50%, #FAF0EE 100%);
  text-align: center;
}
.purple-tagline h2 {
  font-size: clamp(28px, 4vw, 48px);
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--color-text);
  line-height: 1.25;
}
.purple-tagline-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   PRODUCT CARDS (Gong Engage/Forecast/Enable style)
   ============================================ */
.products-section {
  padding: var(--section-pad) 0;
}
.products-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.products-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}
.products-section .section-sub {
  font-size: 17px;
  color: var(--color-text-muted);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
}
.product-card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-emphasis);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-card-icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-primary-light);
}
.product-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   STATS BAR (50% / 4.8/5 / 3X / 300+ style)
   ============================================ */
.stats-bar {
  padding: 64px 0;
  background: linear-gradient(135deg, #302E33 0%, #4A474F 100%);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-bg);
  transform: skewY(-3deg);
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-bg);
  transform: skewY(-3deg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: #E94629;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   INDUSTRY CARDS (skewed strips + hover colors)
   ============================================ */
.industries-section {
  padding: var(--section-pad) 0;
}
.industries-section .section-header {
  margin-bottom: 48px;
}
.industries-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}
.industries-section .section-sub {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 560px;
}
.industries-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.industries-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.industry-card {
  position: relative;
  background: var(--color-bg-emphasis);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.industry-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  transform: skewY(-3deg);
  transition: background-color 0.2s ease-out;
}
.industry-card[data-color="teal"]::before { background: transparent; }
.industry-card[data-color="teal"]:hover::before { background: #E94629; }
.industry-card[data-color="teal"]:hover { background: #E94629; color: #fff; }

.industry-card[data-color="pink"]::before { background: transparent; }
.industry-card[data-color="pink"]:hover::before { background: #302E33; }
.industry-card[data-color="pink"]:hover { background: #302E33; color: #fff; }

.industry-card[data-color="blue"]::before { background: transparent; }
.industry-card[data-color="blue"]:hover::before { background: #E94629; }
.industry-card[data-color="blue"]:hover { background: #E94629; color: #fff; }

.industry-card[data-color="purple"]::before { background: transparent; }
.industry-card[data-color="purple"]:hover::before { background: #302E33; }
.industry-card[data-color="purple"]:hover { background: #302E33; color: #fff; }

.industry-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.industry-card-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}
.industry-card:hover .industry-card-icon { color: currentColor; }
.industry-card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.industry-card-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease-out;
}
.industry-card:hover .industry-card-arrow svg {
  transform: translateX(3px);
}
.industry-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.industry-card:hover p { color: inherit; opacity: 0.85; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}
.testimonials-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text);
}
.testimonials-section .section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--color-border);
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color-text);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-emphasis);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ============================================
   ROLES / EVERYONE WINS
   ============================================ */
.roles-section {
  padding: var(--section-pad) 0;
}
.roles-section .section-header {
  margin-bottom: 48px;
}
.roles-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}
.roles-section .section-sub {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 640px;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.role-card {
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.role-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-card);
}
.role-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--color-primary);
}
.role-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.role-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.role-card .learn-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.role-card:hover .learn-more { gap: 10px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #302E33 0%, #3E3C42 50%, #4A474F 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section .rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.cta-section .rating .stars {
  color: var(--color-teal);
}
.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  max-width: 600px;
  margin: 0 auto 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 17px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-footer);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand .logo .logo-mark { background: #E94629; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: #fff; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industries-layout { grid-template-columns: 1fr; }
  .tab-content { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-desktop { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .tab-pills { flex-wrap: wrap; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industries-cards { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-section h2 { font-size: clamp(28px, 6vw, 40px); }
}
