/* =============================================
   HIRE GNX — Custom Stylesheet (No Tailwind)
   ============================================= */

/* --- CSS Variables --- */
:root {
  --primary: #0f4c9a;
  --primary-dark: #002a6b;
  --primary-light: #3b82f6;
  --accent: #3ca9e8;
  --bg-light: #f6f7f8;
  --bg-white: #ffffff;
  --text-main: #0d141b;
  --text-muted: #4c739a;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 20px rgba(15, 76, 154, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --max-w: 1280px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* --- Page Transitions --- */
@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.page-wrapper {
  animation: pageEnter 0.35s ease-out forwards;
}

.page-wrapper.page-exit {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.site-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s;
}

.btn-login:hover {
  background: #e2e8f0;
}

.btn-find-jobs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-primary);
  transition: background 0.2s;
}

.btn-find-jobs:hover {
  background: var(--primary-dark);
}

.btn-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  padding: 6px;
  font-size: 1.5rem;
  line-height: 1;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  max-width: 300px;
  background: var(--bg-white);
  padding: 24px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: #f8fafc;
}

.mobile-nav a.active {
  color: var(--primary);
  font-weight: 700;
  background: rgba(15, 76, 154, 0.05);
}

.mobile-find-jobs {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

@media (max-width: 900px) {

  .nav-desktop,
  .nav-actions {
    display: none;
  }

  .btn-hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: auto;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--primary);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-col .contact-item .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--primary);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px 0;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

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

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: #f1f5f9;
}

.btn-dark {
  background: #1e293b;
  color: #fff;
}

.btn-dark:hover {
  background: #0f172a;
}

.btn-sm {
  height: 40px;
  padding: 0 20px;
  font-size: 0.875rem;
}

.btn-lg {
  height: 54px;
  padding: 0 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(15, 76, 154, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  transition: background 0.2s, color 0.2s;
}

.card:hover .card-icon {
  background: var(--primary);
  color: #fff;
}

/* =============================================
   HERO (shared)
   ============================================= */
.hero-banner {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}

.hero-banner img.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   FORMS
   ============================================= */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(15, 76, 154, 0.12);
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap .chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
  font-size: 1.2rem;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-check-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}

.form-check-wrap:hover {
  background: #f8fafc;
}

.form-check-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

/* =============================================
   STAT BARS
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-plan {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.pricing-breakdown {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 16px;
}

.pricing-breakdown strong {
  display: block;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 2px;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: #475569;
}

.pricing-feature .chk {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.pricing-guarantee .shield {
  color: var(--primary);
  font-size: 1.1rem;
}

.pricing-guarantee.nil {
  color: var(--text-muted);
}

.pricing-guarantee.has-guarantee {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ROADMAP STEPS
   ============================================= */
.roadmap-step {
  display: flex;
  gap: 16px;
}

.roadmap-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 1;
}

.step-circle.active {
  background: linear-gradient(135deg, #0f2d6b, #1366c5, #4faaff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(19, 102, 197, 0.35);
}

.step-circle.inactive {
  background: #fff;
  border: 2px solid var(--border);
  color: #94a3b8;
}

.step-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 4px 0;
  border-radius: 2px;
  min-height: 20px;
}

.step-line.active-line {
  background: linear-gradient(to bottom, #0f2d6b, #1366c5);
}

.step-content {
  flex: 1;
  padding-bottom: 24px;
  padding-top: 4px;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
}

.step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}

.step-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.step-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 20px;
}

.step-badge.blue {
  background: #eff6ff;
  color: var(--primary-light);
}

.step-badge.grey {
  background: #f1f5f9;
  color: #64748b;
}

.step-badge.green {
  background: #f0fdf4;
  color: #16a34a;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SUCCESS STORY CARD
   ============================================= */
.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}

.story-card:hover {
  box-shadow: var(--shadow-md);
}

.story-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.story-card:hover .story-img-wrap img {
  transform: scale(1.05);
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  z-index: 1;
}

.story-img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  z-index: 2;
  color: #fff;
}

.story-placement {
  font-size: 0.72rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 3px;
}

.story-name {
  font-size: 1rem;
  font-weight: 700;
}

.story-role {
  font-size: 0.82rem;
  opacity: 0.88;
}

.story-quote {
  padding: 14px 16px;
}

.story-quote p {
  font-size: 0.82rem;
  color: #475569;
  font-style: italic;
  line-height: 1.55;
}

/* =============================================
   ARTICLE CARDS
   ============================================= */
.article-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.article-meta {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.article-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
}

.article-meta-time {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: none;
}

.article-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.2s;
}

.article-card:hover .article-title {
  color: var(--primary);
}

.article-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.article-read-more:hover {
  color: var(--primary);
}

/* =============================================
   TESTIMONIAL CARD
   ============================================= */
.testimonial-card {
  background: linear-gradient(135deg, #0f2d6b, #1366c5, #4faaff);
  border-radius: var(--radius-xl);
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #64748b;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonial-title {
  font-size: 0.7rem;
  opacity: 0.7;
}

.testimonial-quote-bg {
  position: absolute;
  right: -8px;
  bottom: -8px;
  font-size: 7rem;
  opacity: 0.08;
  line-height: 1;
  font-family: Georgia, serif;
  color: #fff;
  pointer-events: none;
}

/* =============================================
   WHY CHOOSE US CARDS (sidebar)
   ============================================= */
.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-icon.blue {
  background: #eff6ff;
  color: var(--primary-light);
}

.why-icon.purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.why-icon.orange {
  background: #fff7ed;
  color: #ea580c;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   CTA SECTIONS
   ============================================= */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-2xl);
  padding: 64px 64px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(15, 76, 154, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner .btn-row {
  justify-content: center;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .btn-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-row .btn {
    width: 100%;
  }
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: #0f172a;
  border-radius: var(--radius-2xl);
  padding: 56px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(15, 76, 154, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.newsletter-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.newsletter-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.newsletter-section p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 380px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: #64748b;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.newsletter-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: var(--primary-dark);
}

/* =============================================
   ENTERPRISE CTA BAR
   ============================================= */
.enterprise-bar {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.enterprise-bar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.enterprise-bar p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .enterprise-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   DIVIDER CTA BAR
   ============================================= */
.divider-cta {
  background: rgba(15, 76, 154, 0.05);
  padding: 40px 0;
}

.divider-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.divider-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.divider-cta p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .divider-cta-inner {
    padding: 0 16px;
    justify-content: flex-start;
  }
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: #cbd5e1;
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}

/* =============================================
   MISC UTILITIES
   ============================================= */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: #fff;
}

.font-black {
  font-weight: 900;
}

.tracking-tight {
  letter-spacing: -0.03em;
}

.gap-4 {
  gap: 16px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

/* Custom responsive grids */
.grid-cols-1-1-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.grid-cols-1-1-md {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.grid-cols-4-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.grid-cols-8-4 {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 48px;
  align-items: start;
}

.grid-cols-1-1-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.grid-cols-1-420 {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.grid-cols-7-5 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
}

.grid-cols-3-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.grid-cols-4-stories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-cols-3-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .grid-cols-1-420 {
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }

  .grid-cols-7-5 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .grid-cols-1-1-lg,
  .grid-cols-1-1-md {
    gap: 40px;
  }
}

@media (max-width: 900px) {

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

  .grid-cols-4-stats {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .grid-cols-4-stories {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .grid-cols-3-articles,
  .grid-cols-3-trust {
    grid-template-columns: 1fr 1fr;
  }

  .grid-cols-8-4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .grid-cols-1-1-lg,
  .grid-cols-1-1-md,
  .grid-cols-1-420,
  .grid-cols-7-5 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .grid-cols-1-1-sm {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {

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

  .grid-cols-4-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-cols-4-stories,
  .grid-cols-3-articles,
  .grid-cols-3-trust {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

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

  .section-sm {
    padding: 32px 0;
  }
}

/* =============================================
   MATERIAL SYMBOLS (Google Icons)
   ============================================= */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
/* --- Mobile Enhancements --- */
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 12px 16px 0 !important;
  }
  .hero-wrapper > div > div {
    padding: 32px 20px !important;
    min-height: 380px !important;
  }
  .hero-wrapper > div > div h1 {
    font-size: clamp(2rem, 8vw, 2.2rem) !important;
    margin-bottom: 12px !important;
  }
  .section {
    padding: 32px 0 !important;
  }
  
  h1 {
    font-size: clamp(1.8rem, 8vw, 2.2rem) !important;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem) !important;
  }
  
  .container {
    padding: 0 16px !important;
  }
  
  [style*="margin:0 auto 56px;"] {
    margin: 0 auto 32px !important;
  }
}

/* --- Specific override for about stats --- */
@media (max-width: 900px) {
  .grid-cols-4-stats {
    gap: 0 !important;
  }
  .grid-cols-4-stats > div {
    border-bottom: 1px solid var(--border);
  }
  .grid-cols-4-stats > div:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .grid-cols-4-stats > div:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
}
@media (max-width: 600px) {
  .grid-cols-4-stats {
    grid-template-columns: 1fr 1fr !important;
  }
}
