@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #E53935;
  --primary-dark: #C62828;
  --secondary: #FFC107;
  --accent: #FF8F00;
  --dark: #1a1a2e;
  --dark-blue: #f1f3f8;
  --dark-card: #ffffff;
  --text-light: #2d3436;
  --text-muted: #636e72;
  --white: #1a1a2e;
  --gradient-hero: linear-gradient(135deg, #ffffff 0%, #fff8f8 40%, #fff3e0 70%, #fffde7 100%);
  --gradient-btn: linear-gradient(135deg, #E53935, #FF5252);
  --gradient-accent: linear-gradient(135deg, #E53935, #FFC107);
  --shadow-card: 0 10px 40px rgba(229, 57, 53, 0.08);
  --shadow-hover: 0 20px 60px rgba(229, 57, 53, 0.12);
  --border-radius: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.navbar {
  background: transparent !important;
  border: none;
  padding: 12px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1050;
}

.navbar .container {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  padding: 4px 8px 4px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  padding: 10px 0;
}

.navbar.scrolled .container {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 2px 0;
  margin-right: auto;
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.navbar-nav {
  gap: 0;
  align-items: center;
}

.navbar-nav .nav-link {
  color: #555555 !important;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 7px 15px !important;
  border-radius: 100px;
  transition: all 0.25s ease;
  letter-spacing: 0;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #1a1a1a !important;
  background: rgba(0, 0, 0, 0.04);
}

.navbar-nav .nav-link.active {
  color: #E53935 !important;
  font-weight: 600;
  background: rgba(229, 57, 53, 0.08);
}

.navbar-nav .nav-link.nav-cta-btn,
.nav-cta-btn {
  background: #E53935 !important;
  color: #ffffff !important;
  border: none;
  padding: 9px 22px !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.84rem !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
  letter-spacing: 0;
}

.navbar-nav .nav-link.nav-cta-btn:hover,
.nav-cta-btn:hover {
  color: #ffffff !important;
  background: #C62828 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.4);
}

.navbar-nav .nav-link.nav-cta-btn:active,
.nav-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(229, 57, 53, 0.3);
}

.navbar-nav .nav-link.nav-cta-btn.active {
  background: #E53935 !important;
  color: #ffffff !important;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.06);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 22px;
  height: 22px;
}

.dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 6px;
  margin-top: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.1);
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  color: #444444;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  font-weight: 450;
}

.dropdown-item:hover {
  background: rgba(229, 57, 53, 0.06);
  color: #E53935;
}

.dropdown-item i {
  width: 20px;
  margin-right: 10px;
  color: #E53935;
  font-size: 0.85rem;
}

.btn-primary-custom {
  background: var(--gradient-btn);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
  color: #ffffff;
}

.btn-outline-custom {
  background: transparent;
  color: #E53935;
  border: 2px solid rgba(229, 57, 53, 0.4);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.hero-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper .hero-illustration {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 60px rgba(229, 57, 53, 0.12));
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 57, 53, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.hero-float-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 15%;
  left: -5%;
  animation-delay: 1.5s;
}

.hero-float-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.hero-float-card .card-text {
  font-size: 0.85rem;
}

.hero-float-card .card-text strong {
  display: block;
  color: #1a1a2e;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-btn);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(229, 57, 53, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(229, 57, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
  background: var(--gradient-btn);
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.module-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(229, 57, 53, 0.2);
}

.module-card .module-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: #ffffff;
}

.module-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.module-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline-section {
  position: relative;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gradient-btn);
}

.timeline-step {
  text-align: center;
  flex: 1;
  padding: 0 10px;
  position: relative;
  min-width: 150px;
}

.timeline-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  border: 4px solid #ffffff;
}

.timeline-step .step-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-step h5 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-short {
  background: var(--dark-blue);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.about-feature .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(229, 57, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.about-feature h3 {
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

footer {
  background: #1a1a2e;
  border-top: 1px solid rgba(229, 57, 53, 0.1);
  padding-top: 60px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-desc {
  color: #b2bec3;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(229, 57, 53, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #E53935;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-btn);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b2bec3;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFC107;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #b2bec3;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: #FFC107;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  color: #b2bec3;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.page-header {
  background: linear-gradient(135deg, #E53935 0%, #C62828 50%, #B71C1C 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb-custom a {
  color: #FFC107;
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.6);
}

.feature-detail-section {
  padding: 80px 0;
}

.feature-detail-section:nth-child(even) {
  background: var(--dark-blue);
}

.feature-detail-content h3 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.feature-detail-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.feature-detail-content ul {
  list-style: none;
  padding: 0;
}

.feature-detail-content ul li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-detail-content ul li i {
  color: #E53935;
  font-size: 0.9rem;
}

.feature-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.feature-image-placeholder {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(229, 57, 53, 0.15);
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-card .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 1rem;
}

.guide-step {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 0;
  margin-bottom: 30px;
  transition: var(--transition);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.guide-step:nth-child(even) {
  flex-direction: row-reverse;
}

.guide-step:hover {
  border-color: rgba(229, 57, 53, 0.1);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.guide-step .step-content {
  flex: 1;
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.guide-step .step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.guide-step .step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.25);
}

.guide-step h3 {
  font-size: 1.08rem;
  color: #1a1a2e;
  margin-bottom: 0;
  font-weight: 700;
}

.guide-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.guide-step ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  margin-bottom: 0;
}

.guide-step ul li {
  color: #444;
  font-size: 0.86rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-step ul li i {
  color: #E53935;
  font-size: 0.7rem;
}

.guide-step .step-img {
  width: 40%;
  min-width: 40%;
  background: #fff;
  /* Remove gradient for screenshots */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.guide-step .step-img img {
  width: 100%;
  height: auto;
  /* Important */
  object-fit: contain;
  /* Show full image */
  display: block;
  /* border-radius: 12px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.guide-step:hover .step-img img {
  transform: scale(1.02);
}

.policy-section {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.04), rgba(255, 193, 7, 0.04));
  border: 2px solid rgba(229, 57, 53, 0.15);
  border-radius: 24px;
  padding: 50px 40px;
  margin-top: 40px;
}

.policy-section .policy-badge {
  background: var(--gradient-btn);
  color: #ffffff;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.policy-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
}

.policy-card:hover {
  border-color: rgba(229, 57, 53, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.policy-card .policy-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(229, 57, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.policy-card h3 {
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.policy-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 45px 35px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #ffffff;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card .plan-name {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.pricing-card .plan-price {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.pricing-card .plan-period {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card .plan-features li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.pricing-card .plan-features li i {
  color: #E53935;
}

.pricing-card .plan-features li.disabled {
  opacity: 0.4;
}

.pricing-card .plan-features li.disabled i {
  color: var(--text-muted);
}

.comparison-table {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table table {
  width: 100%;
  margin-bottom: 0;
}

.comparison-table th {
  background: rgba(229, 57, 53, 0.06);
  color: #1a1a2e;
  padding: 16px 20px;
  font-weight: 600;
  border: none;
}

.comparison-table td {
  padding: 14px 20px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: #E53935;
}

.comparison-table .cross {
  color: #ccc;
}

.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e !important;
  margin-bottom: 24px !important;
}

.form-control-custom {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #2d3436;
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
  background: #ffffff;
}

.form-control-custom::placeholder {
  color: #b2bec3;
}

.form-label-custom {
  color: #2d3436;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}

.form-error {
  color: #e17055;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

.map-placeholder {
  background: linear-gradient(135deg, #fff5f5, #fff8e1);
  border: 1px solid rgba(229, 57, 53, 0.08);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: rgba(229, 57, 53, 0.3);
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  border-color: rgba(229, 57, 53, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.contact-info-card .info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(229, 57, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-info-card h5 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.faq-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-accordion .accordion-button {
  background: #ffffff;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 20px 24px;
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(229, 57, 53, 0.04);
  color: var(--primary);
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: var(--text-muted);
  padding: 0 24px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.vision-mission-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition);
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.vision-mission-card .vm-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.vision-mission-card h2 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.vision-mission-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: var(--transition);
}

.roadmap-item:hover {
  border-color: rgba(229, 57, 53, 0.15);
  box-shadow: var(--shadow-card);
}

.roadmap-item .road-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(229, 57, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.roadmap-item h5 {
  color: #1a1a2e;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.roadmap-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.bg-dark-section {
  background: var(--dark-blue);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--gradient-btn);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

.alert-success-custom {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #388E3C;
  border-radius: 12px;
  padding: 16px 20px;
  display: none;
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image {
    margin-top: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-step {
    min-width: 50%;
    margin-bottom: 30px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar .container {
    border-radius: 20px;
    padding: 8px 14px 8px 18px;
  }

  .navbar-brand img {
    height: 42px;
  }

  .navbar-collapse {
    background: #ffffff;
    border-radius: 18px;
    padding: 12px;
    margin-top: 12px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

  .navbar-collapse .navbar-nav {
    gap: 2px;
  }

  .navbar-collapse .nav-link {
    padding: 12px 16px !important;
    font-size: 0.92rem !important;
  }

  .navbar-collapse .nav-cta-btn {
    margin-top: 8px;
    justify-content: center;
    width: 100%;
    padding: 14px 28px !important;
  }

  .policy-section {
    padding: 30px 20px;
  }

  .guide-step {
    padding-left: 30px;
    padding-top: 80px;
  }

  .guide-step .step-num {
    top: 20px;
    left: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom {
    justify-content: center;
  }

  .hero-float-card {
    display: none;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .page-header {
    padding: 130px 0 60px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .guide-step {
    flex-direction: column !important;
  }

  .guide-step .step-img {
    width: 100%;
    min-width: 100%;
    height: 200px;
    order: -1;
  }

  .guide-step .step-content {
    padding: 20px;
  }
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Safari Frame */
.safari-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
  background: #fff;
}

/* Compact Safari Header */
.safari-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  /* ↓ reduced */
  background: linear-gradient(#f6f6f6, #eaeaea);
  border-bottom: 1px solid #ddd;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  gap: 8px;
}

/* Left Section */
.safari-left {
  display: flex;
  align-items: center;
  gap: 8px;
  /* ↓ reduced */
}

.red {
  background: #ff5f57;
}

.yellow {
  background: #febc2e;
}

.green {
  background: #28c840;
}

/* Dots */
.safari-dots {
  display: flex;
  gap: 5px;
}

.safari-dots span {
  width: 9px;
  /* ↓ smaller */
  height: 9px;
  border-radius: 50%;
}

/* Navigation arrows */
.safari-nav {
  display: flex;
  gap: 4px;
}

.nav-btn {
  font-size: 11px;
  /* ↓ smaller */
  color: #666;
}

/* URL Bar */
.safari-url {
  flex: 1;
  margin: 0 10px;
  /* ↓ reduced */
  background: #fff;
  padding: 4px 10px;
  /* ↓ smaller */
  border-radius: 8px;
  font-size: 11px;
  /* ↓ smaller */
  color: #555;
  text-align: center;
  max-width: 420px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right Icons */
.safari-right {
  display: flex;
  gap: 8px;
  font-size: 11px;
  /* ↓ smaller */
  color: #666;
}

  .ity-section {
    font-family: 'Poppins', sans-serif;
    background: #f9f5f0;
    padding: 90px 24px;
    position: relative;
    overflow: hidden;
  }
 
  .ity-container {
    max-width: 1100px;
    margin: 0 auto;
  }
 
  .ity-blob {
    position: absolute;
    right: -80px;
    top: 60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232,77,28,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
 
  .ity-badge {
    display: inline-block;
    background: #fff2ec;
    border: 1.5px solid #e84d1c;
    color: #e84d1c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
  }
 
  .ity-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 18px;
  }
 
  .ity-heading .ity-highlight {
    color: #e84d1c;
  }
 
  .ity-subtext {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666666;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 52px;
  }
 
  .ity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
 
  @media (max-width: 680px) {
    .ity-grid { grid-template-columns: 1fr; }
  }
 
  .ity-card {
    background: #ffffff;
    border: 1.5px solid #ede8e2;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  }
 
  .ity-card:hover {
    border-color: #e84d1c;
    box-shadow: 0 6px 28px rgba(232, 77, 28, 0.10);
    transform: translateY(-3px);
  }
 
  .ity-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: #fff2ec;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1.5px solid #fad8c9;
  }
 
  .ity-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }
 
  .ity-card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #777777;
    line-height: 1.7;
  }
 
  .ity-cta {
    margin-top: 50px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
 
  .ity-btn-primary {
    background: #e84d1c;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
 
  .ity-btn-primary:hover {
    background: #c93e10;
    transform: translateY(-1px);
  }
 
  .ity-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
 
  .ity-btn-secondary:hover {
    border-color: #e84d1c;
    color: #e84d1c;
  }