/* ===== VARIABLES ===== */
:root {
  --navy-darkest: #0a1a2c;
  --navy-dark: #0f2438;
  --navy: #0d1b2a;
  --navy-mid: #122c46;
  --blue-primary: #1c4e80;
  --blue-light: #1d5a8a;
  --blue-hover: #2b74ab;
  --gold: #f0b429;
  --gold-light: #f6d073;
  --gold-pale: #e8c96d;
  --cream: #f7f4ee;
  --white: #ffffff;
  --border-light: #e7e2d8;
  --border-input: #e2e8f0;
  --text-dark: #101114;
  --text-primary: #16202c;
  --text-muted: #586372;
  --text-light: #8a95a0;
  --text-nav: #3a4552;
  --green: #2f9e6e;
  --green-dark: #1a7a4a;
  --coral: #e2604f;
  --coral-dark: #c0392b;
  --purple: #5b21b6;
  --teal: #0e8585;
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  margin: 0;
  overflow-x: hidden;
}

::selection {
  background: rgba(240, 180, 41, 0.33);
}

a {
  color: var(--blue-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--blue-hover);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  margin: 0;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold);
  color: #1a1204;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: #1a1204;
  transform: translateY(-1px);
}

.btn-gold.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(240, 180, 41, 0.25);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn-lang {
  background: var(--white);
  border: 1.5px solid #e0dbcd;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-nav);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-lang:hover {
  background: var(--cream);
  border-color: var(--gold);
}

.btn-lang .fi {
  width: 1.2em;
  height: 0.9em;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0,0,0,0.2);
}

/* ===== NAV ===== */
.nav-custom {
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  z-index: 1000;
}

.nav-custom .container {
  position: relative;
}

.nav-custom .navbar-toggler {
  border: 1.5px solid var(--border-light);
  padding: 6px 10px;
  background: var(--white);
}

.nav-custom .navbar-toggler:focus {
  box-shadow: none;
}

.nav-right-group {
  flex-shrink: 0;
}

.logo-chip {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-chip img {
  width: 130%;
  height: 130%;
  object-fit: cover;
}

.brand-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  color: var(--text-dark);
}

.nav-custom .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-nav);
  padding: 8px 4px;
  transition: color 0.2s;
}

.nav-custom .nav-link:hover {
  color: var(--blue-primary);
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(160deg, #0f2438 0%, #173b5c 55%, #1d5a8a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}

.hero-circle-1 {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(240, 180, 41, 0.12);
  top: -160px;
  right: -140px;
  pointer-events: none;
}

.hero-circle-2 {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  bottom: -100px;
  left: -60px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 22px 0;
}

.hero-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  margin-bottom: 18px;
}

.audience-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.stat-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  min-width: 96px;
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(4, 15, 28, 0.5);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.mockup-header {
  background: linear-gradient(135deg, #0d1b2a, #1c4e80);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #1a1204;
}

.mockup-title {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.mockup-date {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.mockup-body {
  padding: 18px 20px 22px;
}

.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.mock-stat {
  border-radius: 10px;
  padding: 9px 4px;
  text-align: center;
}

.mock-stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.mock-stat-label {
  font-size: 0.58rem;
  color: #7a8799;
  margin-top: 1px;
}

.mock-charts-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
}

.mock-chart-area {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 12px;
}

.mock-chart-pie {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mock-chart-title {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-nav);
  margin-bottom: 8px;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 78px;
}

.mock-bar {
  flex: 1;
  background: linear-gradient(180deg, #2b74ab, #1c4e80);
  border-radius: 4px 4px 0 0;
}

.mock-donut {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(#1c4e80 0% 45%, #2b74ab 45% 68%, #2f9e6e 68% 86%, #f0b429 86% 100%);
}

.mock-chart-label {
  font-size: 0.6rem;
  color: #7a8799;
  margin-top: 8px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--navy-mid);
  padding: 96px 0;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

.section-label.gold {
  color: var(--gold);
}

.section-label.blue {
  color: var(--blue-light);
}

.section-title {
  font-size: 2.1rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-intro-dark {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.problem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
  height: 100%;
}

.problem-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.problem-icon.coral {
  background: rgba(224, 96, 79, 0.15);
  color: #e8836f;
}

.problem-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.problem-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

.solution-card {
  background: rgba(47, 158, 110, 0.12);
  border: 1px solid rgba(47, 158, 110, 0.3);
  border-radius: 16px;
  padding: 22px 20px;
  height: 100%;
}

.solution-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(47, 158, 110, 0.2);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.solution-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.solution-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin: 0;
}

.quote-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 720px;
  text-align: center;
}

.quote-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.quote-text {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 14px 0;
  font-style: italic;
}

.quote-author {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0;
}

/* ===== MODULES SECTION ===== */
.modules-section {
  padding: 100px 0;
  background: var(--cream);
}

.module-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 2px 10px rgba(16, 32, 44, 0.04);
  height: 100%;
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.module-icon.blue { background: #eaf2fb; color: #1c4e80; }
.module-icon.teal { background: #e0f4f4; color: #0e8585; }
.module-icon.gold { background: #fdf6e3; color: #9a6f1a; }
.module-icon.coral { background: #fdeceb; color: #c0392b; }
.module-icon.purple { background: #f1eeff; color: #5b21b6; }
.module-icon.green { background: #e8f8f1; color: #1a7a4a; }
.module-icon.navy { background: #e9ecf1; color: #0d1b2a; }

.module-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.module-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== SECURITY SECTION ===== */
.security-section {
  background: var(--navy-dark);
  padding: 96px 0;
}

.security-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
}

.security-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}

.security-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.security-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 600;
}

.tech-chip i {
  color: var(--gold);
}

/* ===== TRAINING SECTION ===== */
.training-section {
  padding: 96px 0;
  background: var(--cream);
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.training-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
}

.training-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eaf2fb;
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.training-title {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.training-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===== MIGRATION SECTION ===== */
.migration-section {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.migration-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
}

.migration-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eaf2fb;
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.migration-title {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.migration-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===== MAINTENANCE SECTION ===== */
.maintenance-section {
  background: var(--navy-dark);
  padding: 88px 0;
}

.maint-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  text-align: center;
}

.maint-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin: 0 auto 12px;
}

.maint-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.maint-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

/* ===== GOLD BANNER ===== */
.gold-banner {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  padding: 64px 0;
}

.banner-title {
  font-size: 1.9rem;
  color: #1a1204;
  margin-bottom: 10px;
}

.banner-sub {
  font-size: 0.95rem;
  color: #4a3a10;
  margin-bottom: 26px;
  line-height: 1.5;
}

.gold-banner .btn-dark {
  background: #1a1204;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 11px;
  font-weight: 700;
}

.gold-banner .btn-dark:hover {
  background: var(--navy-dark);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--cream);
}

.pricing-card {
  border-radius: 18px;
  padding: 30px 28px;
  height: 100%;
  position: relative;
}

.pricing-card.monthly {
  background: var(--white);
  border: 1.5px solid var(--border-light);
}

.pricing-card.annual {
  background: var(--navy-mid);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #1a1204;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.pricing-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-nav);
  margin-bottom: 6px;
}

.pricing-label.gold {
  color: var(--gold);
}

.pricing-amount {
  margin-bottom: 10px;
}

.pricing-amount .amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
}

.pricing-card.monthly .amount {
  color: var(--text-dark);
}

.pricing-card.annual .amount {
  color: var(--white);
}

.pricing-amount .period {
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card.monthly .period {
  color: var(--text-light);
}

.pricing-card.annual .period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-card.monthly .pricing-desc {
  color: var(--text-muted);
}

.pricing-card.annual .pricing-desc {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
}

.pricing-card.monthly .pricing-list li {
  color: var(--text-nav);
}

.pricing-card.annual .pricing-list li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-list li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card.monthly .pricing-list li i {
  color: var(--green);
}

.pricing-card.annual .pricing-list li i {
  color: var(--gold);
}

.setup-card {
  background: var(--white);
  border: 1.5px dashed #d8cfb8;
  border-radius: 16px;
  padding: 22px 26px;
  max-width: 800px;
}

.setup-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #fdf6e3;
  color: #9a6f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.setup-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin: 0;
}

.setup-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.5;
  margin: 4px 0 0;
}

.setup-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.setup-once {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}

.pricing-footnote {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--navy-dark);
  padding: 100px 0;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row span,
.contact-row a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 28px;
}

.contact-form .form-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-nav);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-form .form-control {
  padding: 11px 13px;
  border: 1.5px solid var(--border-input);
  border-radius: 9px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.88rem;
  background: #fafbfc;
}

.contact-form .form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(28, 78, 128, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-dark));
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--blue-hover), var(--navy));
  color: var(--white);
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--navy-darkest);
  padding: 44px 0;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo img {
  width: 130%;
  height: 130%;
  object-fit: cover;
}

.footer-brand {
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  margin-left: 6px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}

/* ===== DEMO MODAL ===== */
.demo-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.btn-close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f0f4f8;
  border: none;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.btn-close-modal:hover {
  background: #e2e8f0;
}

.demo-modal-header {
  background: linear-gradient(135deg, #0d1b2a, #1c4e80);
  padding: 26px 28px 22px;
}

.demo-modal-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(240, 180, 41, 0.16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.demo-modal-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.demo-modal-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.demo-modal-body {
  padding: 22px 28px 28px;
}

.credential-group {
  margin-bottom: 14px;
}

.credential-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.credential-field {
  display: flex;
  gap: 8px;
}

.credential-input {
  flex: 1;
  background: #f7f9fb;
  border: 1.5px solid var(--border-input);
  border-radius: 9px;
  padding: 10px 13px;
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.btn-copy {
  background: var(--white);
  border: 1.5px solid var(--border-input);
  border-radius: 9px;
  padding: 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-nav);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: #f7f9fb;
}

.btn-copy.copied {
  background: #e8f8f1;
  color: var(--green-dark);
  border-color: #c6efd9;
}

.btn-copy.selected {
  background: #eaf2fb;
  color: var(--blue-primary);
  border-color: #cde0f1;
}

.demo-hint {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
  margin: 14px 0;
}

#copyAllBtn.copied {
  background: var(--green) !important;
  color: var(--white) !important;
}

.demo-modal-body .btn-dark {
  background: var(--navy-dark);
  border: none;
}

.demo-modal-body .btn-dark:hover {
  background: var(--navy);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  /* Navbar collapse dropdown */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 244, 238, 0.98);
    padding: 20px;
    margin-top: 0;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--border-light);
    border-top: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .navbar-collapse .navbar-nav {
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .dashboard-mockup {
    transform: none;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 60px 0 70px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  /* Hero content reorder for mobile */
  .hero-section .row {
    display: flex;
    flex-direction: column;
  }

  .hero-content-wrapper {
    display: flex;
    flex-direction: column;
  }

  .hero-eyebrow {
    order: 1;
  }

  .hero-title {
    order: 2;
  }

  .hero-divider {
    order: 3;
  }

  /* Dashboard mockup after title on mobile */
  .dashboard-mockup-col {
    order: 4 !important;
    margin-bottom: 24px;
  }

  .hero-sub {
    order: 5;
  }

  .audience-tags {
    order: 6;
  }

  .hero-cta-wrapper {
    order: 7;
  }

  .hero-stats-wrapper {
    order: 8;
  }

  /* Stat chips 2x2 grid */
  .stat-chips-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .stat-chip {
    min-width: unset;
    width: 100%;
    padding: 12px 16px;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  /* Contact section - form after text */
  .contact-section .row {
    display: flex;
    flex-direction: column;
  }

  .contact-text-col {
    order: 1;
  }

  .contact-form-col {
    order: 2;
  }

  .problem-section,
  .security-section,
  .maintenance-section {
    padding: 70px 0;
  }

  .modules-section,
  .training-section,
  .pricing-section,
  .contact-section {
    padding: 70px 0;
  }

  .migration-section {
    padding: 60px 0;
  }

  .gold-banner {
    padding: 50px 0;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-amount .amount {
    font-size: 2rem;
  }

  .setup-card {
    padding: 18px 20px;
  }

  .setup-amount {
    font-size: 1.4rem;
  }

  .quote-card {
    padding: 22px 20px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section .d-flex {
    flex-direction: column;
    gap: 16px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .btn-gold.btn-lg,
  .btn-outline-light.btn-lg {
    padding: 12px 20px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  .audience-tags {
    justify-content: center;
  }

  .hero-cta-wrapper {
    flex-direction: column;
  }

  .contact-form {
    padding: 24px 20px;
  }
}
