/* ============================================
   IgnitoAssess - Professional SaaS Stylesheet
   ============================================ */

:root {
  --primary:  #BE2126;
  --primary-dark: #ED2B30;
  --secondary: #EF4D54;
  --accent: #F2757D;
  --dark: #404041;
  --black: #000000;
  --gray: #6B6B6C;
  --light: #FFF5F5;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(64, 64, 65, 0.08);
  --shadow-lg: 0 12px 40px rgba(64, 64, 65, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 640px;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: none;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary-custom:hover {
  background: #9E1B1F;
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.btn-primary-custom.btn-sm {
  padding: 0.90rem 1rem;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-white-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

/* ---- Navbar ---- */
.navbar-custom {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(64, 64, 65, 0.06);
  transition: var(--transition);
  z-index: 1050;
}

.navbar-custom.scrolled {
  padding: 0.625rem 0;
  box-shadow: 0 4px 20px rgba(64, 64, 65, 0.08);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--dark);
}

.navbar-brand-custom .brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.navbar-brand-custom span {
  color: var(--primary);
}

.nav-link-custom {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.navbar-toggler-custom {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-custom:focus {
  box-shadow: none;
}

.navbar-toggler-custom .toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 40%, #fff8f8 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(237, 43, 48, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(242, 117, 125, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(237, 43, 48, 0.08);
  border: 1px solid rgba(237, 43, 48, 0.15);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title-animated .hero-word {
  display: inline-block;
  margin-right: 0.2em;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: heroWordReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.35s + var(--word-index) * 0.18s);
}

.hero-title-animated .hero-word:last-child {
  margin-right: 0;
}

@keyframes heroWordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-animated .hero-word {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.gradient-text,
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.hero-stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--gray);
}

.hero-visual {
  position: relative;
}

.hero-card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-dashboard-mock {
  /* background: linear-gradient(145deg, var(--dark) 0%, var(--black) 100%); */
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--white);
  min-height: 320px;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot.red { background: #ef4444; }
.mock-dot.yellow { background: var(--accent); }
.mock-dot.green { background: #22c55e; }

.mock-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mock-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.mock-stat-card .value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.mock-stat-card .label {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.mock-chart {
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0.75rem;
}

.mock-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: bottom;
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 15%;
  right: 0%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 15%;
  left: 0%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-card .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.floating-card .icon-wrap.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.floating-card .icon-wrap.blue {
  background: rgba(237, 43, 48, 0.15);
  color: var(--primary);
}

.floating-card .card-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
}

.floating-card .card-sub {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 9rem 0 4rem;
  background-color: var(--primary);
  background-image: linear-gradient(135deg, rgba(237, 43, 48, 0.88) 0%, rgba(160, 25, 30, 0.92) 100%),
    url(../image/page-hero-baaner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.page-hero .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white);
  background-clip: unset;
  color: var(--white);
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb a {
  color: var(--white);
}

.page-hero-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Sections ---- */
.section-padding {
  padding: 5rem 0;
}

.section-padding-lg {
  padding: 6rem 0;
}

.bg-light-custom {
  background: var(--light);
}

.bg-gradient-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.bg-gradient-custom h2,
.bg-gradient-custom h3,
.bg-gradient-custom h4 {
  color: var(--white);
}

/* ---- Glass Cards ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 43, 48, 0.15);
}

.feature-card {
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, rgba(255, 245, 245, 0.55) 100%);
  border: 1px solid rgba(237, 43, 48, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease,
              background 0.35s ease;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(64, 64, 65, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(237, 43, 48, 0.07) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(237, 43, 48, 0.11), 0 8px 24px rgba(64, 64, 65, 0.07);
  border-color: rgba(237, 43, 48, 0.18);
  background: linear-gradient(160deg, var(--white) 0%, rgba(255, 245, 245, 0.92) 100%);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(237, 43, 48, 0.22);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(237, 43, 48, 0.32);
}

.feature-card h4 {
  position: relative;
  z-index: 1;
  font-size: 1.1875rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card:hover h4 {
  color: var(--primary);
}

.feature-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.65;
}

.feature-card-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(64, 64, 65, 0.08);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(64, 64, 65, 0.08);
}

.feature-screenshot {
  border: 1px solid rgba(64, 64, 65, 0.08);
  display: flex;
  margin: 0 auto;
}

.ecosystem-product-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
}

/* ---- Audience Cards ---- */
.audience-card {
  --audience-accent: var(--primary);
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(64, 64, 65, 0.08);
  padding: 2rem 2rem 2rem 2.25rem;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(64, 64, 65, 0.05);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--audience-accent);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(237, 43, 48, 0.1), 0 4px 16px rgba(64, 64, 65, 0.06);
  border-color: rgba(237, 43, 48, 0.15);
}

.audience-card:hover::before {
  width: 6px;
}

.audience-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(64, 64, 65, 0.06);
  transition: color 0.35s ease;
  pointer-events: none;
}

.audience-card:hover .audience-num {
  color: rgba(237, 43, 48, 0.12);
}

.audience-card .audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  color: var(--audience-accent);
  background: color-mix(in srgb, var(--audience-accent) 10%, transparent);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              color 0.35s ease,
              box-shadow 0.35s ease;
}

.audience-card:hover .audience-icon {
  transform: scale(1.06);
  color: var(--white);
  background: var(--audience-accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--audience-accent) 35%, transparent);
}

.audience-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  transition: color 0.3s ease;
}

.audience-card:hover h4 {
  color: var(--audience-accent);
}

.audience-card p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.65;
}

/* .audience-universities { --audience-accent: #ED2B30; }
.audience-distance { --audience-accent: #E85A5F; }
.audience-government { --audience-accent: #404041; }
.audience-corporate { --audience-accent: #BE2126; }
.audience-training { --audience-accent: #EF4D54; }
.audience-competitive { --audience-accent: #C42830; } */

/* ---- Why Choose ---- */
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  background: var(--light);
}

.why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.why-item h5 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

/* ---- Stats Section ---- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-box .counter {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-box .counter-suffix {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--accent);
}

.stat-box .stat-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* ---- Testimonials ---- */
.testimonial-slider-wrap {
  position: relative;
  padding: 0 3rem;
}

.testimonial-swiper {
  overflow: hidden;
  padding-bottom: 3rem;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 260px;
  border: 1px solid rgba(64, 64, 65, 0.06);
}

.testimonial-card .stars {
  display: flex;
  gap: 0.2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-author .name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
}

.testimonial-author .role {
  font-size: 0.8125rem;
  color: var(--gray);
}

.testimonial-pagination {
  bottom: 0 !important;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(64, 64, 65, 0.12);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  font-size: 1.125rem;
  padding: 0;
}

.testimonial-nav:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.testimonial-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.testimonial-nav-prev {
  left: 0;
}

.testimonial-nav-next {
  right: 0;
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 5rem 0;
  background: var(--light);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
  text-align: center;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0.875rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.cta-box .btn-group-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ---- Feature Detail Sections ---- */
.feature-detail-section {
  padding: 5rem 0;
}

.feature-detail-section:nth-child(even) {
  background: var(--light);
}

.feature-detail-grid {
  align-items: center;
}

.feature-visual-box {
  background: linear-gradient(145deg, var(--light) 0%, var(--white) 100%);
  border: 1px solid rgba(64, 64, 65, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(237, 43, 48, 0.3);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--gray);
}

.feature-list li i {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ---- Tag Pills ---- */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(237, 43, 48, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.25rem;
  transition: var(--transition);
}

.tag-pill:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---- Security/Compliance Cards ---- */
.compliance-card {
  background: var(--white);
  border: 1px solid rgba(64, 64, 65, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.compliance-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.compliance-card .compliance-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
}

/* ---- Contact Forms ---- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(64, 64, 65, 0.06);
}

.contact-quick-card {
  background: var(--white);
  border: 1px solid rgba(64, 64, 65, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 12px rgba(64, 64, 65, 0.04);
  transition: var(--transition);
}

.contact-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(237, 43, 48, 0.12);
}

.contact-quick-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(190, 33, 38, 0.1) 0%, rgba(239, 77, 84, 0.14) 100%);
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-quick-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

.contact-quick-card p {
  font-size: 0.8125rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.contact-form-panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(64, 64, 65, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}

.contact-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 245, 245, 0.65);
  border-bottom: 1px solid rgba(64, 64, 65, 0.06);
}

.contact-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.contact-tab:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.contact-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(64, 64, 65, 0.08);
}

.contact-tab-panels {
  padding: 2rem;
}

.contact-tab-pane {
  display: none;
}

.contact-tab-pane.active {
  display: block;
}

.contact-panel-intro {
  margin-bottom: 1.75rem;
}

.contact-panel-intro h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-panel-intro p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
}

.contact-message-field {
  min-height: 140px;
}

.contact-info-panel {
  background: linear-gradient(165deg, var(--white) 0%, rgba(255, 245, 245, 0.85) 100%);
  border: 1px solid rgba(237, 43, 48, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.contact-info-panel-header {
  margin-bottom: 1.75rem;
}

.contact-info-panel-header h3 {
  font-size: 1.35rem;
  margin: 0.5rem 0 0.75rem;
}

.contact-info-panel-header p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-row .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(237, 43, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-row h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.contact-info-row p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.65;
}

.contact-info-row a {
  color: var(--primary);
}

.contact-info-row a:hover {
  color: var(--primary-dark);
}

.form-label-custom {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-control-custom {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(64, 64, 65, 0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 43, 48, 0.1);
}

.form-control-custom::placeholder {
  color: #9ca3af;
}

textarea.form-control-custom {
  min-height: 120px;
  resize: vertical;
}

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 1px solid rgba(64, 64, 65, 0.08);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}

/* ---- Contact Info ---- */
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(64, 64, 65, 0.06);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(237, 43, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  border: 1px solid rgba(64, 64, 65, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Footer ---- */
.footer-custom {
  background: #E8E8E8;
  color: var(--gray);
  padding: 3.5rem 0 0;
}

.footer-brand {
  margin-bottom: 0;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-brand .brand-name span {
  color: var(--primary);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 320px;
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #D4D4D4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(64, 64, 65, 0.12);
  padding: 1.25rem 0;
  margin-top: 2.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  margin: 0;
  text-align: center;
  color: var(--gray);
}

/* ---- Swiper Custom ---- */
.swiper-pagination-bullet {
  background: var(--primary) !important;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

/* ---- Dashboard Preview ---- */
.dashboard-preview {
  /* background: var(--white); */
  /* border-radius: var(--radius); */
  /* border: 1px solid rgba(64, 64, 65, 0.08); */
  /* overflow: hidden; */
  /* box-shadow: var(--shadow-lg); */
}

.dashboard-preview-header {
  background: var(--light);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(64, 64, 65, 0.06);
}

.dashboard-preview-body {
  padding: 1.5rem;
  min-height: 200px;
}

.dashboard-metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-metric {
  background: var(--light);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.dashboard-metric .metric-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.dashboard-metric .metric-label {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ---- Process Steps ---- */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(64, 64, 65, 0.06);
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.process-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h5 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--gray);
  margin: 0;
}

/* ---- Accessibility ---- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .floating-card.card-1 {
    right: 0;
    top: 5%;
  }

  .floating-card.card-2 {
    left: 0;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .section-padding-lg {
    padding: 4rem 0;
  }

  .nav-link-custom.active::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn-primary-custom,
  .hero-cta-group .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    gap: 1.5rem;
  }

  .mock-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    display: none;
  }

  .testimonial-slider-wrap {
    padding: 0 2.75rem;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .cta-box .btn-group-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-box .btn-group-cta .btn-white-custom,
  .cta-box .btn-group-cta .btn-outline-white {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .form-card {
    padding: 1.5rem;
  }

  .contact-tab {
    font-size: 0.8125rem;
    padding: 0.75rem 0.5rem;
  }

  .contact-tab i {
    display: none;
  }

  .contact-tab-panels,
  .contact-info-panel {
    padding: 1.5rem;
  }

  .page-hero {
    padding: 7rem 0 3rem;
  }
}

@media (max-width: 575.98px) {
  .glass-card,
  .feature-card {
    padding: 1.5rem;
  }

  .stat-box {
    padding: 1rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
