/* ==========================================================================
   LANDING PAGE SPECIFIC STYLES
   Berisi semua style yang digunakan khusus untuk landing page
   ========================================================================== */

/* ==========================================================================
   HEADER & NAVIGATION STYLES
   ========================================================================== */

/* Header dasar */
header {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header .btn {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}

/* Cross-browser backdrop blur support */
.header-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .header-blur {
        background-color: var(--color-background) !important;
        background-opacity: 0.98 !important;
    }
}

/* Navbar Link Animations */
header nav a {
    position: relative;
    transition: color 0.3s ease;
}

header nav a:not(.btn):hover {
    color: var(--color-primary);
}

/* Replace underline with background highlight effect */
header nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: -2px;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    border-radius: 4px;
}

header nav a:not(.btn):hover::after {
    height: 80%;
    opacity: 1;
}

/* Mobile Menu Styles */
#mobile-menu {
    transform-origin: top;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--color-border-subtle);
}

#mobile-menu.active {
    animation: slideDown 0.3s forwards;
}

/* Cross-browser backdrop blur support for mobile menu */
.mobile-menu-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .mobile-menu-blur {
        background-color: var(--color-background) !important;
        background-opacity: 0.98 !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Demo Free Link Styling */
.demo-highlight {
    position: relative;
    color: var(--color-accent) !important;
    font-weight: 500;
    padding: 0.3rem 0.4rem !important;
    margin: -0.3rem 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Subtle bottom line */
.demo-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0.5);
    transform-origin: left;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.demo-highlight:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Light shimmer effect that passes through the text */
.demo-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.demo-highlight:hover::before {
    animation: shine 1.5s ease;
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -75%;
        opacity: 0.7;
    }
    100% {
        left: 125%;
        opacity: 0;
    }
}

/* Play icon with subtle animation */
.demo-highlight i {
    display: inline-block;
    margin-right: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.demo-highlight:hover i {
    transform: translateX(2px);
    opacity: 1;
}

/* Gentle text glow on hover */
.demo-highlight:hover {
    text-shadow: 0 0 8px rgba(161, 255, 170, 0.4);
    letter-spacing: 0.02em;
}

/* Click effect */
.demo-highlight:active {
    transform: translateY(1px);
}

/* Override default header nav styling */
header nav a.demo-highlight:not(.btn)::after {
    display: none;
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */

/* Hero section container with subtle animation */
.hero-section {
    position: relative;
    padding-bottom: 2rem;
    overflow: visible; /* Allow card to extend beyond boundaries */
}

/* Hero Content Animation */
.hero-content {
    opacity: 0;
    animation: fadeIn 1s ease forwards, slideUp 1s ease forwards;
    animation-delay: 0.5s;
}

/* Hero Feature Items */
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-background-subtle);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-subtle);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(161, 255, 170, 0.2);
}

.hero-feature-item i {
    font-size: 1rem;
}

/* Button Styles */
.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-subtle);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-standard);
}

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

/* Main CTA Button Enhanced */
.hero-cta-main {
    position: relative;
    overflow: hidden;
}

.hero-cta-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(161, 255, 170, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-cta-main:hover::after {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

/* Laptop Mockup Styling */
.laptop-container {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 10;
    overflow: visible; /* Ensure elements can extend beyond container */
}

.laptop-mockup {
    position: relative;
    max-width: 100%;
    overflow: visible; /* Ensure card can extend beyond laptop */
}

.laptop-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* Keyword Card Styling */
.keyword-card {
    position: absolute;
    top: -5%; /* Move up to be partially above the laptop */
    right: -1%; /* Move further right to ensure it's not cropped */
    width: 260px; /* Slightly smaller */
    background: var(--color-background-elevated);
    border-radius: 12px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s forwards;
    z-index: 20;
    transition: all 0.3s ease;
}

.keyword-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyword Card Header */
.keyword-card-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border-subtle);
}

.keyword-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--color-primary);
    color: white;
    margin-right: 10px;
    font-size: 0.9rem;
}

.keyword-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Keyword Card Content */
.keyword-card-content {
    padding: 15px;
}

.generated-image {
    position: relative;
    height: 110px; /* Slightly smaller for better proportions */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

/* Image processing overlay */
.generating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.processing-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.8rem;
}

.processing-indicator i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-accent);
}

/* Typing animation styles */
.generated-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
    height: 2.5rem; /* Adjusted height */
    position: relative;
    overflow: hidden;
}

.generated-description {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    height: 3.3rem; /* Adjusted height */
    position: relative;
    overflow: hidden;
}

/* Typing animation with blinking cursor */
.typing-animation::after,
.typing-animation-slow::after {
    content: "|";
    position: absolute;
    right: 0;
    color: var(--color-primary);
    background: var(--color-background-elevated);
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Generated keywords container */
.generated-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 60px;
}

/* Keyword bubble style - no animation in CSS */
.generated-keywords span {
    font-size: 0.75rem;
    background: var(--color-keyword-bubble);
    color: var(--color-background);
    padding: 2px 8px;
    border-radius: 20px;
    /* Removing animation from CSS and handling in JavaScript */
}

/* ==========================================================================
   STATS SECTION STYLES
   ========================================================================== */

.inline-stats {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.inline-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.inline-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.inline-stat-number .text-accent {
    margin-left: 0.25rem;
}

.inline-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

/* Counting animation */
.counting-animation {
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   FLOATING CONTACT BUTTON STYLES
   ========================================================================== */

/* Container positioning */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

/* Main circular contact button */
.contact-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 24px;
}

/* Icon inside main button - prevent movement */
.contact-main-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transform: translateY(0) translateX(0);
}

/* Hover effect for main button - removed animation */
.contact-main-btn:hover {
    background: var(--gradient-hover);
}

/* Contact options menu container */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Active state for contact options */
.contact-options.active {
    opacity: 1;
    transform: translateY(0);
}

/* Individual contact option button */
.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-background-elevated);
    color: var(--color-text-primary);
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--color-border-subtle);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Option-specific styling - simple color changes only */
.whatsapp-option:hover {
    color: #25D366;
}

.email-option:hover {
    color: #4285F4;
}

/* Icon styling in options */
.contact-option i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

/* WhatsApp icon specific color */
.whatsapp-option i {
    color: #25D366;
}

/* Email icon specific color */
.email-option i {
    color: #4285F4;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

footer {
    border-top: 1px solid var(--color-border-subtle);
}

footer .fa-heart {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

/* Make navbar use mobile version for tablet sizes too */
@media (max-width: 1024px) {
    /* Hide desktop nav on tablets */
    .hidden.md\:flex {
        display: none !important;
    }
    
    /* Show mobile menu button on tablets */
    #mobile-menu-btn.md\:hidden {
        display: flex !important;
    }
    
    /* Allow the mobile menu to display on tablets */
    #mobile-menu.md\:hidden {
        display: none;
    }
    
    #mobile-menu.md\:hidden.active {
        display: block;
    }
    
    /* Logo sizing for tablets */
    header nav .font-heading img {
        width: 160px;
    }
}

/* Hero section improvements for tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Stack hero content for tablets */
    .hero-section {
        flex-direction: column !important;
        gap: 2rem !important;
        padding-bottom: 3rem;
    }
    
    /* Make content full width on tablets */
    .hero-section > div {
        width: 100% !important;
    }
    
    /* Center text content on tablets */
    .hero-content {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    /* Adjust feature items to be centered */
    .hero-content .flex.flex-wrap {
        justify-content: center;
    }
    
    /* Center CTA buttons */
    .hero-content .flex.flex-wrap.gap-4.mb-8 {
        justify-content: center;
    }
    
    /* Center inline stats */
    .inline-stats {
        justify-content: center;
    }
    
    /* Adjust laptop container for tablets */
    .laptop-container {
        margin-top: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Adjust font sizes for better tablet display */
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
    }
    
    /* Additional responsive tweaks for keyword card */
    .keyword-card {
        top: -3%;
        right: -1%;
    }
}

/* Medium screens keyword card adjustments */
@media (min-width: 1025px) and (max-width: 1280px) {
    .keyword-card {
        top: -50%;
        right: -1%;
    }
}

/* Large Screen Adjustments */
@media (min-width: 1440px) {
    .hero-section {
        min-height: 70vh;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Hero section adjustments */
    .hero-section {
        padding-top: 1rem;
    }
    
    .laptop-mockup {
        margin-top: 2rem;
    }
    
    /* Hide keyword card on mobile */
    .keyword-card {
        display: none;
    }
    
    /* Footer adjustments */
    footer h3 {
        margin-top: 1.5rem;
    }
    
    /* Mobile menu adjustments */
    #mobile-menu {
        border-bottom: 1px solid var(--color-border-subtle);
    }
    
    /* Stats adjustments */
    .inline-stats {
        justify-content: space-between;
        width: 100%;
    }
    
    .inline-stat-number {
        font-size: 1.4rem;
    }
    
    .inline-stat-label {
        font-size: 0.75rem;
    }
    
    /* Demo highlight adjustments */
    .demo-highlight {
        display: inline-flex;
        align-items: center;
    }
    
    .demo-highlight::after {
        bottom: 3px;
    }
    
    /* Floating contact adjustments */
    .floating-contact-container {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-main-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-main-btn i {
        width: 20px;
        height: 20px;
    }
    
    .contact-option {
        padding: 8px 12px;
    }
    
    .contact-option span {
        font-size: 14px;
    }
}

/* Further mobile improvements (smaller phones) */
@media (max-width: 767px) {
    /* Better spacing for mobile */
    .hero-section {
        padding-bottom: 2rem;
        gap: 1.5rem !important;
    }
    
    /* Reduce heading size on mobile */
    .hero-content h1 {
        font-size: 2rem !important;
        text-align: center;
    }
    
    /* Center content on mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Center buttons and features */
    .hero-content .flex.flex-wrap {
        justify-content: center;
    }
    
    /* Improve readability of stats on mobile */
    .inline-stat-item {
        align-items: center;
    }
    
    /* Reduce padding on mobile navigation */
    header nav {
        padding: 0.75rem 1rem !important;
    }
    
    /* Smaller logos on mobile */
    header nav .font-heading img {
        width: 140px;
    }
    
    /* Better spacing for floating contact button */
    .floating-contact-container {
        bottom: 15px;
        right: 15px;
    }
}

/* ==========================================================================
   REUSABLE GRID AND GLOW EFFECTS
   Core pattern for grid background and ambient glow
   ========================================================================== */

/* Container setup */
.grid-container {
    position: relative;
    z-index: 1;
  }
  
  /* Standard grid background */
  .grid-background {
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    bottom: -20%;
    background-image:
      radial-gradient(circle at center, var(--color-accent) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 70%);
  }
  
  /* Standard ambient glow */
  .ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    z-index: -2;
    pointer-events: none;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.15;
    filter: blur(70px);
    animation: subtle-pulse 8s ease-in-out infinite;
  }
  
  /* Basic pulse animation */
  @keyframes subtle-pulse {
    0%, 100% { 
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.15;
    }
    50% { 
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.2;
    }
  }


/* ==========================================================================
   LOGO SLIDER SECTION STYLES
   Logo gallery with smooth infinite scrolling effect
 ========================================================================== */

/* Base container */
.logo-slider-section {
    position: relative;
    overflow: hidden;
}

/* Slider container with relative positioning for gradient overlays */
.logo-slider-container {
    position: relative;
    padding: 2rem 0;
    background: var(--color-background-subtle);
    border-radius: 12px;
}

/* Left gradient overlay */
.logo-slider-gradient-left {
    background: linear-gradient(
        to right,
        var(--color-background-subtle) 20%,
        rgba(26, 26, 26, 0) 100%
    );
}

/* Right gradient overlay */
.logo-slider-gradient-right {
    background: linear-gradient(
        to left,
        var(--color-background-subtle) 20%,
        rgba(26, 26, 26, 0) 100%
    );
}

/* Logo slider track for scrolling */
.logo-slider-track {
    display: flex;
    animation: logoSlider 30s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.logo-slider-track:hover {
    animation-play-state: paused;
}

/* Individual logo item */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.logo-item img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(1.7);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Keyframes for infinite scrolling */
@keyframes logoSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-slider-container {
        padding: 1rem 0;
    }
    
    .logo-item {
        padding: 0 1.5rem;
    }
    
    .logo-item img {
        max-height: 40px;
    }
}


/* ==========================================================================
   CTA and CTA Glow
   ========================================================================== */

/* CTA Banner styling */
.cta-banner {
    isolation: isolate;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(35, 40, 255, 0.08) 0%, 
        rgba(161, 255, 170, 0.05) 30%,
        transparent 70%);
    top: -300px;
    right: -200px;
    z-index: 0;
    opacity: 0.6;
    animation: pulse 8s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 80%, rgba(35, 40, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(161, 255, 170, 0.08) 0%, transparent 50%);
    z-index: -1;
}

/* Subtle interactive animation on hover/touch */
@media (hover: hover) {
    .cta-banner {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .cta-banner:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 255, 255, 0.15);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mockup-content {
        min-height: 200px;
    }
    
    .feature-item {
        margin-bottom: 3rem;
    }
    
}



/* ==========================================================================
   LABELED FEATURES SECTION
   Clean design with platform indicators and labels
   ========================================================================== */

/* Section base styling with improved spacing */
.features-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
  }
  
  /* Section glow effect */
  .section-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
      rgba(161, 255, 170, 0.15) 0%, 
      rgba(35, 40, 255, 0.1) 35%, 
      transparent 70%);
    border-radius: 50%;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(50px);
    z-index: -1;
  }
  
  /* Tab Navigation - Clean and Modern */
  .feature-tabs {
    display: inline-flex;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .feature-tab {
    position: relative;
    padding: 0.75rem 1.75rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
  }
  
  .feature-tab:hover {
    color: var(--color-text-primary);
  }
  
  .feature-tab.active {
    color: var(--color-text-primary);
  }
  
  /* After pseudo-element for the active tab indicator */
  .feature-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-subtle);
    border-radius: 9999px;
    z-index: -1;
    animation: tabActivate 0.3s forwards ease-out;
  }
  
  @keyframes tabActivate {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Feature Content Panels */
  .features-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Panel backdrop for depth */
  .feature-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-background-subtle);
    border-radius: 24px;
    border: 1px solid var(--color-border-subtle);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
  }
  
  /* Feature Badge Styling */
  .feature-badge {
    display: inline-flex;
    align-items: center;
    background: var(--color-background-elevated);
    border: 1px solid var(--color-border-subtle);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
  }
  
  .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    margin-right: 8px;
    position: relative;
  }
  
  .badge-dot::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0;
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0;
    }
  }
  
  /* Feature Panel Base Styling */
  .feature-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 3rem 2rem;
  }
  
  .feature-panel.active {
    display: block;
    opacity: 1;
    animation: panelFadeIn 0.5s forwards;
  }
  
  @keyframes panelFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Feature Grid Styling */
  .feature-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
  }
  
  .feature-grid-item:hover {
    transform: translateY(-3px);
  }
  
  /* Feature Icon Styling */
  .feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Icon light effect */
  .feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  
  .feature-grid-item:hover .feature-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
  }
  
  /* Feature Info Text Styling */
  .feature-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--color-text-primary);
  }
  
  .feature-info p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
  }
  
  /* Platform Support Section */
  .platform-support-section {
    margin-top: 2rem;
  }
  
  .platform-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
  }
  
  .platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .platform-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: var(--color-background-elevated);
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
  }
  
  .platform-item i {
    font-size: 1rem;
  }
  
  /* Active platform */
  .platform-item.active {
    color: var(--color-primary);
    background: var(--color-primary-subtle);
    border-color: var(--color-primary);
  }
  
  .platform-item.active i {
    color: var(--color-primary);
  }
  
  /* Soon platform */
  .platform-item.soon {
    color: var(--color-accent);
    background: rgba(161, 255, 170, 0.1);
    border-color: rgba(161, 255, 170, 0.3);
  }
  
  .platform-item.soon i {
    color: var(--color-accent);
  }
  
  .soon-label {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-background);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  
  /* Planned platform */
  .platform-item.planned {
    opacity: 0.7;
  }
  
  /* Chrome extension specific */
  .platform-item.chrome {
    color: #4285F4;
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.3);
  }
  
  .platform-item.chrome i {
    color: #4285F4;
  }
  
  /* Image Container Styling - Clean for direct PNG display */
  .feature-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
  }
  
  .feature-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .feature-panel {
      padding: 2.5rem 1.5rem;
    }
    
    .platform-item {
      padding: 0.4rem 0.7rem;
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 768px) {
    .features-section {
      padding: 4rem 0;
    }
    
    .feature-tab {
      padding: 0.6rem 1.25rem;
      font-size: 0.9rem;
    }
    
    .feature-panel {
      padding: 2rem 1rem;
    }
    
    .feature-grid {
      gap: 1rem;
    }
    
    .platform-support-section {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .platform-list {
      justify-content: center;
    }
  }
  
  /* Mobile optimizations */
  @media (max-width: 640px) {
    .feature-tabs {
      width: 100%;
      justify-content: center;
    }
    
    .feature-tab {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
      flex: 1;
      text-align: center;
    }
    
    .feature-text-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .feature-badge {
      margin-bottom: 0.5rem;
    }
    
    .feature-grid {
      grid-template-columns: 1fr;
      max-width: 100%;
    }
    
    .feature-grid-item {
      text-align: left;
    }
    
    .feature-panel {
      padding: 1.5rem 1rem;
    }
    
    .platform-list {
      width: 100%;
      justify-content: center;
      gap: 0.75rem;
    }
    
    .platform-item {
      font-size: 0.8rem;
      padding: 0.4rem 0.6rem;
    }
    
    .soon-label {
      font-size: 0.6rem;
      padding: 0.1rem 0.3rem;
    }
  }



  /* ==========================================================================
   EMOJI-BASED FAQ SECTION
   Emoji language switcher and styled accordions
   ========================================================================== */

/* Emoji Language Switcher */
.emoji-switcher {
    display: inline-flex;
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
  }
  
  .emoji-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .emoji-btn.active {
    color: var(--color-text-primary);
    background: var(--color-primary-subtle);
  }
  
  /* Emoji styling */
  .emoji {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .emoji-btn:hover .emoji {
    transform: scale(1.2);
  }
  
  /* FAQ Language Content */
  .faq-lang-content {
    display: none;
  }
  
  .faq-lang-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }
  
  /* FAQ Item styling */
  .faq-item {
    border: 1px solid var(--color-border-subtle);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-background-elevated);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .faq-item:hover {
    border-color: var(--color-primary-subtle);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  /* FAQ Question */
  .faq-question {
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
  }
  
  .faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }
  
  .faq-icon {
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* FAQ Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
  }
  
  .faq-answer p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }
  
  /* Active States */
  .faq-item.active {
    border-color: var(--color-primary-subtle);
    background: var(--color-background-elevated);
  }
  
  .faq-item.active .faq-question {
    border-bottom: 1px solid var(--color-border-subtle);
  }
  
  .faq-item.active .faq-icon i {
    transform: rotate(180deg);
    color: var(--color-primary);
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .emoji-btn {
      padding: 0.4rem 0.8rem;
      font-size: 0.9rem;
    }
    
    .emoji {
      font-size: 1.1rem;
    }
    
    .faq-question {
      padding: 0.875rem 1.25rem;
    }
    
    .faq-question h3 {
      font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
      padding: 0.75rem 1.25rem 1.25rem;
    }
  }


  
/* Download Platforms Section Styles */

/* External Platforms Links */
.external-platforms {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.external-platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-background-subtle);
    border: 1px solid var(--color-border-subtle);
    border-radius: 30px;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.external-platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}

.external-platform-link i {
    font-size: 1.2rem;
}

.external-platform-link:first-child i { color: #2328FF; }
.external-platform-link:last-child i { color: #4285F4; }

/* Download Selector */
.download-selector {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.download-main-wrapper {
    display: flex;
    background: var(--color-background-subtle);
    border: 1px solid var(--color-border-subtle);
    border-radius: 50px;
    overflow: hidden;
}

.download-main-button {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-main-button:hover {
    background: rgba(255,255,255,0.05);
}

.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
    border-radius: 50%;
    background: var(--color-background-subtle);
}

.download-icon i {
    font-size: 1rem;
}

.download-text {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-right: 0.5rem;
}

.platform-tag {
    background: var(--color-accent);
    color: var(--color-background);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
}

.download-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    background: var(--color-background-subtle);
    border-left: 1px solid var(--color-border-subtle);
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-toggle:hover {
    background: rgba(255,255,255,0.05);
}

.download-toggle i {
    color: var(--color-text-secondary);
}

.download-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-border-subtle);
    border-radius: 12px;
    margin-top: 0.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 30;
    overflow: hidden;
}

.download-options.active {
    display: block;
    animation: dropdownFadeIn 0.3s ease forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--color-border-subtle);
    cursor: pointer;
}

.download-option:last-child {
    border-bottom: none;
}

.download-option:hover {
    background: rgba(35, 40, 255, 0.1);
    color: var(--color-accent);
}

.download-option i {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    width: 25px;
    text-align: center;
}

.download-option .status {
    margin-left: auto;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.download-option .status.soon {
    color: var(--color-primary);
    opacity: 0.7;
}

.download-option .status.available {
    color: var(--color-accent);
    font-weight: 500;
}

[data-platform="mac-intel"] i,
[data-platform="mac-silicon"] i { color: #A2AAAD; }
[data-platform="windows"] i { color: #00A4EF; }
[data-platform="linux"] i { color: #FCC624; }

.download-terms {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.download-terms a {
    color: var(--color-accent);
    text-decoration: none;
    margin: 0 0.25rem;
    transition: text-decoration 0.3s ease;
}

.download-terms a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .external-platforms {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .download-main-button {
        padding: 0.75rem 1rem;
    }

    .platform-tag {
        font-size: 0.7rem;
    }

    .download-option {
        padding: 0.75rem 1rem;
    }

    .download-option i {
        font-size: 1rem;
    }
}


/* ==========================================================================
   PRICING PAGE SPECIFIC STYLES
   Contains all styles used specifically for the pricing page
   ========================================================================== */

/* ==========================================================================
   PRICING HERO SECTION
   ========================================================================== */

   .pricing-hero-section {
    position: relative;
    padding-bottom: 2rem;
    overflow: visible;
  }
  
  /* ==========================================================================
     PRICING CARD STYLES
     ========================================================================== */
  
  /* Pricing Cards Container */
  .pricing-card {
    position: relative;
    background: var(--color-background-elevated);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border-subtle);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Card hover effects */
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Featured card styling */
  .featured-card {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 25px rgba(35, 40, 255, 0.15);
  }
  
  /* Popular Badge in corner */
  .popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 0 12px 0 12px;
    z-index: 3;
  }
  
  /* Card headers */
  .pricing-card-header {
    padding: 30px 30px 20px;
    position: relative;
    border-bottom: 1px solid var(--color-border-subtle);
  }
  
  /* Card plan badge */
  .plan-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  /* Plan badge variants */
  .free-card .plan-badge {
    background-color: var(--color-accent);
    color: var(--color-background);
  }
  
  .ai-card .plan-badge {
    background-color: var(--color-primary);
    color: white;
  }
  
  .db-card .plan-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
  }
  
  /* Card pricing section */
  .pricing-card-price {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border-subtle);
  }
  
  /* Price amount */
  .price-amount {
    display: flex;
    align-items: baseline;
  }
  
  .price-amount .currency {
    font-size: 18px;
    margin-right: 4px;
  }
  
  .price-amount .amount {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
  }
  
  /* Price period */
  .price-period {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-top: 4px;
  }
  
  /* Price info for token pricing */
  .price-info {
    margin-top: 8px;
    font-size: 13px;
    color: var(--color-accent);
  }
  
  /* Token pricing section */
  .pricing-card-tokens {
    padding: 20px 30px;
    border-bottom: 1px solid var(--color-border-subtle);
  }
  
  .token-price {
    padding: 20px 0 0;
    border-bottom: none;
  }
  
  /* Token selector */
  .token-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .token-option {
    background: var(--color-background);
    border: 1px solid var(--color-border-subtle);
    border-radius: 10px;
    padding: 8px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .token-option.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(35, 40, 255, 0.2);
  }
  
  .token-amount {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
  }
  
  .token-label {
    font-size: 11px;
    color: var(--color-text-secondary);
  }
  
  .token-option.active .token-amount,
  .token-option.active .token-label {
    color: white;
  }
  
  /* Features section */
  .pricing-card-features {
    padding: 20px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  /* Feature divider */
  .feature-divider {
    margin-bottom: 15px;
  }
  
  .feature-divider span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
  }
  
  /* Feature list */
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
  }
  
  .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
  }
  
  .feature-item.excluded {
    color: var(--color-text-secondary);
    opacity: 0.7;
  }
  
  /* Card action section */
  .pricing-card-action {
    padding: 20px 30px 30px;
  }
  
  /* Pricing buttons */
  .pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .pricing-btn span {
    margin-right: 8px;
  }
  
  /* Button variants */
  .free-btn {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
  }
  
  .free-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-background);
  }
  
  .ai-btn {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
  }
  
  .ai-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
  }
  
  .db-btn {
    background-color: transparent;
    border: 1px solid var(--color-text-primary);
    color: var(--color-text-primary);
  }
  
  .db-btn:hover {
    background-color: var(--color-text-primary);
    color: var(--color-background);
  }
  
  /* Decorative elements */
  .card-decoration {
    position: absolute;
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: 0;
  }
  
  .top-right {
    top: 0;
    right: 0;
  }
  
  .featured-card .card-decoration svg circle {
    fill: var(--color-primary);
  }
  
  .free-card .card-decoration svg circle,
  .db-card .card-decoration svg circle {
    fill: var(--color-accent);
  }
  
  .pricing-card:hover .card-decoration {
    opacity: 0.25;
  }
  
  /* ==========================================================================
     RESPONSIVE STYLING
     ========================================================================== */
  
  /* Tablet Adjustments */
  @media (max-width: 1024px) {
    .pricing-card-header,
  .pricing-card-price,
  .pricing-card-tokens,
  .pricing-card-features,
  .pricing-card-action {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .token-amount {
    font-size: 14px;
  }
  
  .token-label {
    font-size: 10px;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .pricing-hero-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .pricing-card {
    margin-bottom: 1.5rem;
  }
  
  .pricing-card-header {
    padding: 25px 20px 15px;
  }
  
  .price-amount .amount {
    font-size: 32px;
  }
  
  /* Make cards use full height on mobile */
  .pricing-card {
    height: auto;
  }
  
  /* Ensure features take up enough space */
  .feature-list li {
    margin-bottom: 10px;
  }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
  .pricing-card-header,
  .pricing-card-price,
  .pricing-card-tokens,
  .pricing-card-features,
  .pricing-card-action {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .token-selector {
    gap: 5px;
  }
  
  .token-option {
    padding: 6px 3px;
  }
  
  .token-amount {
    font-size: 12px;
  }
  
  .token-label {
    font-size: 9px;
  }
  
  .pricing-btn {
    padding: 12px 10px;
    font-size: 14px;
  }
}


/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   Contains all styles used specifically for the contact page
   ========================================================================== */

/* ==========================================================================
   CONTACT HERO SECTION
   ========================================================================== */

   .contact-hero-section {
    position: relative;
    padding-bottom: 2rem;
    overflow: visible;
  }
  
  /* ==========================================================================
     CONTACT METHOD CARDS
     ========================================================================== */
  
  .contact-method-card {
    position: relative;
    background: var(--color-background-elevated);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-subtle);
  }
  
  .contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: transparent;
  }
  
  .contact-method-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
  }
  
  .contact-method-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
  }
  
  .email-icon {
    background: rgba(35, 40, 255, 0.15);
    color: var(--color-primary);
  }
  
  .whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
  }
  
  .telegram-icon {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
  }
  
  .contact-method-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
  }
  
  .contact-method-description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .contact-method-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .contact-method-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
  }
  
  .contact-method-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-background-subtle);
    border-radius: 30px;
    z-index: -2;
    transition: all 0.3s ease;
  }
  
  .contact-method-link:hover::after {
    background: var(--color-primary-subtle);
  }
  
  .contact-method-card:nth-child(1) .contact-method-link:hover {
    color: var(--color-primary);
  }
  
  .contact-method-card:nth-child(2) .contact-method-link:hover {
    color: #25D366;
  }
  
  .contact-method-card:nth-child(3) .contact-method-link:hover {
    color: #0088cc;
  }
  
  /* ==========================================================================
     SUPPORT HOURS SECTION
     ========================================================================== */
  
  .support-hours-container {
    background: var(--color-background-elevated);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
  }
  
  .support-hours-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(90deg, var(--color-primary-subtle), transparent);
    border-bottom: 1px solid var(--color-border-subtle);
  }
  
  .support-hours-header i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 1rem;
  }
  
  .support-hours-header h3 {
    font-weight: 600;
    font-size: 1.25rem;
  }
  
  .support-hours-content {
    padding: 1.5rem;
  }
  
  .support-schedule {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 1px;
    background: var(--color-border-subtle);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .day-column, .hours-column, .response-column {
    background: var(--color-background-elevated);
  }
  
  .day-header, .hours-header, .response-header {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    background: var(--color-background-subtle);
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border-subtle);
  }
  
  .day-item, .hours-item, .response-item {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border-subtle);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
  }
  
  .day-item:last-child, .hours-item:last-child, .response-item:last-child {
    border-bottom: none;
  }
  
  .response-time {
    font-weight: 500;
  }
  
  .response-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    background: rgba(161, 255, 170, 0.2);
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  
  /* ==========================================================================
     CONTACT FAQ SECTION
     Matches the index.html FAQ styling
     ========================================================================== */
  
  .contact-faq-section .emoji-switcher {
    display: inline-flex;
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
  }
  
  .contact-faq-section .emoji-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .contact-faq-section .emoji-btn.active {
    color: var(--color-text-primary);
    background: var(--color-primary-subtle);
  }
  
  .contact-faq-section .emoji {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .contact-faq-section .emoji-btn:hover .emoji {
    transform: scale(1.2);
  }
  
  .contact-faq-section .faq-lang-content {
    display: none;
  }
  
  .contact-faq-section .faq-lang-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }
  
  .contact-faq-section .faq-item {
    border: 1px solid var(--color-border-subtle);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-background-elevated);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1rem;
  }
  
  .contact-faq-section .faq-item:hover {
    border-color: var(--color-primary-subtle);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .contact-faq-section .faq-question {
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    text-align: left;
  }
  
  .contact-faq-section .faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }
  
  .contact-faq-section .faq-icon {
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
  }
  
  .contact-faq-section .faq-answer p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }
  
  .contact-faq-section .faq-item.active {
    border-color: var(--color-primary-subtle);
    background: var(--color-background-elevated);
  }
  
  .contact-faq-section .faq-item.active .faq-question {
    border-bottom: 1px solid var(--color-border-subtle);
  }
  
  .contact-faq-section .faq-item.active .faq-icon i {
    transform: rotate(180deg);
    color: var(--color-primary);
  }
  
  .contact-faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
  }
  
  /* ==========================================================================
     RESPONSIVE ADJUSTMENTS
     ========================================================================== */
  
  @media (max-width: 991px) {
    .contact-method-card {
      padding: 1.75rem 1.25rem;
    }
  }
  
  @media (max-width: 768px) {
    .support-schedule {
      grid-template-columns: 1fr;
    }
    
    .day-header, .hours-header, .response-header {
      border-bottom: none;
      border-left: 1px solid var(--color-border-subtle);
      border-right: 1px solid var(--color-border-subtle);
    }
    
    .day-header {
      border-top: 1px solid var(--color-border-subtle);
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
    
    .response-item:last-child {
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    
    .day-column, .hours-column, .response-column {
      display: grid;
      grid-template-columns: 1fr;
    }
    
    .day-item, .hours-item, .response-item {
      padding: 0.75rem 1rem;
      min-height: auto;
    }
    
    .contact-faq-section .emoji-btn {
      padding: 0.4rem 0.8rem;
      font-size: 0.9rem;
    }
    
    .contact-faq-section .emoji {
      font-size: 1.1rem;
    }
    
    .contact-faq-section .faq-question {
      padding: 0.875rem 1.25rem;
    }
    
    .contact-faq-section .faq-question h3 {
      font-size: 0.95rem;
    }
    
    .contact-faq-section .faq-item.active .faq-answer {
      padding: 0.75rem 1.25rem 1.25rem;
    }
  }
  
  @media (max-width: 640px) {
    .contact-method-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }
    
    .contact-method-title {
      font-size: 1.1rem;
    }
    
    .contact-method-description {
      font-size: 0.85rem;
    }
  }


  /* ==========================================================================
   TUTORIAL PAGE SPECIFIC STYLES
   Contains all styles used specifically for the tutorial page
   ========================================================================== */

/* ==========================================================================
   TUTORIAL HERO SECTION
   ========================================================================== */

.tutorial-hero-section {
  position: relative;
  padding-bottom: 2rem;
  overflow: visible;
}

/* ==========================================================================
   TUTORIAL TABS
   ========================================================================== */

.tutorial-tabs {
  position: relative;
  z-index: 10;
}

.tutorial-tab {
  position: relative;
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.tutorial-tab:hover {
  color: var(--color-text-primary);
}

.tutorial-tab.active {
  color: var(--color-text-primary);
  background: var(--color-primary-subtle);
}

.tutorial-tab::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.tutorial-tab:hover::before {
  transform: translateX(0);
}

.tutorial-tab.active::before {
  transform: translateX(0);
}

/* ==========================================================================
   TUTORIAL CARDS
   ========================================================================== */

.tutorial-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.tutorial-card.hidden-category {
  display: none;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
}

.tutorial-card-inner {
  background: var(--color-background-elevated);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.tutorial-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.tutorial-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tutorial-card-inner:hover::before {
  opacity: 1;
}

/* Video thumbnail and overlay */
.video-thumbnail {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-bottom: 1px solid var(--color-border-subtle);
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.tutorial-card-inner:hover .video-thumbnail img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tutorial-card-inner:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.8);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(35, 40, 255, 0.2);
}

.tutorial-card-inner:hover .play-button {
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(35, 40, 255, 0.4);
}

.play-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid white;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Video info section */
.video-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--color-background-elevated);
  position: relative;
  z-index: 2;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-badge {
  background-color: var(--color-primary);
  color: white;
}

.db-badge {
  background-color: var(--color-keyword-bubble);
  color: var(--color-background);
}

.extra-badge {
  background-color: var(--color-accent);
  color: var(--color-background);
}

.tutorial-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: auto;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.tutorial-link:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.tutorial-link i {
  transition: transform 0.3s ease;
}

.tutorial-link:hover i {
  transform: translateX(3px);
}

/* Video Modal */
#video-modal {
  transition: opacity 0.4s ease;
}

.modal-overlay {
  transition: opacity 0.4s ease;
}

.modal-container {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.9);
}

#video-modal.active .modal-container {
  transform: scale(1);
}

#close-modal {
  opacity: 0.7;
  transition: all 0.3s ease;
}

#close-modal:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Aspect ratio container for responsive iframe */
.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.aspect-w-16 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 1024px) {
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .tutorial-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  
  .video-info {
    padding: 1.25rem;
  }
  
  .video-info h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .tutorial-tabs {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 1rem;
  }
  
  .tutorial-tab {
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .tutorial-card-inner:hover {
    transform: translateY(-5px);
  }
  
  .play-button {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  
  .video-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
}


