/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand colors from logo: navy blue, teal, gold */
  --primary: #14b8a6;
  --primary-dark: #0d9488;
  --secondary: #0f172a;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --dark: #0f172a;
  --navy: #1e293b;
  --gray: #64748b;
  --light-gray: #f8fafc;
  --white: #ffffff;
  --teal: #14b8a6;
  --teal-light: #5eead4;
  --gold: #f59e0b;
  --success: #10b981;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Prevent background scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Particle backgrounds for visual depth */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Logo styling */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.btn-nav):hover {
  color: var(--primary);
}

.nav-links a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  color: var(--white) !important;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-nav::after {
  display: none;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.5);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  font-size: 1.1rem;
  padding: 1.125rem 2.5rem;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-cta:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 8rem 0 6rem;
  overflow: hidden;
}

/* Hero particles background */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Hero stats with glassmorphism */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 3rem;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* Scroll indicator animation */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

/* Features Grid */
.features-grid {
  padding: 6rem 0;
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--dark);
  letter-spacing: -1px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Enhanced feature cards with hover effects */
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--teal-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(94, 234, 212, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
}

.feature-icon {
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-weight: 700;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Platform Showcase */
.platform-showcase {
  padding: 6rem 0;
  background: var(--white);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-item.reverse {
  direction: ltr;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-badge {
  display: inline-block;
  background: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.showcase-text {
}

.showcase-description {
  color: var(--gray);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

/* Animated checkmark */
.feature-check {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.feature-check svg {
  color: var(--white);
}

.showcase-feature-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.showcase-feature-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Device mockup with 3D effect */
.showcase-visual {
  position: relative;
  perspective: 1000px;
}

.device-frame {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.device-frame:hover {
  transform: rotateY(-5deg) rotateX(5deg);
}

.device-screen {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  min-height: 400px;
}

/* Animated dashboard demo */
.demo-dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.demo-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.demo-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-line {
  height: 12px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 100%);
  border-radius: 6px;
  animation: shimmer 2s ease-in-out infinite;
}

.demo-line.short {
  width: 70%;
}

.demo-line.shorter {
  width: 50%;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.demo-stat {
  height: 80px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(94, 234, 212, 0.1) 100%);
  border-radius: 12px;
  animation: shimmer 2s ease-in-out infinite;
}

.demo-chart {
  height: 200px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(30, 41, 59, 0.05) 100%);
  border-radius: 12px;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Floating cards with animation */
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  animation: float 4s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  right: -5%;
}

.card-2 {
  bottom: 15%;
  right: -10%;
  animation-delay: 2s;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.card-icon.teal {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
}

.card-icon.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-line {
  width: 80px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}

.card-line.short {
  width: 50px;
}

/* Challenges & Solutions */
.challenges-solutions {
  padding: 6rem 0;
  background: var(--light-gray);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Challenge cards with animated numbers */
.challenge-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #ef4444;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.challenge-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(239, 68, 68, 0.1);
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
}

.challenge-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.challenge-card p {
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Solutions Section */
.solutions {
  padding: 6rem 0;
  background: var(--white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
}

/* Solution cards with gradient backgrounds */
.solution-card {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.solution-icon {
  width: 70px;
  height: 70px;
  background: rgba(20, 184, 166, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
}

.solution-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  flex: 1;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.solution-list li {
  padding: 0.875rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s ease;
}

.solution-list li:last-child {
  border-bottom: none;
}

.solution-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--teal-light);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.solution-list li:hover {
  padding-left: 2.5rem;
}

.solution-list li:hover::before {
  transform: translateX(5px);
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background: var(--light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Benefit cards with icon backgrounds */
.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(94, 234, 212, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  color: var(--white);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-weight: 700;
}

.benefit-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Track Record */
.track-record {
  padding: 6rem 0;
  background: var(--white);
}

.track-record-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

/* Award Card Styling */
.record-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.record-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(252, 211, 77, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.record-card:hover::before {
  opacity: 1;
}

.record-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

/* Award Badge with pulse animation */
.award-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
  }
}

.award-year {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(252, 211, 77, 0.1) 100%);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.record-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.record-card p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.award-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.tag {
  padding: 0.5rem 1rem;
  background: var(--light-gray);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Partnership Card Styling */
.partnership-card::before {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(94, 234, 212, 0.05) 100%);
}

.partnership-card:hover {
  border-color: var(--primary);
}

.partnership-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.orange-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7900 0%, #ff9500 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
}

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(94, 234, 212, 0.1) 100%);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.partnership-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.partnership-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.benefit-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
  padding: 8rem 0;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Enhanced .cta-content with glassmorphism and animations */
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.cta-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 30px 80px rgba(20, 184, 166, 0.2);
  transform: translateY(-5px);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item svg {
  color: var(--teal-light);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

/* Enhanced Modal Styles with modern design */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.05);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-content {
  padding: 3rem;
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.modal-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.modal-header p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.875rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-option {
  cursor: pointer;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  background: var(--white);
}

.radio-card svg {
  color: var(--gray);
  transition: color 0.3s ease;
}

.radio-card strong {
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 600;
}

.radio-card small {
  font-size: 0.75rem;
  color: var(--gray);
}

.radio-option input[type="radio"]:checked + .radio-card {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(94, 234, 212, 0.05) 100%);
}

.radio-option input[type="radio"]:checked + .radio-card svg {
  color: var(--primary);
}

.radio-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.form-actions {
  margin-top: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1.125rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* Premium Footer Design with gradient and enhanced styling */
.footer {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 5rem 0 0;
  overflow: hidden;
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-light) 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-column ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-column ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.footer-badge svg {
  color: var(--primary);
}

/* Comprehensive responsive design improvements for all breakpoints */
/* Responsive Design - Enhanced for all screen sizes */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    /* Changed from .hero-content h1 to .hero-title */
    font-size: 3rem;
  }

  /* Missing from existing: .platform-features - assuming it refers to .features-wrapper or something similar or is new */
  /* For this merge, will assume platform-features is intended to be .features-wrapper */
  .features-wrapper {
    /* Assuming platform-features maps to features-wrapper */
    grid-template-columns: repeat(2, 1fr);
  }

  .challenges-grid {
    /* Changed from .challenge-grid to .challenges-grid */
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .track-record-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 968px) {
  /* Navigation (mobile off-canvas) */
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1201; /* above the menu panel */
  }

  /* Make logo a bit smaller on mobile */
  .logo-img {
    height: 40px;
  }
  .logo-text {
    font-size: 1.25rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(12, 10, 10, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 2rem;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    /* Hidden by default (still in DOM for transitions) */
    transform: translateX(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.95rem 1rem;
    border-radius: 10px;
    background: rgba(202, 210, 218, 0.05);
    color: var(--white);
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
  }

  /* Hero section */
  .hero-title {
    /* Changed from .hero-content h1 to .hero-title */
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    /* Changed from .hero-content p to .hero-subtitle */
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Platform features */
  .features-wrapper {
    /* Assuming platform-features maps to features-wrapper */
    grid-template-columns: 1fr;
  }

  /* Challenge and solutions */
  .challenges-grid /* Changed from .challenge-grid to .challenges-grid */,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* CTA section */
  .cta-title {
    /* Changed from .cta-content h2 to .cta-title */
    font-size: 2rem;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Typography adjustments */
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Hero adjustments */
  .hero-title {
    /* Changed from .hero-content h1 to .hero-title */
    font-size: 2rem;
  }

  .hero-subtitle {
    /* Changed from .hero-content p to .hero-subtitle */
    font-size: 1rem;
  }

  /* Device mockup */
  /* .device-mockup - no direct match, assuming it refers to .device-frame */
  .device-frame {
    /* Assuming .device-mockup maps to .device-frame */
    max-width: 100%;
  }

  /* Stats */
  .hero-stats {
    /* Changed from .stats to .hero-stats */
    gap: 1.5rem;
  }

  .stat-number {
    /* Changed from .stat-item h3 to .stat-number */
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  /* Container padding */
  .container {
    padding: 0 1rem;
  }

  /* Section padding */
  /* The existing code does not have a general `section` selector, this is new */
  .features-grid,
  .platform-showcase,
  .challenges-solutions,
  .solutions,
  .benefits,
  .track-record,
  .cta-section {
    /* Applying to main sections */
    padding: 3rem 0;
  }

  /* Navbar */
  .navbar {
    padding: 1rem 0;
  }

  .logo-text {
    /* Changed from .logo to .logo-text */
    font-size: 1.25rem;
  }

  /* Hero */
  .hero-content {
    padding: 2rem 0;
  }

  .hero-title {
    /* Changed from .hero-content h1 to .hero-title */
    font-size: 1.75rem;
  }

  /* .trust-indicators - no direct match, assuming it refers to .cta-trust */
  .cta-trust {
    /* Assuming .trust-indicators maps to .cta-trust */
    flex-direction: column;
    gap: 1rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.75rem;
  }

  /* Cards */
  .feature-card,
  .challenge-card,
  .solution-card,
  .benefit-card {
    padding: 1.5rem;
  }

  /* Stats */
  .hero-stats {
    /* Changed from .stats to .hero-stats */
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Track Record */
  /* Award badge and partnership badge sizes */
  .award-badge,
  .partnership-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    width: 60px; /* Adjusting the specific size from the update for badges */
    height: 60px; /* Adjusting the specific size from the update for badges */
  }

  .award-badge svg,
  .partnership-badge svg {
    /* Ensure svg inside badges also scales */
    width: 28px;
    height: 28px;
  }

  .record-card h3 /* Changed from .award-card h3 to .record-card h3 */,
  .partnership-card h3 {
    font-size: 1.25rem;
  }

  /* CTA */
  .cta-title {
    /* Changed from .cta-content h2 to .cta-title */
    font-size: 1.75rem;
  }

  .cta-subtitle {
    /* Changed from .cta-content p to .cta-subtitle */
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta,
  /* .btn-secondary-outline - no direct match, assuming it refers to .btn-secondary */
    .btn-secondary {
    /* Assuming .btn-secondary-outline maps to .btn-secondary */
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* .footer-bottom-links - no direct match, assuming it refers to the general footer badges */
  .footer-badges {
    /* Assuming .footer-bottom-links maps to .footer-badges */
    flex-direction: column;
    gap: 1rem;
  }

  /* .security-badges - no direct match, assuming it refers to .footer-badges */
  .footer-badges {
    /* Assuming .security-badges maps to .footer-badges */
    justify-content: center;
  }

  /* Modal */
  .modal {
    padding: 1rem 0.5rem;
  }

  .modal-content {
    padding: 1.5rem 1rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-header p {
    font-size: 0.9rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .hero-title {
    /* Changed from .hero-content h1 to .hero-title */
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  /* .platform-image - no direct match, assuming it refers to the device-screen or visual aspect */
  .device-screen {
    /* Assuming .platform-image maps to .device-screen */
    min-height: 300px; /* Reduced height for smaller screens */
  }

  .modal-icon {
    width: 48px;
    height: 48px;
  }

  .modal-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Landscape orientation fixes for tablets */
@media (max-width: 968px) and (orientation: landscape) {
  .hero-content {
    padding: 1rem 0;
  }

  .hero-title {
    /* Changed from .hero-content h1 to .hero-title */
    font-size: 2rem;
  }

  .modal {
    padding: 1rem;
  }

  .nav-links {
    height: calc(100vh - 60px); /* Adjust based on navbar height */
    overflow-y: auto;
  }
}

/* Print styles */
@media print {
  .navbar,
  .mobile-menu-toggle,
  .btn-primary,
  .btn-secondary,
  .modal {
    display: none !important;
  }

  /* .section - no general selector. Applying to primary content sections. */
  .hero,
  .features-grid,
  .platform-showcase,
  .challenges-solutions,
  .solutions,
  .benefits,
  .track-record,
  .cta-section {
    page-break-inside: avoid;
  }
}
