/**
 * WhiteBooks Design System - Optimized CSS
 * 
 * REFACTORING SUMMARY:
 * 1. Merged duplicate gradient definitions into CSS variables
 * 2. Consolidated repeated color values (#ff006e, #ff2e7b, #d33568, etc.)
 * 3. Removed duplicate shimmer animation (was defined twice)
 * 4. Merged similar card styles (.stat-card, .pricing-card, .testimonial-card, etc.)
 * 5. Consolidated repeated flex/grid patterns into utility classes
 * 6. Removed redundant vendor prefixes where not needed
 * 7. Organized by component with clear section headers
 * 8. Fixed inconsistent spacing and formatting
 * 9. Removed commented-out code
 * 10. Added proper CSS custom properties for maintainability
 */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */
:root {
  /* Primary Colors */
  --color-primary: #d33568;
  --color-primary-light: #ff2e7b;
  --color-primary-lighter: #ff6bb0;
  --color-primary-pale: #ff8abf;
  --color-primary-dark: #d33568;
  
  /* Secondary Colors */
  --color-secondary: #8338ec;
  --color-secondary-light: #a855f7;
  
  /* Neutral Colors */
  --color-dark: #050509;
  --color-dark-alt: #0e0e12;
  --color-panel: #1a1a1a;
  --color-panel-alt: #111827;
  --color-border: #333;
  --color-border-light: #e5e7eb;
  --color-muted: #6b7280;
  --color-text-light: #999;
  --color-text-lighter: #9ca3af;
  --color-white: #ffffff;
  
  /* Accent Colors */
  --color-accent: #60a5fa;
  --color-accent-weak: rgba(96, 165, 250, 0.4);
  --color-warning: #f97316;
  --color-warning-bg: rgba(234, 88, 12, 0.1);
  --color-warning-text: #ea580c;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-pale));
  --gradient-primary-dark: linear-gradient(135deg, var(--color-primary-dark), #FFC4A0);
  --gradient-secondary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-card: linear-gradient(135deg, var(--color-panel), #2a1a2a);
  --gradient-featured: linear-gradient(135deg, #2a1a2a, #1a1a2a);
  
  /* Shadows */
  --shadow-primary: 0 10px 25px rgba(236, 72, 153, 0.4);
  --shadow-primary-hover: 0 14px 35px rgba(236, 72, 153, 0.5);
  --shadow-card: 0 8px 20px rgba(148, 163, 184, 0.25);
  --shadow-card-hover: 0 14px 32px rgba(148, 163, 184, 0.35);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 999px;
  
  /* Transitions */
  --transition-fast: 0.12s ease;
  --transition-normal: 0.3s ease;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* Flex utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text gradient utility */
.text-gradient-primary {
  background: var(--gradient-primary-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

@keyframes moveGlowLeft {
  0% { transform: translate(0px, -40px) scale(1); opacity: 0.7; }
  50% { transform: translate(40px, 30px) scale(1.2); opacity: 0.9; }
  100% { transform: translate(0px, 60px) scale(1); opacity: 0.7; }
}

@keyframes moveGlowRight {
  0% { transform: translate(0px, -40px) scale(1); opacity: 0.7; }
  50% { transform: translate(-40px, 30px) scale(1.2); opacity: 0.9; }
  100% { transform: translate(0px, 60px) scale(1); opacity: 0.7; }
}

@keyframes waveColors {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/*@keyframes waveColors {
  0% { background-position: 0% 20%, 80% 20%, 40% 80%; }
  50% { background-position: 20% 60%, 60% 40%, 70% 30%; }
  100% { background-position: 60% 20%, 40% 80%, 20% 40%; }
}*/

@keyframes stackMove1 {
  0% { transform: scale(1.1) translate(100px, -50px); opacity: 0; }
  40% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { transform: scale(0.9) translate(5px, 5px); opacity: 1; }
}

@keyframes stackMove2 {
  0% { transform: scale(1.1) translate(100px, -50px); opacity: 0; }
  40% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { transform: scale(0.85) translate(800px, 50px); opacity: 1; }
}

@keyframes stackMove3 {
  0% { transform: scale(1.1) translate(100px, -50px); opacity: 0; }
  40% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { transform: scale(0.8) translate(1000px, 100px); opacity: 1; }
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes rotate {
  from { transform: translate(-50%, -50%) scale(1.4) rotate(0turn); }
  to { transform: translate(-50%, -50%) scale(1.4) rotate(1turn); }
}

@media (max-width: 600px) {
  @keyframes stackMove2 {
    0% { transform: scale(1.1) translate(100px, -50px); opacity: 0; }
    40% { opacity: 1; transform: scale(1) translate(0, 0); }
    100% { transform: scale(0.85) translate(300px, 50px); opacity: 1; }
  }
  @keyframes stackMove3 {
    0% { transform: scale(1.1) translate(100px, -50px); opacity: 0; }
    40% { opacity: 1; transform: scale(1) translate(0, 0); }
    100% { transform: scale(0.8) translate(350px, 100px); opacity: 1; }
  }
}

/* ==========================================================================
   GLOW EFFECTS
   ========================================================================== */
.glow {
  position: absolute;
  width: 200px;
  height: 300px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3), rgba(255, 0, 150, 0));
  filter: blur(20px);
  animation: moveGlowLeft 12s ease-in-out infinite alternate;
}

.glow.left {
  left: -150px;
  top: 10%;
  animation-name: moveGlowLeft;
}

.glow.right {
  right: -150px;
  top: 10%;
  animation-name: moveGlowRight;
  animation-delay: 2s;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-white), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* Dashboard Preview */
.dashboard-preview {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 20px;
}

.dashboard-preview img {
  border-radius: var(--radius-md);
}

/* Stack Animation */
.stack-container {
  position: relative;
  height: 640px;
}

.stack-img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform-origin: center;
  opacity: 0;
}

.img1 { animation: stackMove1 6s ease-in-out forwards; z-index: 1; width: 100%; }
.img2 { animation: stackMove2 6s ease-in-out forwards; animation-delay: 0.5s; z-index: 2; width: 35%; }
.img3 { animation: stackMove3 6s ease-in-out forwards; animation-delay: 1s; z-index: 3; width: 40%; }

.hero-gradient-overlay{
    height: 200px;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 30%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    z-index: 3;
    width: 100%;
    bottom: -10px;
}

@media (max-width: 600px) {
  .stack-container {
    height: 260px;
  }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 80px 0;
}

.stat-card {
  background: var(--color-panel);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features {
  margin: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--gradient-card);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--color-text-light);
}

    /* Ensure the stacking section and all its parents allow sticky */
    .wbs-stack-section,
    .wbs-stack-container,
    .wbs-stack-layout,
    .wbs-stack-content {
        overflow: visible !important;
    }
    
    /* Reinforce sticky sidebar */
    .wbs-stack-sidebar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 100px;
        align-self: flex-start !important;
        height: fit-content !important;
    }
    
    .wbs-stack-layout {
        align-items: flex-start !important;
    }
    
    /* =====================================================
       STACKING CARDS - CLEAN SOLID CARDS
       ===================================================== */
    .wbs-stack-cards {
        position: relative;
    }
    
    .wbs-stack-card {
        position: sticky;
        top: 0;
        background: #000;
    }
    
    /* CRITICAL: Ensure cards are SOLID and don't show through */
    .wbs-stack-card-inner {
        /*background: #ffffff !important;*/ /* Solid white background */
        transform-origin: center top;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        overflow: hidden;
        /*background: radial-gradient(40% 40% at 10% 30%, #5A450F, transparent 40%), radial-gradient(40% 40% at 80% 40%, #50164A, transparent 40%), radial-gradient(40% 40% at 50% 80%, #663B42, transparent 40%);
        background-size: 200% 200%;*/
        background: linear-gradient(120deg, #5A450F, #50164A, #000000, #663B42);
        background-size: 200% 200%;
        animation: waveColors 5s ease-in-out infinite alternate;
    }
    
    /* Ensure the visual section is also solid */
    .wbs-stack-card-visual {
        /*background: linear-gradient(135deg, #d33568 0%, #8b1e4a 100%) !important;*/
        position: relative;
    }
    
    /* Ensure body section has solid background */
    .wbs-stack-card-body {
        /*background: #ffffff !important;*/
    }
    
    /* =====================================================
       TEMPLATE THUMBNAIL STYLES - FIX
       ===================================================== */
    .template-thumb {
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        border-radius: 8px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.1);
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .template-thumb:hover {
        border-color: rgba(255, 0, 110, 0.5);
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    .template-thumb.active {
        border-color: #ff006e;
        background: rgba(255, 0, 110, 0.2);
        box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
    }
    
    .template-thumb::after {
        content: attr(data-template);
        display: block;
        text-align: center;
        font-size: 12px;
        color: #fff;
        font-weight: 500;
    }
    
    /* Preview image transition */
    #templatePreviewImg {
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    #templatePreviewImg:hover {
        position: relative;
        z-index: 8;
    }
    
    #bigPreview {
        transition: opacity 0.2s ease;
    }
    
    /* =====================================================
       BILLING TOGGLE STYLES - FIX
       ===================================================== */
    .billing-btn {
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 10px 20px;
        border: none;
        background: transparent;
        color: #666;
        font-weight: 500;
        border-radius: 25px;
    }
    
    .billing-btn:hover {
        color: #333;
    }
    
    .billing-btn.active {
        background: linear-gradient(135deg, #ff006e, #ff2e7b);
        color: #fff;
        box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
    }
    
    .billing-switch {
        display: flex;
        gap: 5px;
        background: #f0f0f0;
        padding: 5px;
        border-radius: 30px;
    }
    
    /* Price animation */
    .plan-price {
        transition: opacity 0.15s ease, transform 0.15s ease;
    }
    
    .plan-period {
        transition: opacity 0.15s ease;
    }

/* ==========================================================================
   PRICING SECTION (Global)
   ========================================================================== */
.pricing {
  margin: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--color-panel);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition-normal);
}

.pricing-card:hover {
  transform: scale(1.05);
  border-color: var(--color-primary);
}

.pricing-card.featured {
  background: var(--gradient-featured);
  border-color: var(--color-primary);
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-primary);
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--color-text-light);
}

.pricing-features li::before {
  content: "✓ ";
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 10px;
}

/* ==========================================================================
   TESTIMONIALS SECTION (Global)
   ========================================================================== */
.testimonials {
  margin: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--color-panel);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #ccc;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  /*background: var(--gradient-featured);*/
  border-radius: 30px;
  /*margin: 100px 0;*/
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-size: 18px;
}

/* ==========================================================================
   SIDEBAR & APP LAYOUT - Sticky Scroll Navigation
   ========================================================================== */

/* Main section wrapper - controls when section sticks and unsticks */
.features-tabs-section {
  position: relative;
}

/* App container with grid layout */
.app {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: auto;
  position: relative;
}

/* Sidebar wrapper - handles sticky positioning */
.sidebar-wrapper {
  position: relative;
  height: fit-content;
}

/* Sidebar - sticky behavior */
.sidebar {
  position: sticky;
  top: 20px; /* Offset from top when stuck */
  height: auto;
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 24px 16px;
  background: var(--color-panel);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When section is complete, sidebar fades slightly */
.sidebar.section-complete {
  opacity: 0.7;
}

.brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.note {
  color: var(--color-muted);
  font-size: 12px;
  margin-bottom: 16px;
}

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

.tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--color-muted);
  text-decoration: none;
  user-select: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
}

.tab.active {
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.08));
  color: #e2e8f0;
  border-color: var(--color-accent-weak);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15) inset;
}

/* Completed tab style */
.tab.completed {
  color: #22c55e;
}

.tab.completed .dot {
  background: #22c55e;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-accent-weak);
  transition: background 0.2s ease;
}

.tab.active .dot {
  background: var(--color-accent);
}

/* Content Panel - scrollable area */
.content {
  padding: 32px;
  min-height: auto;
}

/* Individual panel sections */
section.panel {
  min-height: 80vh; /* Each panel takes significant viewport height */
  scroll-margin-top: 100px;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

section.panel:last-child {
  margin-bottom: 0;
}

.panel h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.panel .desc {
  color: var(--color-muted);
  margin-bottom: 16px;
}

.panel .box {
  height: 50vh;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.panel .box:last-child {
  margin-bottom: 0;
}

/* Progress Bar - shows reading progress */
.progress-wrap {
  position: sticky;
  top: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 16px;
  z-index: 10;
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), #22d3ee);
  transition: width 120ms linear;
}

/* Section progress indicator on sidebar */
.section-progress {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-progress-label {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.section-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transition: width 150ms ease-out;
}

/* ==========================================================================
   CARD COMPONENT (Generic)
   ========================================================================== */
/*.card {
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: var(--color-dark-alt);
  margin-bottom: 20px;
}*/

.wave-colors {
  position: absolute;
  inset: -40% -20%;
  filter: blur(45px);
  opacity: 0.85;
  mix-blend-mode: screen;
  background:
    radial-gradient(40% 40% at 10% 30%, #5A450F, transparent 40%),
    radial-gradient(40% 40% at 80% 40%, #50164A, transparent 40%),
    radial-gradient(40% 40% at 50% 80%, #663B42, transparent 40%);
  background-size: 200% 200%;
  animation: waveColors 5s ease-in-out infinite alternate;
}

/*.card .wave-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}*/

/* ==========================================================================
   REDAYSCALE CARDS
   ========================================================================== */
.redayscalecard-1,
.redayscalecard-2 {
  padding: 50px 20px;
  text-align: center;
}

.redayscalecard-1 {
  background: linear-gradient(0deg, var(--color-primary-dark) 0%, transparent 100%);
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
}

.redayscalecard-2 {
  background: linear-gradient(0deg, transparent 0%, var(--color-primary-dark) 100%);
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
}

.redayscalecard-1 h4,
.redayscalecard-2 h4 {
  margin-bottom: 0;
}

/* Diagonal Boxes */
.box-centered {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.daigonal-boxes {
  width: 150px;
  height: 150px;
  rotate: 45deg;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-md);
}

.daignal-inseide-texr {
  rotate: -45deg;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}

.daignal-inseide-texr p {
  font-size: 14px;
  margin-bottom: 0 !important;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
}

@media (max-width: 600px) {
  .box-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
  }
  .redayscalecard-1 {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .redayscalecard-2 {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

}
/* ==========================================================================
   VIDEO TAB SECTION
   ========================================================================== */
.videotabsection .hero-header {
  text-align: left;
  margin-bottom: 32px;
}

.videotabsection .hero-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.videotabsection .hero-subtitle {
  max-width: 640px;
  font-size: 14px;
  color: var(--color-muted);
}

.videotabsection .hero-card {
  background: linear-gradient(0deg, #B29482, var(--color-white));
  border-radius: var(--radius-2xl);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  padding: 24px 24px 28px;
}

.videotabsection .tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--color-border-light);
  margin: 0 24px 16px;
  flex-direction: row;
}

.videotabsection .tab-btn {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: none;
  color: var(--color-muted);
  cursor: pointer;
  white-space: nowrap;
}

.videotabsection .tab-btn.active {
  color: var(--color-panel-alt);
}

.videotabsection .tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #fc3c7f, #f5b1ff);
}

.videotabsection .hero-body {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 16px;
  align-items: stretch;
}

.videotabsection .hero-left {
  padding: 32px 32px 40px;
  border-radius: var(--radius-xl);
}

.videotabsection .hero-left h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}

.videotabsection .hero-left h2 span {
  color: var(--color-primary-dark);
}

.videotabsection .hero-left p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 28px;
  max-width: 260px;
}

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

/* Shared Button Styles */
.videotabsection .btn,
.print-templete-section .btn {
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.videotabsection .btn-primary,
.print-templete-section .btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.videotabsection .btn-primary:hover,
.print-templete-section .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary-hover);
}

.videotabsection .btn-outline {
  background: var(--color-white);
  color: var(--color-panel-alt);
  border: 1px solid var(--color-border-light);
}

.videotabsection .btn-outline:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

/* Right Side Panel */
.videotabsection .hero-right {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f9fafb, #fef2ff);
  border: 1px solid #f3e6ff;
  overflow: hidden;
}

.videotabsection .mock-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.videotabsection .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-light);
}

.videotabsection .mock-screen {
  border-radius: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  position: relative;
  padding: 10px;
  min-height: 220px;
}

/* Shared shimmer placeholder */
.videotabsection .mock-placeholder,
.print-templete-section .invoice-placeholder {
  width: 100%;
  border-radius: var(--radius-md);
  background-image: linear-gradient(90deg, #f3f4f6 0px, #e5e7eb 80px, #f3f4f6 160px);
  background-size: 200px 100%;
  animation: shimmer 1.4s infinite linear;
  position: relative;
  overflow: hidden;
}

.videotabsection .mock-placeholder {
  /*height: 180px;*/
}

.print-templete-section .invoice-placeholder {
  /*height: 280px;*/
  border: 1px solid var(--color-border-light);
}

/* Play Button */
.videotabsection .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle at 30% 20%, #ffe0f0, var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.6);
  cursor: pointer;
}

.videotabsection .play-button::before {
  content: "";
  display: block;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--color-white);
  margin-left: 3px;
}

.videotabsection .play-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  font-size: 11px;
  border-radius: var(--radius-full);
  background: rgba(17, 24, 39, 0.85);
  color: #f9fafb;
}

.videotabsection .tab-desc {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 10px;
}

.videotabsection .tab-panel {
  display: none;
}

.videotabsection .tab-panel.active {
  display: block;
}

/* ==========================================================================
   PRINT TEMPLATE SECTION
   ========================================================================== */
.print-templete-section {
  background: #D33568;
  background: radial-gradient(circle, rgba(211, 53, 104, 1) 0%, rgba(79, 31, 46, 0) 50%);
}

.print-templete-section .invoice-copy h1 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.print-templete-section .invoice-copy h1 span {
  color: #ff4b93;
}

.print-templete-section .invoice-copy p {
  font-size: 14px;
  color: #e5e7eb;
  max-width: 420px;
  margin-bottom: 22px;
}

.print-templete-section
.print-templete-section .feature-list {
  list-style: none;
  margin-top: 6px;
}

.print-templete-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #f3f4f6;
}

.print-templete-section .feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.print-templete-section .invoice-card {
  position: relative;
  border-radius: 18px 18px 8px 8px;
  /*background: var(--color-white);*/
  color: var(--color-panel-alt);
  padding: 22px 18px 26px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
}

.print-templete-section .invoice-label,
.print-templete-section .invoice-amount {
  position: absolute;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
}

.print-templete-section .invoice-label {
  top: 14px;
  left: 14px;
  background: rgba(17, 24, 39, 0.82);
  color: #f9fafb;
}

.print-templete-section .invoice-amount {
  bottom: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 600;
  background: var(--color-warning-bg);
  color: var(--color-warning-text);
}

/* Template Strip */
/*.print-templete-section .template-strip {
  position: absolute;
  bottom: 50px;
  margin-top: 22px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.25), transparent 55%), var(--color-dark);
  padding: 14px 20px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 2fr);
  gap: 18px;
  align-items: center;
}*/

/*.print-templete-section .template-big-preview {
  border-radius: var(--radius-md);
  background: var(--color-panel-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-lighter);
  height: 150px;
}*/

/*.print-templete-section .template-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: flex-end;
}

.print-templete-section .template-thumb {
  border-radius: var(--radius-sm);
  height: 85px;
  background: #f3f4f6;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.print-templete-section .template-thumb::after {
  content: "Template";
  position: absolute;
  left: 6px;
  bottom: 4px;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: var(--radius-full);
  background: rgba(17, 24, 39, 0.84);
  color: #f9fafb;
}

.print-templete-section .template-thumb.active {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.3);
  transform: translateY(-2px);
}*/

/*.print-templete-section .template-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}*/

/*.print-templete-section .btn {
  padding: 9px 18px;
  font-size: 12px;
}*/

/*.print-templete-section .btn-secondary {
  background: var(--color-panel-alt);
  color: #f9fafb;
  border: 1px solid #4b5563;
}*/

/*.print-templete-section .btn-secondary:hover {
  background: #020617;
  transform: translateY(-1px);
}*/

/*.print-templete-section .current-template-name {
  font-size: 12px;
  color: #f9fafb;
  opacity: 0.85;
}
*/
.print-templete-section .template-strip {
  position: absolute;
  bottom: 50px;
  left: 0px;
  margin-top: 22px;
  width: 100%;
  border-radius: var(--radius-lg);
  /*background: #ffffff;*/
  /*background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.25), transparent 55%), var(--color-dark);*/
  background: #D33568;
  background: radial-gradient(circle, rgba(211, 53, 104, 1) 0%, rgba(79, 31, 46, 1) 70%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 14px 20px 18px;

  /* IMPORTANT: no grid, just flex */
  display: flex;
  align-items: center;
}

/* Row of 4 cards – fill full width */
.print-templete-section .template-thumb-row {
  flex: 1;                 /* take all available width */
  display: flex;
  gap: 14px;               /* space between cards */
}

/* Each card stretches equally */
.print-templete-section .template-thumb {
  flex: 1;                 /* all 4 equal width */
  border-radius: var(--radius-sm);
  height: 230px;
  background: #f3f4f6;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.print-templete-section .template-thumb::after {
  content: "Template";
  position: absolute;
  left: 6px;
  bottom: 4px;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: var(--radius-full);
  background: rgba(17, 24, 39, 0.84);
  color: #f9fafb;
}

.print-templete-section .template-thumb.active {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   PAGE PRICING SECTION
   ========================================================================== */
.page-pricing-page .pricing-wrapper {
  min-height: 100vh;
  padding: 60px 16px 80px;
  display: flex;
  justify-content: center;
}

.page-pricing-page .pricing-inner {
  position: relative;
}

.page-pricing-page .pricing-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.page-pricing-page .pricing-title-block h1 {
  font-size: 28px;
  margin-bottom: 4px;
  color: #000;
}

.page-pricing-page .pricing-title-block p {
  font-size: 13px;
  color: var(--color-muted);
}

.page-pricing-page .billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--color-muted);
}

.page-pricing-page .save-pill {
  border-radius: var(--radius-full);
  padding: 5px 12px;
  background: #fef3c7;
  color: #92400e;
  font-weight: 500;
  white-space: nowrap;
}

.page-pricing-page .billing-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: var(--radius-full);
  background: #f3f4f6;
}

.page-pricing-page .billing-btn {
  border: none;
  background: transparent;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--color-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-pricing-page .billing-btn.active {
  background: var(--gradient-primary);
  color: var(--color-white);
}

/* Plan Cards */
.page-pricing-page .pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.page-pricing-page .plan-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 24px 18px 22px;
  box-shadow: 0 0 5px rgba(148, 163, 184, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
}

.page-pricing-page .plan-card.highlight,
.page-pricing-page .plan-card:hover {
  border: 1px solid var(--color-primary-light);
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(236, 72, 153, 0.35);
  background: var(--color-white);
}

.page-pricing-page .badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-panel-alt);
  color: #f9fafb;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-pricing-page .plan-price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 2px;
}

.page-pricing-page .plan-period {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.page-pricing-page .plan-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.page-pricing-page .plan-desc {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 12px;
  min-height: 40px;
}

.page-pricing-page .plan-features {
  list-style: none;
  font-size: 11px;
  color: #4b5563;
  margin-bottom: 16px;
}

.page-pricing-page .plan-features li {
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.page-pricing-page .plan-features span.icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary-light), #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--color-white);
  flex-shrink: 0;
  margin-top: 1px;
}

.page-pricing-page .plan-actions {
  margin-top: auto;
}

.page-pricing-page .plan-btn {
  width: 100%;
  border-radius: var(--radius-full);
  border: none;
  padding: 9px 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: #4b5563;
  color: #f9fafb;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.page-pricing-page .plan-card.highlight .plan-btn {
  background: var(--gradient-primary);
}

.page-pricing-page .plan-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(148, 163, 184, 0.35);
}

.page-pricing-page .plan-card.highlight .plan-btn:hover {
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.65);
}

/* Footer */
.page-pricing-page .pricing-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  font-size: 12px;
}

.page-pricing-page .link-explore {
  color: #ec4899;
  text-decoration: none;
  font-weight: 500;
}

.page-pricing-page .link-explore:hover {
  text-decoration: underline;
}

.page-pricing-page .tax-note {
  color: var(--color-muted);
}

/* ==========================================================================
   TESTIMONIAL SECTION PAGE
   ========================================================================== */
.testmonial-section-page .testimonials-inner {
  padding: 32px 32px 40px;
  position: relative;
  overflow: hidden;
}

.testmonial-section-page .testimonials-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  height: 20%;
  background-image: repeating-linear-gradient(to right, rgba(236, 72, 153, 0.22), rgba(236, 72, 153, 0.22) 1px, transparent 1px, transparent 10px);
  opacity: 0.9;
  transform: skewY(-10deg);
  pointer-events: none;
}

.testmonial-section-page .testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 32px;
  align-items: flex-start;
}

.testmonial-section-page .testimonials-heading h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #000;
}

.testmonial-section-page .testimonials-heading p {
  max-width: 260px;
  font-size: 13px;
  color: var(--color-muted);
}

.testmonial-section-page .testimonials-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testmonial-section-page .testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.testmonial-section-page .testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.testmonial-section-page .stars {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--color-warning);
}

.testmonial-section-page .testimonial-text {
  font-size: 13px;
  color: var(--color-panel-alt);
}

.testmonial-section-page .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.testmonial-section-page .avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 30% 20%, #fee2e2, #ec4899);
  overflow: hidden;
  flex-shrink: 0;
}

.testmonial-section-page .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testmonial-section-page .author-block {
  display: flex;
  flex-direction: column;
}

.testmonial-section-page .author-name {
  font-size: 13px;
  font-weight: 600;
}

.testmonial-section-page .author-role {
  font-size: 11px;
  color: var(--color-muted);
}

/* ==========================================================================
   COMPLIANCE SECTION PAGE
   ========================================================================== */
.compliance-section-page .kpi-wrapper {
  width: 100%;
}

.compliance-section-page .kpi-card {
  background: var(--color-dark);
  border-radius: var(--radius-3xl);
  padding: 40px 40px 32px;
  color: var(--color-white);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
  column-gap: 32px;
  position: relative;
  overflow: hidden;
}

.compliance-section-page .kpi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, #ff7bb6 0, transparent 55%);
  opacity: 0.18;
  pointer-events: none;
}

.compliance-section-page .kpi-left-title {
  position: relative;
  z-index: 1;
}

.compliance-section-page .kpi-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 36px;
  background: var(--gradient-primary-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.compliance-section-page .kpi-heading span {
  display: block;
  background: var(--gradient-primary-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.compliance-section-page .kpi-bars {
  position: relative;
  width: 100%;
  height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.compliance-section-page .kpi-bar {
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  background: var(--color-dark);
  overflow: hidden;
  position: relative;
  width: 10px;
}
.compliance-section-page .kpi-bar-25 { height: 25%; }
.compliance-section-page .kpi-bar-50 { height: 50%; }
.compliance-section-page .kpi-bar-35 { height: 35%; }
.compliance-section-page .kpi-bar-70 { height: 70%; }
.compliance-section-page .kpi-bar-40 { height: 40%; }
.compliance-section-page .kpi-bar-80 { height: 80%; }
.compliance-section-page .kpi-bar-55 { height: 55%; }
.compliance-section-page .kpi-bar-65 { height: 65%; }
.compliance-section-page .kpi-bar-30 { height: 30%; }
.compliance-section-page .kpi-bar-45 { height: 45%; }
.compliance-section-page .kpi-bar-80 { height: 80%; }
.compliance-section-page .kpi-bar-55 { height: 55%; }
.compliance-section-page .kpi-bar-65 { height: 65%; }
.compliance-section-page .kpi-bar-30 { height: 30%; }
.compliance-section-page .kpi-bar-45 { height: 45%; }

.compliance-section-page .kpi-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--h, 100%);
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  background: linear-gradient(to top, #ff2f7b, #ffb7ff);
  opacity: 0.4;
  width: 10px;
}

.compliance-section-page .kpi-right {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
}

.compliance-section-page .kpi-tile {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--color-dark);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.compliance-section-page .kpi-tile:nth-child(4) {
  grid-column: 1 / 3;
}

.compliance-section-page .kpi-tile:nth-child(5) {
  grid-column: 3 / 4;
}

.compliance-section-page .kpi-number-small {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.compliance-section-page .kpi-number-big {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  background: var(--gradient-primary-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.compliance-section-page .kpi-label-main {
  font-size: 13px;
  font-weight: 500;
}

.compliance-section-page .kpi-label-sub {
  font-size: 11px;
  margin-top: 3px;
  color: var(--color-text-lighter);
}

/* ==========================================================================
   TOP TWO SECTION
   ========================================================================== */
.top-two-section .section-strip {
  background: var(--color-dark);
  padding: 40px 16px 50px;
}

.top-two-section .strip-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.top-two-section .top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /*gap: 20px;*/
  margin-bottom: 24px;
  margin-top: 10px;
}

.top-two-section .cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 10px;
}

.top-two-section .cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #e5e7eb;
  opacity: 0.9;
}

.top-two-section .cert-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(248, 250, 252, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.top-two-section .pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 12px;
}

.top-two-section .pill-row.apispage-pill {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 11px;
}



/*.top-two-section .feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-dark), #010101);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
}*/
.top-two-section .apispage-pill .feature-pill {
    --offset: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary-dark), #010101);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border: 0px;
}

.top-two-section .feature-pill {
  --offset: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-dark), #010101);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border: 0px;
}
.feature-pill-text{
  position: relative;
  z-index: 1;
}
.top-two-section .feature-pill::before { 
  content: '';
  background: conic-gradient(#cccccc, transparent 135deg, #d33568 135deg, transparent 270deg, #cccccc);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 100%;
  animation: rotate 2s linear infinite;
}
.top-two-section .feature-pill::after {
  content: '';
  background: inherit;
  border-radius: inherit;
  position: absolute;
  inset: var(--offset);
  height: calc(100% - 2 * var(--offset));
  width: calc(100% - 2 * var(--offset));
}

.top-two-section .feature-pill .check-circle {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.top-two-section .feature-pill:not(.active) {
  filter: brightness(0.9);
}

.top-two-section .feature-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.top-two-section .feature-pill.active {
  filter: none;
}

/* Metrics Row */
.top-two-section .metrics-row {
  border-top: 1px solid #262635;
  border-bottom: 1px solid #262635;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  text-align: center;
  margin-top: 10px;
}

.top-two-section .metric-item {
  flex: 1 1 150px;
  position: relative;
  padding: 0 8px;
}

.top-two-section .metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #262635;
}

.top-two-section .metric-number {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 3px;
  background: var(--gradient-primary-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.top-two-section .metric-label-main {
  font-size: 13px;
  font-weight: 500;
}

.top-two-section .metric-label-sub {
  font-size: 11px;
  color: var(--color-text-lighter);
  margin-top: 2px;
}

/* Logo Row */
.top-two-section .logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 26px;
  opacity: 0.7;
}

.top-two-section .logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-two-section .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: #262635;
  display: inline-block;
}

.logo-carousel-wrapper {
    position: relative;
    padding: 50px 50px 0px;
}

.logo-carousel img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
   
}

/* Remove inline image baseline behavior */
.logo-carousel img {
    height: 70px;
    width: auto;
    object-fit: contain;
   
     filter: grayscale(100%)  brightness(1.2);

    transition: 0.3s;
}


.logo-carousel img:hover {
    filter: grayscale(0%) brightness(1.0);
    transform: scale(1.05);
}

/* Arrow buttons */
.logo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.logo-nav.prev, .logo-nav.next{
  display: none;
} 

.logo-carousel-wrapper:hover .logo-nav.prev, .logo-carousel-wrapper:hover .logo-nav.next{
  display: block !important;
} 
.logo-nav.prev {
    left: 0;
    top: 65%;
}

.logo-nav.next {
    right: 0;
    top: 65%;
}

.logo-nav i {
    font-size: 16px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
  .page-pricing-page .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .print-templete-section .section-wrapper {
    grid-template-columns: 1fr;
  }
  
  .print-templete-section .invoice-copy {
    order: 1;
  }
  
  .print-templete-section .invoice-visual {
    order: 2;
  }
}

@media (max-width: 900px) {
  .videotabsection .hero-body {
    grid-template-columns: 1fr;
  }
  
  .videotabsection .hero-left {
    order: 2;
  }
  
  .videotabsection .hero-right {
    order: 1;
  }
  
  .compliance-section-page .kpi-card {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  
  .top-two-section .top-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .top-two-section .pill-row {
    justify-content: center;
  }
  
  .testmonial-section-page .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .app {
    grid-template-columns: 1fr;
  }
  
  .sidebar-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .sidebar {
    position: relative;
    top: 0;
    height: auto;
    max-height: none;
    border-radius: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tab {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
  
  .section-progress {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .nav-links {
    display: none;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .page-pricing-page .pricing-inner {
    padding: 32px 18px 34px;
  }
  
  .page-pricing-page .pricing-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .page-pricing-page .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wbs-stack-sidebar{
    top: 80px !important;
  }
  .print-templete-section .template-thumb {
    height: 115px;
  }
  .print-templete-section .template-thumb img{
    height: 100%;
  }
  .print-templete-section .template-strip {
        padding: 9px 10px 9px;
  }
  .print-templete-section .template-thumb{
    padding: 5px;
  }
  .cta-section h2 {
    font-size: 28px;
  }
  .cta-section p{
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .videotabsection .hero-title {
    font-size: 26px;
  }
  
  .videotabsection .hero-card {
    padding: 18px 16px 22px;
  }
  
  .videotabsection .hero-left {
    padding: 24px 20px 28px;
  }
  
  .print-templete-section .invoice-copy h1 {
    font-size: 26px;
  }
  
  .print-templete-section .template-strip {
    grid-template-columns: 1fr;
  }
  
  .print-templete-section .template-big-preview {
    height: 130px;
  }
  
  .print-templete-section .invoice-card {
    padding: 18px 18px 22px;
  }
  
  .compliance-section-page .kpi-card {
    padding: 28px 20px 24px;
  }
  
  .compliance-section-page .kpi-heading {
    font-size: 26px;
  }
  
  .compliance-section-page .kpi-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  
  .compliance-section-page .kpi-tile:nth-child(4),
  .compliance-section-page .kpi-tile:nth-child(5) {
    grid-column: span 1;
  }
  
  .top-two-section .metrics-row {
    justify-content: center;
  }
  
  .top-two-section .metric-item:not(:last-child)::after {
    display: none;
  }
  
  .top-two-section .feature-pill {
    font-size: 12px;
  }
  
  .testmonial-section-page .testimonials-inner {
    padding: 26px 18px 32px;
  }
  
  .testmonial-section-page .testimonials-heading h2 {
    font-size: 22px;
  }
  
  .testmonial-section-page .testimonials-cards {
    grid-template-columns: 1fr;
  }
  
  .testmonial-section-page .testimonials-inner::before {
    width: 90%;
    top: 55%;
    opacity: 0.6;
  }
}

@media (max-width: 600px) {
  .page-pricing-page .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .page-pricing-page .plan-card.highlight {
    transform: none;
  }
  
  .page-pricing-page .pricing-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  body,
  .print-templete-section .section-invoice {
    background: var(--color-white) !important;
  }
  
  .print-templete-section .invoice-copy,
  .print-templete-section .template-strip {
    display: none !important;
  }
  
  .print-templete-section .invoice-card {
    box-shadow: none !important;
    margin: 0;
    max-width: none;
  }
}


/* ==========================================================================
   STACKING CARDS SECTION - wbs-stack-* prefix
   Works with aat.js ScrollObserver for stacking animation
   ========================================================================== */

/* Main Section */
.wbs-stack-section {
    position: relative;
    /*background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 100%);*/
    padding: 80px 0 120px;
}

.wbs-stack-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.wbs-stack-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ==========================================================================
   LEFT SIDEBAR - Sticky within section
   ========================================================================== */
.wbs-stack-sidebar {
    /*width: 300px;*/
    width: 465px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 8;
}

.wbs-stack-nav-box {
    background: rgba(18, 18, 26, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    /*padding: 28px 24px;*/
    padding: 10px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.wbs-stack-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    display: none;
}

.wbs-stack-brand b {
    color: #d33568;
}

.wbs-stack-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: none;
}

/* Navigation */
.wbs-stack-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /*gap: 6px;*/
}

.wbs-stack-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;/*padding: 14px 16px;*/
    border-radius: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    background: transparent;
    font-family: inherit;
    font-size: 12px;/*font-size: 14px;*/
    text-align: left;
    width: 100%;
}

.wbs-stack-nav-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
}

.wbs-stack-nav-btn.active {
    background: linear-gradient(135deg, rgba(211, 53, 104, 0.15), rgba(211, 53, 104, 0.05));
    color: #fff;
    border-color: rgba(211, 53, 104, 0.3);
}

.wbs-stack-nav-btn.completed {
    color: rgba(255, 255, 255, 0.6);
}

.wbs-stack-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wbs-stack-nav-btn.active .wbs-stack-dot {
    background: #d33568;
    box-shadow: 0 0 12px rgba(211, 53, 104, 0.6);
}

.wbs-stack-nav-btn.completed .wbs-stack-dot {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.wbs-stack-ico {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.wbs-stack-lbl {
    flex: 1;
    font-weight: 600;
}

.wbs-stack-chk {
    color: #22c55e;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s;
}

.wbs-stack-nav-btn.completed .wbs-stack-chk {
    opacity: 1;
}

/* Progress */
.wbs-stack-progress {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.wbs-stack-progress-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}

.wbs-stack-progress-track {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.wbs-stack-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d33568, #ff6b9d);
    border-radius: 100px;
    transition: width 0.3s ease;
}

/* ==========================================================================
   RIGHT CONTENT
   ========================================================================== */
.wbs-stack-content {
    flex: 1;
    min-width: 0;
}

/* Group */
.wbs-stack-group {
    margin-bottom: 40px;
}

.wbs-stack-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wbs-stack-group-icon {
    font-size: 32px;
}

.wbs-stack-group-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ==========================================================================
   STACKING CARDS - Grid-based animation like two.html
   ========================================================================== */
.wbs-stack-cards {
    /* Grid will be set by JS based on card count and height */
    display: grid;
    gap: 0;
}

.wbs-stack-card {
    /* Sticky positioning for stacking effect */
    position: sticky;
    top: 0;
}

.wbs-stack-card-inner {
    display: flex;
    /*background: #fff;*/
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform-origin: center top;
    will-change: transform, filter;
}

/* Card Visual */
.wbs-stack-card-visual {
    width: 40%;
    flex-shrink: 0;
    position: relative;
    /*background: linear-gradient(135deg, #d33568 0%, #8b1e4a 100%);*/
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px !important;
}

/*.wbs-stack-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}*/

.wbs-stack-card-emoji {
    position: relative;
    z-index: 2;
    font-size: 56px;
}

/* Card Body */
.wbs-stack-card-body {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wbs-stack-card-badge {
    display: inline-block;
    padding: 4px 12px;
    /*background: linear-gradient(135deg, #d33568, #ff6b9d);*/
    border: 1px solid #ffffff;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    /*letter-spacing: 0.08em;*/
    border-radius: 100px;
    margin-bottom: 16px;
    width: fit-content;
}

.wbs-stack-card-title {
    margin: 0 0 4px;
    font-size: 32px;
    font-weight: 700;
    color: #B29482;
    line-height: 1.15;
}

.wbs-stack-card-subtitle {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.wbs-stack-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 18px !important;
}

.wbs-stack-card-list {
    list-style: circle;
    /*padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;*/
}

.wbs-stack-card-list li {
    /*display: flex;
    align-items: center;
    gap: 10px;*/
    font-size: 14px;
    color: #ffffff;
}

/*.wbs-stack-card-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d33568, #ff6b9d);
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}*/

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1100px) {
    .wbs-stack-layout {
        gap: 35px;
    }
    
    .wbs-stack-sidebar {
        width: 260px;
    }
    
    .wbs-stack-card-title {
        font-size: 28px;
    }
    
    .wbs-stack-card-body {
        padding: 32px 28px;
    }
}

@media (max-width: 900px) {
    .wbs-stack-layout {
        flex-direction: column;
    }
    
    .wbs-stack-sidebar {
        width: 100%;
        position: sticky;
        top: 60px;
        z-index: 100;
    }
    
    .wbs-stack-nav-box {
        padding: 14px 18px;
        border-radius: 14px;
    }
    
    .wbs-stack-brand,
    .wbs-stack-note,
    .wbs-stack-progress {
        display: none;
    }
    
    .wbs-stack-nav {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .wbs-stack-nav::-webkit-scrollbar {
        display: none;
    }
    
    .wbs-stack-nav-btn {
        flex-shrink: 0;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .wbs-stack-chk {
        display: none;
    }
}

@media (max-width: 650px) {
    .wbs-stack-section {
        padding: 50px 0 80px;
    }
    
    .wbs-stack-container {
        padding: 0 16px;
    }
    
    .wbs-stack-card-inner {
        flex-direction: column;
    }
    
    .wbs-stack-card-visual {
        width: 100%;
        min-height: 180px;
    }
    
    .wbs-stack-card-body {
        padding: 26px 22px;
    }
    
    .wbs-stack-card-title {
        font-size: 24px;
    }
    
    .wbs-stack-card-subtitle {
        font-size: 17px;
    }
    
    .wbs-stack-group-title {
        font-size: 22px;
    }


}







/*Apis Page*/
.apispagesectionone{
    background: #D33568;
    background: radial-gradient(circle, rgba(211, 53, 104, 1) 0%, rgba(79, 31, 46, 0) 50%);
}
.apispagesectionone.apispagesectionblack{
    background: #000000;
}
.apispagesectionone.gst-section {
  position: relative;
  overflow: hidden !important;
  background:
    radial-gradient(120% 120% at 0% 0%, #7b0036 0%, #05040a 55%),
    radial-gradient(130% 130% at 100% 0%, #400024 0%, #050309 55%);
  /*padding: 72px 16px 96px;*/
  isolation: isolate;
}

/* Diagonal light panel at the bottom */
.apispagesectionone .gst-section::after {
  content: "";
  position: absolute;
  inset-inline: -15%;
  bottom: -70%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #f6f6fb 0%,
    #ffffff 80%,
    #ddddf0 100%
  );
  transform: skewY(-10deg);
  transform-origin: top left;
  z-index: -1;
  opacity: 0.96;
}
.apispagesectionone.apispagesectionthree .gst-section::after {
  content: "";
  position: absolute;
  inset-inline: -15%;
  top: -80%;
  height: 100%;
  background: linear-gradient(
    160deg,
    #ddddf0 0%,
    #ffffff 80%,
    #f6f6fb 100%
    
  );
  transform: skewY(0deg);
  transform-origin: top left;
  z-index: -1;
  opacity: 0.96;
}
.apispagesectionone.apispagesectionfour .gst-section::after {
  content: "";
  position: absolute;
  inset-inline: -15%;
  bottom: 0%;
  height: 100%;
  background: white;
  transform: skewY(0deg);
  transform-origin: top left;
  z-index: -1;
  opacity: 0.96;
}

.apispagesectionone.apispagesectiontwo.apisewaybillsection .gst-section::after {
    bottom: -94%;
    transform: skewY(10deg);
    transform-origin: top right;
}


.apispagesectionone.apispagesectiontwo .gst-section::after {
  bottom: -80%;
  transform: skewY(0deg);
  transform-origin: top left;
}

.apispagesectionone .gst-inner {
  /*max-width: 1120px;*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}
.apispagesectionone.apispagesectiontwo .gst-inner {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
}

/* ---------- LEFT COLUMN ---------- */

.apispagesectionone .gst-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  letter-spacing: 0.06em;
  /*text-transform: uppercase;*/
  color: var(--text-sub);
  margin-bottom: 16px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(10px);
}

.apispagesectionone .gst-heading {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

.apispagesectionone .gst-desc {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.apispagesectionone .gst-cta-btn {
  display: inline-flex;
  align-items: center;
  /*gap: 10px;*/
  justify-content: space-evenly;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(232, 59, 123, 0.45);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), filter var(--transition-fast);
}

.apispagesectionone .gst-cta-btn span.arrow {
  font-size: 16px;
  translate: 0 1px;
  transition: transform var(--transition-fast);
}

.apispagesectionone .gst-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(232, 59, 123, 0.55);
  filter: brightness(1.05);
}

.apispagesectionone .gst-cta-btn:hover .arrow {
  transform: translateX(3px);
}

.apispagesectionone .gst-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
}

/* ---------- RIGHT COLUMN (CARDS GRID) ---------- */

.apispagesectionone .gst-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.apispagesectionone .gst-card {
  position: relative;
  border-radius: var(--card-radius);
  background:
    linear-gradient(
      135deg,
      rgba(232, 59, 123, 0.15),
      rgba(232, 59, 123, 0) 45%
    ),
    radial-gradient(
      140% 140% at 10% 0%,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0)
    ),
    #05040a;
  border: 1px solid #d33568;
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out;
}

/*.apispagesectionone .gst-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.06) 0,
      transparent 45%,
      rgba(255, 255, 255, 0.03) 60%,
      transparent 80%
    ),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: screen;
}*/

.apispagesectionone .gst-card-inner {
  position: relative; /* to sit over ::before overlay */
  z-index: 1;
  padding: 24px;
}

.apispagesectionone .gst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.75);
  border-color: rgba(232, 59, 123, 0.65);
}

/*.apispagesectionone .gst-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0) 60%
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}*/

/*.apispagesectionone .gst-card-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(1);
}*/

.apispagesectionone .gst-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-soft);
  margin-bottom: 4px;
  background: linear-gradient(90deg, var(--color-primary),#B29482);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.apispagesectionone .gst-card-text {
  font-size: 22px;
  line-height: 1.4;
  color: var(--text-sub);
  margin-bottom: 0px !important;
  background: linear-gradient(90deg, var(--color-primary),#B29482);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* card-specific tweak for multiline headings */
.apispagesectionone .gst-card-title.multiline {
  line-height: 1.35;
}

/* ---------- ANIMATION ON LOAD ---------- */

.apispagesectionone .gst-card,
.apispagesectionone .gst-left {
  /*opacity: 0;*/
  transform: translateY(12px);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}

.apispagesectionone .is-visible .gst-left,
.apispagesectionone .is-visible .gst-card {
  opacity: 1;
  transform: translateY(0);
}

.apispagesectionone .is-visible .gst-card:nth-child(2) {
  transition-delay: 80ms;
}

.apispagesectionone .is-visible .gst-card:nth-child(3) {
  transition-delay: 130ms;
}

.apispagesectionone .is-visible .gst-card:nth-child(4) {
  transition-delay: 190ms;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .apispagesectionone .gst-inner,.apispagesectionone.apispagesectiontwo .gst-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .apispagesectionone .gst-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .apispagesectionone .gst-section {
    padding: 56px 16px 80px;
  }

  .apispagesectionone .gst-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}