/* ===========================================
   PROGO MOBILITY - UPDATED BRAND COLORS & FONTS
   Brand Colors: Lava Burst #f04c28, Deep Graphite #0e0e11, White #ffffff, Volt Ash #7f7f7f
   Brand Fonts: Poppins, Space Grotesk
   ========================================== */

   :root {
    /* Updated Brand Colors */
    --primary: #f04c28;
    --primary-light: #ff6b47;
    --primary-dark: #d73e20;
    --accent: #ff6b47;
    --accent-dark: #d73e20;
    --green: #52B788;
    --green-dark: #40916C;
    
    --black: #0e0e11;
    --gray-900: #0e0e11;
    --gray-800: #1a1a1d;
    --gray-700: #2d2d30;
    --gray-600: #404043;
    --gray-500: #7f7f7f;
    --gray-400: #9a9a9a;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-xl: 0 35px 60px -12px rgb(0 0 0 / 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
}

/* Import Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Navigation - Transparent Header Blending with Hero */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Desktop Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0rem; /* Remove gap since we're using one image */
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo {
    color: var(--black);
}

/* Logo Image Container */
.logo-image {
    height: 40px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    display: block;
    transition: all 0.3s ease;
    filter: none; /* Shows original logo colors when scrolled */
}

.navbar.scrolled .logo-image {
    filter: brightness(0);
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Hide the old text-based logo elements */
.logo-icon,
.logo-text {
    display: none;
}

/* Mobile Logo Styles */
@media (max-width: 768px) {
    .logo-image {
        height: 300px; /* Slightly smaller on mobile */
        filter: none; 
    }
    
    .navbar.scrolled .logo-image {
        filter: brightness(0);
    }
    
    /* Mobile menu logo */
    .mobile-nav-logo .logo-image {
        height: 35px;
        filter: none; /* Always show original colors in mobile menu */
    }
    
    .mobile-nav-logo .logo {
        justify-content: center;
        gap: 0;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .logo-image {
        height: 300px;
    }
    
    .mobile-nav-logo .logo-image {
        height: 30px;
    }
}

/* Logo variations for different backgrounds */
.logo-image.logo-white {
    filter: brightness(0);
}

.logo-image.logo-dark {
    filter: none;
}

.logo-image.logo-brand {
    filter: none;
}

/* High DPI display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
}

/* Print styles */
@media print {
    .logo-image {
        filter: none !important;
        max-height: 40px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-1px);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .hamburger span {
    background: var(--black);
    box-shadow: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 17, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mobile-nav-link {
    display: block;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Modern Hero Banner - Complete Redesign */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-wrapper {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-slide.next {
    transform: translateX(100%) scale(1);
}

.hero-slide.prev {
    transform: translateX(-100%) scale(1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-image {
    transform: scale(1.05);
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-gradient-1 {
    background: linear-gradient(135deg, #f04c28 0%, #d73e20 50%, #0e0e11 100%);
}

.hero-gradient-2 {
    background: linear-gradient(135deg, #52B788 0%, #40916C 50%, #2D6A4F 100%);
}

.hero-gradient-3 {
    background: linear-gradient(135deg, #ff6b47 0%, #f04c28 50%, #d73e20 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(14, 14, 17, 0.4) 0%,
        transparent 50%,
        rgba(14, 14, 17, 0.2) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 2rem;
}

.hero-content-inner {
    text-align: center;
    max-width: 1000px;
    color: white;
    transform: translateY(40px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.hero-slide.active .hero-content-inner {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255,255,255,0.3); }
    100% { text-shadow: 0 0 40px rgba(255,255,255,0.6), 0 0 60px rgba(240,76,40,0.3); }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(240, 76, 40, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 76, 40, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Navigation Controls */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 4;
    pointer-events: none;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    pointer-events: auto;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    border-radius: 50%;
    transition: width 0.3s ease;
}

.hero-indicator.active::before {
    width: 100%;
}

.hero-indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 4;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    width: 0;
    transition: width 0.3s ease;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.7;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-arrow {
    transform: rotate(90deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(90deg) translateX(0); }
    40% { transform: rotate(90deg) translateX(-5px); }
    60% { transform: rotate(90deg) translateX(-3px); }
}

/* Hero Quote Section */
.hero-quote-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.hero-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(240, 76, 40, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(82, 183, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 71, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.quote-content {
    text-align: center;
    position: relative;
}

/* Decorative Quote Marks */
.quote-mark {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
    font-family: 'Space Grotesk', serif;
    pointer-events: none;
}

.quote-mark.opening {
    top: -4rem;
    left: -2rem;
    transform: rotate(-15deg);
}

.quote-mark.closing {
    bottom: -4rem;
    right: -2rem;
    transform: rotate(15deg);
}

/* Main Quote Text */
.quote-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-text::before {
    content: '"';
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    top: 0.1em;
    margin-right: 0.1em;
}

.quote-text::after {
    content: '"';
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    top: 0.1em;
    margin-left: 0.1em;
}

/* Highlight specific words */
.highlight-crystal {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.highlight-crystal::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.highlight-journey {
    color: var(--green);
    font-weight: 700;
}

.highlight-africa {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Company Attribution */
.quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.attribution-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.attribution-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.falcon-x-container {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.falcon-x-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 400px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.product-image-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
}

/* Show only the first image by default, hide others */
.product-img:not(:first-child) {
    display: none;
}

.product-img.active {
    display: block !important;
}

/* Fallback SVG container */
.svg-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--gray-400);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.gallery-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 1rem;
}

.nav-next {
    right: 1rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.product-info {
    position: relative;
}

.price-badge {
    position: absolute;
    top: -1rem;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--black);
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-card {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.see-more-btn {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.see-more-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Features Carousel - Full Images Only */
.features-carousel {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.features-carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
}

.feature-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
}

.feature-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.feature-slide:hover .feature-full-image {
    transform: scale(1.05);
}

.features-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.feature-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.feature-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    border-color: var(--primary);
}

.features-carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(14, 14, 17, 0.3);
    padding: 0.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.feature-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.feature-indicator.active {
    background: white;
    transform: scale(1.3);
}

/* Animated Text for African Message */
.animated-text-container {
    margin: 1.5rem 0;
}

.animated-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    position: relative;
    min-height: 3.5rem;
}

.base-text {
    color: var(--black);
}

.phrase-container {
    display: inline-block;
    position: relative;
    min-width: 280px; /* Reserve space for the longest phrase */
    height: 1.2em;
    margin-left: 0.1rem;
    top: 0.25em; /* Bring the phrases down */
}

.animated-phrase {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}

.animated-phrase.active {
    opacity: 1;
    transform: translateY(0);
}

.phrase-1 {
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(240, 76, 40, 0.3);
}

.phrase-2 {
    color: var(--green);
    text-shadow: 0 2px 4px rgba(82, 183, 136, 0.3);
}

.phrase-3 {
    color: var(--accent-dark);
    text-shadow: 0 2px 4px rgba(215, 62, 32, 0.3);
}

/* Animation for the phrases */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Founder Section - Enhanced */
.founder-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
}

.founder-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--black);
}

.founder-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center; /* Changed from 'start' to 'center' */
    text-align: left;
    margin-top: 2rem;
}

.founder-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gray-100);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.founder-info {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the text content vertically */
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.founder-role {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    margin: 1.5rem 0;
    padding: 1rem;
    border-left: 4px solid var(--primary);
    background: var(--gray-50);
    border-radius: 0 8px 8px 0;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray-100);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Engagement Section */
.engagement-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.engagement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.engagement-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.engagement-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.engagement-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.support-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.email-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 76, 40, 0.1);
}

.email-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.email-btn:hover {
    background: var(--primary-dark);
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    text-align: center;
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.timeline-btn {
    background: var(--gray-100);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
}

.timeline-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 76, 40, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.floating-element.circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-element.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--accent);
    top: 20%;
    right: 8%;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-element.square {
    width: 60px;
    height: 60px;
    background: var(--green);
    transform: rotate(45deg);
    bottom: 15%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-carousel {
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-navigation {
        padding: 0 1.5rem;
    }
    
    .hero-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .hero-indicators {
        bottom: 2rem;
    }
    
    .scroll-hint {
        right: 1.5rem;
        bottom: 1rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    .product-layout,
    .features-grid,
    .engagement-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .email-form {
        flex-direction: column;
    }

    .falcon-x-container {
        padding: 2rem 1rem;
    }

    .product-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-details {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-image {
        width: 200px;
        height: 200px;
    }
    
    .founder-social {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-actions {
        margin-top: 1.5rem;
    }
    
    .hero-navigation {
        display: none;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-content-inner,
    .hero-btn,
    .title-line {
        transition: none !important;
        animation: none !important;
    }
    
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(14, 14, 17, 0.7);
    }
    
    .hero-btn.secondary {
        background: rgba(255, 255, 255, 0.9);
        color: var(--black);
    }
}

/* ===========================================
   PAYSTACK PAYMENT MODAL - FOLLOWING ACTUAL PROGO DESIGN SYSTEM
   Integrating with your existing mains.css and mobile.css patterns
   ========================================== */

/* Payment Modal Overlay - Following your mobile-nav-overlay pattern */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(14, 14, 17, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.payment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Payment Modal - Following your engagement-card style */
.payment-modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    transform: translateY(100vh);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.payment-modal-overlay.active .payment-modal {
    transform: translateY(0);
}

/* Modal Header */
.payment-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.payment-modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.payment-modal-close {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
}

.payment-modal-close:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Modal Content */
.payment-modal-content {
    padding: 1rem 2rem 2rem;
}

.support-message {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    border-left: 4px solid var(--primary);
}

/* Form Styles - Using your exact form patterns */
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Using your exact form-input class */
.payment-form .form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.payment-form .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 76, 40, 0.1);
}

/* Amount Options - Following your spec-card pattern */
.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 0.875rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-align: center;
}

.amount-btn:hover {
    border-color: var(--primary);
    background: rgba(240, 76, 40, 0.05);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.amount-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 76, 40, 0.3);
}

.amount-note {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Submit Button - Following your exact support-btn pattern */
.payment-submit-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    justify-content: center;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.payment-submit-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.payment-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Payment Security */
.payment-security {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.payment-security p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.payment-security svg {
    color: var(--green);
}

/* Payment Notifications - Following your color scheme */
.payment-notification {
    position: fixed;
    top: 100px;
    right: 1rem;
    max-width: 400px;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    animation: slideInRight 0.3s ease;
    border: 1px solid var(--gray-200);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.payment-notification-success {
    background: var(--white);
    border-color: var(--green);
    color: var(--green-dark);
}

.payment-notification-error {
    background: var(--white);
    border-color: #ef4444;
    color: #dc2626;
}

.payment-notification-info {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 1;
}

/* Mobile Responsive - Following your mobile.css patterns */
@media (max-width: 768px) {
    .payment-modal-overlay {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .payment-modal {
        max-width: none;
        width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
        transform: translateY(100%);
    }

    .payment-modal-overlay.active .payment-modal {
        transform: translateY(0);
    }

    .payment-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .payment-modal-header h3 {
        font-size: 1.375rem;
    }

    .payment-modal-close {
        width: 28px;
        height: 28px;
    }

    .payment-modal-content {
        padding: 1rem 1.5rem 2rem;
    }

    .support-message {
        padding: 1rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .amount-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .amount-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .payment-form .form-input {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .payment-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .payment-notification {
        top: 80px;
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .payment-modal-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .payment-modal-header h3 {
        font-size: 1.25rem;
    }

    .payment-modal-content {
        padding: 0.75rem 1.25rem 1.5rem;
    }

    .payment-form .form-input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .amount-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .payment-submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .payment-modal-close {
        width: 26px;
        height: 26px;
    }
}

/* Focus states for accessibility */
.payment-modal:focus,
.payment-form .form-input:focus,
.amount-btn:focus,
.payment-submit-btn:focus,
.payment-modal-close:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .payment-modal-overlay,
    .payment-modal,
    .payment-notification,
    .amount-btn,
    .payment-submit-btn,
    .payment-modal-close {
        animation: none !important;
        transition: none !important;
    }
}

/* Custom scrollbar for modal */
.payment-modal::-webkit-scrollbar {
    width: 6px;
}

.payment-modal::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.payment-modal::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.payment-modal::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===========================================
   BUTTON ALIGNMENT FIX - SUPPORT US & SUBSCRIBE BUTTONS
   ========================================== */

/* Support Us Button Alignment */
.support-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none; /* Remove any black border */
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    min-height: 48px; /* Consistent height */
    box-sizing: border-box;
}

.support-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border: none; /* Ensure no border on hover */
}

.support-btn svg {
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: -1px; /* Fine-tune icon alignment */
}

/* Email Subscribe Button Alignment */
.email-btn {
    background: var(--primary);
    color: white;
    border: none; /* Remove any black border */
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    gap: 0.5rem;
    text-align: center;
    vertical-align: middle;
    min-height: 48px; /* Consistent height */
    box-sizing: border-box;
}

.email-btn:hover {
    background: var(--primary-dark);
    border: none; /* Ensure no border on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 76, 40, 0.3);
}

.email-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border: none; /* Remove any focus border */
}

.email-btn svg {
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: -1px; /* Fine-tune icon alignment */
}

/* Contact Submit Button Alignment */
.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none; /* Remove any black border */
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    text-align: center;
    vertical-align: middle;
    min-height: 48px; /* Consistent height */
    box-sizing: border-box;
}

.submit-btn:hover {
    background: var(--primary-dark);
    border: none; /* Ensure no border on hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border: none; /* Remove any focus border */
}

/* Email Form Layout Improvement */
.email-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch; /* Make inputs same height */
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--gray-300); /* Thicker, more visible border */
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    box-sizing: border-box;
    background: white;
    color: var(--gray-900);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 76, 40, 0.1);
}

.email-input::placeholder {
    color: var(--gray-500);
    opacity: 1;
}

/* Form Inputs Consistency */
.form-input, 
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300); /* Consistent border */
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    box-sizing: border-box;
    background: white;
    color: var(--gray-900);
}

.form-input:focus, 
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 76, 40, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-500);
    opacity: 1;
}

/* Engagement Card Button Container */
.engagement-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-200); /* Light border, not black */
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .support-btn {
        padding: 1rem 2rem;
        border-radius: 6px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
    }
    
    .email-form {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    
    .email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 6px;
        width: 100%;
        border: 2px solid var(--gray-300);
    }
    
    .email-btn {
        padding: 1rem 1.5rem;
        border-radius: 6px;
        font-size: 1rem;
        min-height: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 6px;
        min-height: 50px;
    }
    
    .engagement-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .support-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .email-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .submit-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
}

/* Remove any unwanted borders globally */
button {
    border: none;
    outline: none;
}

button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Ensure consistent button behavior */
.support-btn,
.email-btn,
.submit-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Fix any potential text alignment issues */
.support-btn *,
.email-btn *,
.submit-btn * {
    vertical-align: middle;
}

/* Ensure icons are properly aligned */
.support-btn svg,
.email-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

/* ===========================================
   FORCE PRODUCT IMAGE STRETCH - NUCLEAR OPTION
   Add this to your CSS file or in a <style> tag in your HTML
   ========================================== */

/* Force override with maximum specificity - CORRECTED */
.sketch-product-card .product-image-main .product-img,
.product-image-container .product-image-main .product-img,
.product-section .product-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;  /* CHANGED FROM fill TO cover */
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 20px !important;
    display: none !important;
    box-sizing: border-box !important;
    transform: none !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

.sketch-product-card .product-image-main .product-img.active,
.product-image-container .product-image-main .product-img.active,
.product-section .product-img.active {
    display: block !important;
}

/* Container specifications */
.sketch-product-card .product-image-main,
.product-image-container .product-image-main,
.product-section .product-image-main {
    width: 100% !important;
    height: 500px !important;
    background: #f8f9fa !important;
    border: 3px solid #dee2e6 !important;
    border-radius: 24px !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

/* Mobile - Keep cover behavior */
@media (max-width: 768px) {
    .sketch-product-card .product-image-main,
    .product-image-container .product-image-main,
    .product-section .product-image-main {
        height: 250px !important;
        min-height: 250px !important;
        border-radius: 16px !important;
        border-width: 2px !important;
    }
    
    /* Ensure cover behavior on mobile too */
    .sketch-product-card .product-image-main .product-img,
    .product-image-container .product-image-main .product-img,
    .product-section .product-img {
        object-fit: cover !important;
    }
}

@media (max-width: 480px) {
    .sketch-product-card .product-image-main,
    .product-image-container .product-image-main,
    .product-section .product-image-main {
        height: 220px !important;
        min-height: 220px !important;
        border-radius: 12px !important;
    }
}