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

:root {
  --blue: #0052CC;
  --blue-light: #0066FF;
  --blue-dark: #0A1628;
  --green: #00C48C;
  --green-light: #00E6A0;
  --cyan: #00D4FF;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== Typography ===== */
h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; }
h2 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-blue { color: var(--blue); }
.text-green { color: var(--green); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.35);
}

.btn-outline {
  border: 2px solid var(--gray-300);
  color: var(--gray-800);
  background: var(--white);
}

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

/* ===== Section Badge ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.left {
  text-align: left;
}

.section-header p {
  color: var(--gray-500);
  margin-top: 8px;
  font-size: 1.05rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(224, 247, 250, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 82, 204, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}


.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1.2;
}

.logo-name.white { color: var(--white); }

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

.logo-subtitle.light { color: var(--gray-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.nav-link {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.4rem;
  color: var(--gray-700);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
}

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

/* ===== Hero ===== */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #F0F9FF 0%, #E0F7FA 40%, rgba(255,255,255,0) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(0, 82, 204, 0.06);
  border: 1px solid rgba(0, 82, 204, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  word-spacing: 0.04em;
}

.hero-description {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-circle-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(0, 82, 204, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle-inner {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(0, 82, 204, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 196, 140, 0.05));
  padding: 20px;
  box-sizing: border-box;
}

.hero-logo-center {
  text-align: center;
}

.hero-center-logo {
  width: 130px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-center-text {
  font-size: 0.65rem;
  color: var(--gray-500);
  margin-top: 8px;
  max-width: 130px;
}

/* Orbit system */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  animation: do-orbit var(--duration, 20s) linear infinite var(--delay, 0s);
}

.orbit-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.floating-icon.no-bg {
  background: none;
  border: none;
  box-shadow: none;
}

.floating-icon.no-bg .orbit-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.orbit-item .floating-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(0, 82, 204, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.1);
  transform: translateX(calc(var(--radius, 168px) - 26px)) translateY(-26px);
  animation: counter-orbit var(--duration, 20s) linear infinite var(--delay, 0s);
}

@keyframes do-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes counter-orbit {
  from { transform: translateX(calc(var(--radius, 168px) - 26px)) translateY(-26px) rotate(0deg); }
  to   { transform: translateX(calc(var(--radius, 168px) - 26px)) translateY(-26px) rotate(-360deg); }
}

/* ===== Trusted ===== */
.trusted {
  padding: 40px 0 60px;
  background: transparent;
}

.trusted-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  padding: 40px 48px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.trusted-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 0 0 20px 20px;
}

.trusted h3 {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.trusted-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.trusted-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 300%;
}

.trusted-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% / 3);
  padding: 8px 0;
}

.logo-item {
  opacity: 0.65;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.logo-item:hover {
  opacity: 1;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  transition: all 0.3s;
}

.dot.active {
  background: var(--green);
  width: 28px;
}

/* ===== Benefits ===== */
.benefits {
  padding: 80px 0;
  background: var(--white);
}

.benefits-ticker-wrapper {
  overflow: hidden;
  width: 100%;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.benefits-ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: benefits-scroll 28s linear infinite;
}

.benefits-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes benefits-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.benefit-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s;
  width: 280px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.benefit-card:hover, .benefit-card.elevated {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.benefit-icon.blue {
  background: rgba(0, 82, 204, 0.08);
  color: var(--blue);
}

.benefit-icon.green {
  background: rgba(0, 196, 140, 0.08);
  color: var(--green);
}

.benefit-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.benefit-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Modules ===== */
.modules {
  padding: 80px 0;
  background: var(--gray-50);
}

.modules-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  margin-top: 24px;
}

.modules-description {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: none;
}

.modules-layout .modules-description {
  display: none;
}

.modules-right .modules-description {
  display: block;
}

.module-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.module-tab {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.module-tab:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}

.module-tab.active {
  background: var(--blue);
  color: var(--white);
  border-left-color: var(--green);
  border-radius: var(--radius-sm);
}

.module-preview {
  background: linear-gradient(135deg, #E8F4FD, #F0FDF9);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
}

.module-preview-header h3 {
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.module-preview-header p {
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.module-preview-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.module-preview-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}

.module-preview-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.screen {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.screen-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.screen-dot.red { background: #FF5F57; }
.screen-dot.yellow { background: #FFBD2E; }
.screen-dot.green { background: #28C840; }

.screen-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-row {
  height: 10px;
  background: var(--gray-100);
  border-radius: 4px;
}

.screen-row.short {
  width: 60%;
}

/* ===== Statistics ===== */
.statistics {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0A2A4A 100%);
  color: var(--white);
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-content h2 {
  margin-bottom: 8px;
}

.stats-subtitle {
  color: var(--gray-400);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.stat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.stat-check {
  color: var(--green);
  font-size: 1.2rem;
  margin-top: 2px;
}

.stat-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.stat-item p {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* Laptop Mockup */
.laptop-mockup {
  perspective: 1000px;
}

.laptop-screen {
  background: var(--gray-900);
  border-radius: 12px 12px 0 0;
  border: 2px solid var(--gray-700);
  overflow: hidden;
}

.mockup-header {
  padding: 8px 12px;
  background: var(--gray-800);
  border-bottom: 1px solid var(--gray-700);
}

.mockup-nav {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-600);
}

.mockup-body {
  display: flex;
  min-height: 200px;
  overflow: hidden;
}

.mockup-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-sidebar {
  width: 60px;
  background: var(--gray-800);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--gray-700);
}

.mockup-menu-item {
  height: 8px;
  border-radius: 4px;
  background: var(--gray-700);
}

.mockup-menu-item.active {
  background: var(--blue);
}

.mockup-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-card {
  height: 30px;
  border-radius: 6px;
  background: var(--gray-800);
}

.mockup-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-row {
  height: 12px;
  background: var(--gray-800);
  border-radius: 4px;
}

.laptop-base {
  height: 16px;
  background: var(--gray-700);
  border-radius: 0 0 4px 4px;
  margin: 0 20px;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #E8F8FF 0%, #F0FDF9 100%);
  overflow: hidden;
}

.testimonials-ticker-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.testimonials-ticker-track.row-left {
  animation: testimonials-left 30s linear infinite;
}

.testimonials-ticker-track.row-right {
  animation: testimonials-right 30s linear infinite;
}

.testimonials-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes testimonials-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes testimonials-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonial-card {
  padding: 24px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.3s;
  width: 320px;
  flex-shrink: 0;
  box-sizing: border-box;
}

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

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0;
}

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

.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.9rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.author-info a {
  font-size: 0.8rem;
  color: var(--blue);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--green);
  font-size: 0.85rem;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--gray-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.faq-left h2 {
  margin-bottom: 12px;
}

.faq-left > p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.faq-contact {
  padding: 28px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.faq-contact h4 {
  margin-bottom: 8px;
}

.faq-contact p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(0, 82, 204, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: color 0.2s;
}

.faq-item.active .faq-question {
  color: var(--blue);
}

.faq-question i {
  font-size: 0.8rem;
  color: var(--blue);
  transition: transform 0.3s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.08);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--blue);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 18px;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Pre-footer Banner ===== */
.pre-footer {
  padding: 40px 0 0;
  background: transparent;
  position: relative;
  z-index: 2;
  margin-bottom: -60px;
}

.pre-footer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 40px;
  margin-left: 40%;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blue-dark), #0A2A4A);
  color: var(--white);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.pre-footer-banner p {
  font-size: 1.05rem;
  font-weight: 600;
}

.banner-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  display: block;
  flex-shrink: 0;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 100px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-description {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-links a:hover {
  background: var(--blue);
  color: var(--white);
}

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

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

.footer-col a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }

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

  .modules-layout {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stats-visual {
    max-width: 500px;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description { margin: 0 auto 32px; }

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

  .hero-visual {
    min-height: 320px;
  }

  .hero-circle-outer {
    width: 260px;
    height: 260px;
  }

  .hero-circle-inner {
    width: 190px;
    height: 190px;
  }

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

  .module-preview-screens {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .pre-footer-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .trusted-logos {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .container { padding: 0 16px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

/* ── Book a Demo Modal ── */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.demo-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.demo-modal {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  width: 900px;
  max-width: 95vw;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.demo-modal-overlay.active .demo-modal {
  transform: translateY(0);
}

.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  padding: 0 4px;
}

.demo-modal-close:hover { color: #111; }

.demo-modal-left {
  width: 340px;
  min-width: 340px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 60%, #e0f2f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.demo-modal-mockup {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.demo-modal-right {
  flex: 1;
  padding: 36px 32px 28px;
  overflow-y: auto;
}

.demo-modal-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.demo-modal-title span {
  color: var(--blue);
}

.demo-modal-subtitle {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 22px;
}

.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.demo-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.demo-form-row .demo-form-field {
  margin-bottom: 0;
}

.demo-form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.demo-form-field input,
.demo-form-field textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-family: inherit;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
  resize: none;
}

.demo-form-field input:focus,
.demo-form-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
}

.demo-form-field input::placeholder,
.demo-form-field textarea::placeholder {
  color: #bbb;
}

.demo-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.demo-btn-cancel {
  background: none;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}

.demo-btn-cancel:hover {
  border-color: #999;
  color: #222;
}

.demo-btn-submit {
  background: var(--blue);
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, opacity 0.2s;
}

.demo-btn-submit:hover { background: #003fa3; }
.demo-btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.demo-success {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
  gap: 12px;
}

.demo-success i {
  font-size: 3rem;
  color: #00c48c;
}

.demo-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
}

.demo-success p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .demo-modal { flex-direction: column; }
  .demo-modal-left { width: 100%; min-width: unset; padding: 20px; min-height: 140px; }
  .demo-modal-right { padding: 24px 20px 20px; }
  .demo-form-row { grid-template-columns: 1fr; }
}
