@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Modern CSS Design System & Variables --- */
:root {
  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  /* Brand Accents */
  --accent-blue: #0052ff;
  --accent-blue-hover: #0045d8;
  --accent-blue-light: #e6eeff;
  --accent-blue-rgb: 0, 82, 255;
  
  --accent-green: #10b981;
  --accent-green-hover: #0d9488;
  --accent-green-light: #ecfdf5;
  --accent-green-rgb: 16, 185, 129;
  
  /* Borders and Shadows */
  --border-light: #e2e8f0;
  --border-focus: #94a3b8;
  --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 10px 30px -10px rgba(0, 82, 255, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01);
  --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Scroll To Top Button */
.scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-blue);
  color: #fff;
  border-radius: 50%;
  display: none;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.scrollToTop .arrowUp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  z-index: 2;
}

.scrollToTop .water {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-green);
  transform: translate(0, 100%);
  transition: transform 0.1s linear;
  z-index: 1;
}

.scrollToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 82, 255, 0.4);
}

/* Custom Cursor - Disabled */
.cursor-effect {
  display: none !important;
}

/* --- Section Layouts --- */
section {
  padding: 80px 0;
  position: relative;
}

section.bg-light {
  background-color: var(--bg-secondary);
}

/* --- 1.1 Sticky Header --- */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

header .navbar {
  padding: 15px 0 !important;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px !important;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
}

/* Dropdown Menu styling */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  min-width: 220px;
  overflow: hidden;
  padding: 8px 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transform: translateY(10px);
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.navbar .dropdown-item {
  font-size: 0.9rem;
  padding: 10px 20px;
  font-weight: 500;
  color: var(--text-secondary);
}

.navbar .dropdown-item:hover {
  background-color: var(--bg-secondary);
  color: var(--accent-blue);
}

.navbar-collapse {
  flex-grow: 0;
}

/* Modern Buttons */
.btn-primary-custom {
  background-color: var(--accent-blue);
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  border: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.3);
}

.btn-secondary-custom {
  background-color: #ffffff;
  color: var(--accent-blue) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-secondary-custom:hover {
  border-color: var(--accent-blue);
  background-color: var(--accent-blue-light);
  transform: translateY(-2px);
}

.btn-login-custom {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 20px;
  transition: var(--transition-smooth);
}

.btn-login-custom:hover {
  color: var(--accent-blue);
}

/* Mobile Aside Menu button */
.open-aside {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  display: none;
}

@media (max-width: 991px) {
  .open-aside {
    display: block;
  }
}

/* --- Aside navigation bar (Mobile) --- */
.right-sidbar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 260px;
  z-index: 1050;
  left: -265px;
  background-color: #ffffff;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 20px;
  transition: 0.4s ease;
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.right-sidbar .nav-item {
  padding: 4px 15px;
}

.right-sidbar .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 12px;
  display: block;
  border-radius: var(--radius-sm);
}

.right-sidbar .nav-link:hover {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
}

.side-nav-logo {
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid var(--border-light);
}

.side-nav-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.right-sidbar .fa-xmark {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* --- Hero Section --- */
.Hero {
  padding: 100px 0 80px 0;
  background: radial-gradient(circle at 80% 20%, rgba(var(--accent-blue-rgb), 0.04) 0%, rgba(255, 255, 255, 0) 60%);
  overflow: hidden;
}

.Hero-Tag {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.Hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.Hero h1 span {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Hero p.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

/* Review Badge */
.Hero-Reviews {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.Hero-Reviews .review-imgs {
  display: flex;
  align-items: center;
}

.Hero-Reviews .review-imgs img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
}

.Hero-Reviews .review-imgs img:first-child {
  margin-left: 0;
}

.Hero-Reviews .review-count {
  background-color: var(--text-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Hero-Reviews .review-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.Hero-Reviews .review-text span.number {
  color: var(--accent-blue);
  font-weight: 800;
}

/* Dashboard Mockup Preview Card */
.Dashboard-Preview {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.Dashboard-Preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
}

.Dashboard-Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.Dashboard-Title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.Dashboard-Status {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.Dashboard-Status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.Dashboard-Grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.Metric-Card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: var(--transition-smooth);
}

.Metric-Card:hover {
  background: var(--bg-primary);
  border-color: var(--accent-blue);
}

.Metric-Label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.Metric-Value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.Metric-Trend {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.Metric-Trend.up {
  color: var(--accent-green);
}

.Metric-Trend.neutral {
  color: var(--accent-blue);
}

/* SVG Line Chart in Dashboard */
.Dashboard-Chart {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-top: 16px;
}

.Chart-Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.Chart-Title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.Chart-Legend {
  font-size: 0.75rem;
  color: var(--accent-blue);
  font-weight: 600;
}

/* Floating UPI Symbol badge */
.Floating-Badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: float-slow 4s ease-in-out infinite;
}

.Floating-Badge img {
  height: 24px;
  width: auto;
}

.Floating-Badge span {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.85rem;
}

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

/* --- 1.3 Partners Section --- */
.Partners {
  padding: 40px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.Partners h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
}

.PartnersSlider {
  margin-top: 25px;
}

.PartnersSlider div a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 60px;
}

.PartnersSlider img {
  max-height: 35px;
  max-width: 130px;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.PartnersSlider div a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Trust Badges Row --- */
.Trust-Badges {
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
  margin-top: 60px;
}

.Trust-Badge-Item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.Trust-Icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.Trust-Badge-Item:nth-child(even) .Trust-Icon {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.Trust-Content h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.Trust-Content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- 1.4 Features Section --- */
.Section-Header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.Section-Header .section-tag {
  color: var(--accent-blue);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.Section-Header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.Section-Header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.Feature-Card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.Feature-Card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-card);
}

.Feature-Icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.Feature-Card:hover .Feature-Icon {
  background-color: var(--accent-blue);
  color: #ffffff;
}

.Feature-Card.accent-green .Feature-Icon {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.Feature-Card.accent-green:hover .Feature-Icon {
  background-color: var(--accent-green);
  color: #ffffff;
}

.Feature-Card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.Feature-Card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- 1.5 How It Works Section --- */
.Steps-Container {
  position: relative;
  margin-top: 40px;
}

/* Connecting Line on Desktop */
@media (min-width: 992px) {
  .Steps-Container::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-light);
    z-index: 1;
  }
}

.Step-Card {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.Step-Number {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.Step-Card:hover .Step-Number {
  background-color: var(--accent-blue);
  color: #ffffff;
  transform: scale(1.1);
}

.Step-Card:nth-child(even) .Step-Number {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.Step-Card:nth-child(even):hover .Step-Number {
  background-color: var(--accent-green);
  color: #ffffff;
}

.Step-Card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.Step-Card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- 1.6 Pricing Section --- */
.Pricing-Card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: var(--transition-smooth);
}

.Pricing-Card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--accent-blue);
}

.Pricing-Card.popular {
  border: 2px solid var(--accent-blue);
  transform: scale(1.03);
}

.Pricing-Card.popular:hover {
  box-shadow: 0 20px 45px -10px rgba(0, 82, 255, 0.15);
}

.Pricing-Badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.Pricing-Card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.Pricing-Desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.Pricing-Cost {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.Pricing-Cost .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.Pricing-Cost .period {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.Pricing-Features {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-bottom: 36px;
}

.Pricing-Features li {
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.Pricing-Features li i {
  color: var(--accent-green);
  font-size: 1rem;
}

.Pricing-Features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.Pricing-Features li.disabled i {
  color: var(--text-muted);
}

/* --- 1.7 Security Section --- */
.Security-Card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
}

.Security-List {
  display: flex;
  flex-column: gap-4;
  flex-direction: column;
}

.Security-List-Item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.Security-Check-Icon {
  width: 36px;
  height: 36px;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.Security-List-Item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.Security-List-Item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- 1.8 API Integration Section --- */
.API-Doc-Brief {
  padding-right: 30px;
}

.API-Doc-Brief h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.API-Doc-Brief p {
  margin-bottom: 24px;
}

.API-Feature-List li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.API-Feature-List li i {
  color: var(--accent-blue);
}

/* Code Editor Card */
.Code-Editor {
  background-color: #0f172a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.Code-Editor-Header {
  background-color: #1e293b;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Editor-Dots {
  display: flex;
  gap: 8px;
}

.Editor-Dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.Editor-Dot.red { background-color: #ef4444; }
.Editor-Dot.yellow { background-color: #f59e0b; }
.Editor-Dot.green { background-color: #10b981; }

.Editor-Tabs {
  display: flex;
  gap: 4px;
}

.Editor-Tab {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.Editor-Tab.active, .Editor-Tab:hover {
  background-color: #334155;
  color: #ffffff;
}

.Code-Container {
  padding: 24px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  overflow-x: auto;
  color: #cbd5e1;
}

.Code-Block {
  display: none;
}

.Code-Block.active {
  display: block;
}

/* Syntax Highlighting Mockup Colors */
.code-keyword { color: #f472b6; }
.code-string { color: #34d399; }
.code-function { color: #60a5fa; }
.code-variable { color: #fbbf24; }
.code-comment { color: #64748b; }

/* --- 1.9 FAQs Section --- */
.FAQs .accordion-item {
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 16px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.FAQs .accordion-item:hover {
  border-color: var(--accent-blue) !important;
}

.FAQs .accordion-button {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
  padding: 20px 24px;
  background-color: #ffffff;
  box-shadow: none !important;
}

.FAQs .accordion-button:not(.collapsed) {
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
}

.FAQs .accordion-body {
  padding: 20px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-light);
}

.FAQ-Girl-Container img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
  width: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.FAQ-Girl-Container img:hover {
  transform: scale(1.02);
}

/* --- 1.10 Contact / Support Section --- */
.Contact-Info-Card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow-subtle);
}

.Contact-Method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.Contact-Icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.Contact-Method.whatsapp .Contact-Icon {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.Contact-Method-Details h6 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.Contact-Method-Details p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}

.Contact-Method-Details a:hover {
  color: var(--accent-blue);
}

/* Contact Form styles */
.Contact-Form-Wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-group-custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  font-family: var(--font-primary);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--accent-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(var(--accent-blue-rgb), 0.1);
}

/* --- 1.12 Footer --- */
footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 20px 0;
  color: var(--text-secondary);
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-blue);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Responsive Grid Helpers */
.gap-24 {
  gap: 24px;
}

/* Preloader Overlay */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.preloader-logo {
  width: 50px;
  height: 50px;
  border: 4px solid var(--accent-blue-light);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}