/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: "Instrument Sans", sans-serif;
}

h1 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.015em;
}

h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    letter-spacing: -0.008em;
}

h5 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.005em;
}

h6 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    font-weight: 600;
    letter-spacing: -0.003em;
}

p, .body-text {
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
}

.btn {
    font-family: "Instrument Sans", sans-serif;
}

/* Camera SDK Specific Styles */

/* SVG Icon Styling */
.badge-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-icon-large img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.marker-icon img {
    width: 50px;
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.use-case-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: brightness(0.2) sepia(1) saturate(3) hue-rotate(190deg);
}

.why-choose-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 16px;
}

.platform-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.2) sepia(1) saturate(3) hue-rotate(190deg);
}

/* Icons on blue backgrounds should be white */
/* .feature-icon-large,
.roadmap-marker,
.transformation-badge .badge-icon,
.roadmap-badge .badge-icon,
.features-badge .badge-icon {
    background: linear-gradient(135deg, #0184FA, #1d4ed8);
} */

/* .feature-icon-large img,
.marker-icon img,
.transformation-badge .badge-icon img,
.roadmap-badge .badge-icon img,
.features-badge .badge-icon img {
    filter: brightness(0) invert(1);
} */

/* Use case icons with brand color effect */
.use-case-icon img {
    filter: brightness(0.2) sepia(1) saturate(3) hue-rotate(190deg) brightness(1.2);
}

/* Camera Hero Section */
.camera-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Enhanced hero background with animated mesh */
.camera-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Animated grid pattern overlay */
.camera-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.camera-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.camera-hero-content {
    color: white;
}

.camera-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.camera-hero-badge .badge {
    background: #0184FA;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.camera-hero-badge .badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.camera-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}

.camera-hero-title .gradient-text {
    font-weight: 900;
    position: relative;
    display: inline-block;
    animation: gradientShift 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    color: white;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* .camera-hero-title .gradient-text:hover {
    animation-duration: 1s;
    transform: scale(1.02);
    transition: transform 0.3s ease;
} */

/* Text Particles */
.text-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 200px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.text-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #60a5fa 0%, #a78bfa 50%, #06d6a0 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(var(--x), var(--y));
    animation: particleFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
    box-shadow: 0 0 10px currentColor;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(var(--x), var(--y)) scale(0);
    }
    25% {
        opacity: 1;
        transform: translate(-50%, -50%) translate(calc(var(--x) * 1.5), calc(var(--y) * 1.5)) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) translate(calc(var(--x) * 2), calc(var(--y) * 2)) scale(1.2);
    }
    75% {
        opacity: 0.5;
        transform: translate(-50%, -50%) translate(calc(var(--x) * 1.5), calc(var(--y) * 1.5)) scale(0.8);
    }
}

/* Clean and crisp gradient text */
.camera-hero-title {
    position: relative;
}

/* Additional subtle glow effect without blur */
.camera-hero-title .gradient-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite;
}

.camera-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.camera-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.camera-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 500px;
}

.camera-stat-item {
    text-align: center;
}

.camera-stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.camera-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Camera Hero Visual */
.camera-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.camera-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.camera-demo-video {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.camera-demo-video video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: -1;
}

.camera-demo-video video:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.camera-device {
    position: relative;
    z-index: 2;
}

.device-frame {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 2s ease;
    animation: deviceShine 3s ease-in-out infinite;
}

@keyframes deviceShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.device-screen {
    background: #000;
    border-radius: 20px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.camera-interface {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.filter-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.filter-preview.active {
    background: rgba(59, 130, 246, 0.3);
    border-color: #0184FA;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.filter-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.preview-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.preview-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.floating-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
}

.effect-bubble {
    position: absolute;
    /* background: rgba(255, 255, 255, 0.15); */
    background: rgb(1 132 250 / 53%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    left: var(--x);
    top: var(--y);
}

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

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

/* Camera Features Section */
.camera-features {
    padding: 100px 0;
    background: #f8fafc;
}

.camera-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.camera-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-large {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
    border-color: #0184FA;
}

.feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-large:hover::before {
    transform: scaleX(1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0184FA, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.feature-description-large {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.highlight-item {
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: #e2e8f0;
    transform: translateX(4px);
}

/* Camera Roadmap Section */
.camera-roadmap {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.camera-roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.roadmap-badge .badge-icon {
    font-size: 1rem;
}

.roadmap-badge .badge-text {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.875rem;
}

.roadmap-timeline {
    margin-top: 3rem;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0184FA, #8b5cf6);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.roadmap-marker::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: roadmapPulse 2s ease-in-out infinite;
}

@keyframes roadmapPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.marker-icon {
    font-size: 1.5rem;
    color: white;
}

.roadmap-content {
    flex: 1;
    padding-top: 0.5rem;
}

.roadmap-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.roadmap-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.roadmap-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roadmap-status.coming {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.roadmap-status.development {
    background: rgba(6, 214, 160, 0.2);
    color: #06d6a0;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.roadmap-status.planned {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Camera Use Cases Section */
.camera-use-cases {
    padding: 100px 0;
    background: white;
}

.camera-use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
    background: white;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6);
    transition: width 0.3s ease;
}

.use-case-card:hover::before {
    width: 100%;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.use-case-description {
    color: #64748b;
    line-height: 1.7;
}

/* Camera Why Choose Section */
.camera-why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.camera-why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
    border-color: #0184FA;
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-choose-description {
    color: #64748b;
    line-height: 1.7;
}

/* Camera CTA Section */
.camera-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0184FA 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.camera-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.camera-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.camera-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.camera-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Documentation Section */
.documentation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.documentation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.documentation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.documentation-badge .badge-icon {
    font-size: 1rem;
}

.documentation-badge .badge-text {
    color: #0184FA;
    font-weight: 600;
    font-size: 0.875rem;
}

.code-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.code-example-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.code-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
    border-color: #0184FA;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e2e8f0;
}

.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.platform-icon.android {
    background: linear-gradient(135deg, #3ddc84, #2db55d);
}

.platform-icon.ios {
    background: linear-gradient(135deg, #007aff, #0056b3);
}

.platform-icon.flutter {
    background: linear-gradient(135deg, #02569b, #0175c2);
}

.platform-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.platform-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #0184FA;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.code-block {
    background: #1a1a1a;
    color: #e2e8f0;
    position: relative;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #2d2d2d;
    border-bottom: 1px solid #404040;
}

.code-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    color: #9ca3af;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: #404040;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab.active {
    color: #60a5fa;
    background: #1a1a1a;
}

.copy-button {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.copy-button:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

.code-content {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

.code-content code {
    color: #e2e8f0;
}

.code-comment { color: #6b7280; }
.code-keyword { color: #60a5fa; font-weight: 600; }
.code-string { color: #34d399; }
.code-function { color: #a78bfa; }
.code-class { color: #f59e0b; }
.code-boolean { color: #fb7185; }

.documentation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.documentation-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0184FA;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.documentation-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.documentation-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.documentation-btn .icon {
    font-size: 1rem;
}

/* Enhanced Responsive Design for Camera SDK */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .camera-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .camera-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .camera-hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .camera-hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .camera-hero-badge {
        margin-top: 24px;
        margin-bottom: 24px;
    }
    
    .camera-hero-badge .badge {
        font-size: clamp(0.75rem, 3vw, 0.875rem);
    }
    
    .camera-hero-badge .badge-text {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    }
    
    .camera-hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .camera-hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        min-height: 48px;
        font-size: 1rem;
    }
    
    /* Mobile Stats */
    .camera-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 40px;
    }
    
    .camera-stat-item {
        padding: 20px 16px;
    }
    
    .camera-stat-number {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 8px;
    }
    
    .camera-stat-label {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        line-height: 1.3;
    }
    
    /* Mobile Grid Layouts */
    .camera-features-grid,
    .use-cases-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 16px;
    }
    
    /* Mobile Cards */
    .feature-card-large,
    .use-case-card,
    .why-choose-card {
        padding: 24px 20px;
        margin: 0;
        border-radius: 12px;
    }
    
    .feature-title-large,
    .use-case-title,
    .why-choose-title {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .feature-description-large,
    .use-case-description,
    .why-choose-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .feature-icon-large,
    .use-case-icon,
    .why-choose-icon {
        margin-bottom: 16px;
    }
    
    /* Mobile Feature Highlights */
    .feature-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .highlight-item {
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        padding: 8px 0;
    }
    
    /* Mobile Roadmap */
    .roadmap-item {
        gap: 1rem;
        padding: 0 16px;
    }
    
    .roadmap-timeline::before {
        display: none; /* Hide animated line on mobile */
    }
    
    .roadmap-marker {
        width: 40px;
        height: 40px;
        margin-left: 4px;
    }
    
    .marker-icon {
        font-size: 1.2rem;
    }
    
    .roadmap-content {
        padding-left: 24px;
    }
    
    .roadmap-title {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
        margin-bottom: 8px;
    }
    
    .roadmap-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .roadmap-status {
        font-size: clamp(0.75rem, 3vw, 0.85rem);
        padding: 6px 12px;
    }
    
    /* Mobile Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.125rem);
        line-height: 1.5;
        max-width: 100%;
    }
    
    /* Mobile CTA */
    .camera-cta-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .camera-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .camera-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
    }
    
    /* Mobile Documentation */
    .code-examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 16px;
    }
    
    .documentation-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .documentation-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .documentation-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .documentation-actions .btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }
    
    .platform-header {
        padding: 1rem 1.5rem;
    }
    
    .code-content {
        padding: 1rem;
        font-size: clamp(0.75rem, 2.5vw, 0.8rem);
        line-height: 1.4;
    }
    
    /* Mobile Visual Elements */
    .camera-showcase {
        padding: 0 20px;
    }
    
    .camera-demo-video {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .camera-demo-video video {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile Container Padding */
    .camera-features-container,
    .camera-use-cases-container,
    .camera-why-choose-container,
    .camera-roadmap-container,
    .multiplatform-container {
        padding: 0 20px;
    }
    
    /* Mobile Section Spacing */
    .camera-features,
    .camera-use-cases,
    .camera-why-choose,
    .camera-roadmap,
    .multiplatform-sdk {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .camera-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .camera-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camera-hero-buttons .btn {
        width: 100%;
        max-width: 195px;
    }
}

/* Multiplatform SDK Section */
.multiplatform-sdk {
    padding: 120px 0;
    background: #ffffff;
}

.multiplatform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.multiplatform-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.multiplatform-badge .badge-text {
    color: #0184FA;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.platform-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* .platform-card:hover {
    transform: translateY(-4px);
    border-color: #0184FA;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
} */

/* Removed platform card hover animation as requested */

.platform-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

/* .platform-card:hover .platform-icon {
    transform: scale(1.1);
} */

.platform-icon img {
    width: 40px;
    height: 40px;
}

.platform-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.platform-link {
    color: #0184FA;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.platform-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* New Integration Layout */
.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
    align-items: start;
}

.platforms-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platforms-column .platform-card {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Removed hover animation as requested */

.platforms-column .platform-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}

.platforms-column .platform-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.platform-info {
    flex: 1;
}

.platforms-column .platform-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.platforms-column .platform-description {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.platforms-column .platform-link {
    color: #0184FA;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.platforms-column .platform-link:hover {
    color: #2563eb;
}

.code-column {
    position: sticky;
    top: 100px;
}

.code-example-container {
    width: 100%;
}

.platform-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .code-column {
        position: static;
    }
    
    .platforms-column .platform-card {
        flex-direction: column;
        text-align: center;
    }
    
    .platforms-column .platform-icon {
        margin-right: 0;
        margin-bottom: 16px;
        display: contents;
    }
}

/* SDK Features Section */
.sdk-features {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sdk-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.sdk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.sdk-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.sdk-badge .badge-text {
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdk-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.sdk-content .sdk-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.sdk-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.sdk-actions {
    display: flex;
    gap: 16px;
}

.sdk-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-window {
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #334155;
}

.code-controls {
    display: flex;
    gap: 8px;
}

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

.control.red { background: #ef4444; }
.control.yellow { background: #eab308; }
.control.green { background: #22c55e; }

.code-content {
    padding: 24px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.code-content pre {
    margin: 0;
    white-space: pre-wrap;
}

.code-content code {
    color: #e2e8f0;
}

.code-import { color: #c084fc; }
.code-keyword { color: #60a5fa; }
.code-variable { color: #e2e8f0; }
.code-function { color: #34d399; }
.code-property { color: #f59e0b; }
.code-string { color: #fbbf24; }

.features-showcase {
    margin-top: 80px;
}

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

.feature-category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-category-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.category-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.category-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .platform-card {
        padding: 24px 16px;
    }
    
    .platform-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .sdk-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sdk-content .sdk-title {
        font-size: 2rem;
    }
    
    .sdk-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-category-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .sdk-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .sdk-actions .btn {
        width: 100%;
        max-width: 195px;
    }
    
    .code-content {
        padding: 16px;
        font-size: 0.8rem;
    }
}

/* Documentation Section */
.documentation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

/* ===== CAMERA SDK MOBILE ENHANCEMENTS ===== */

/* Enhanced Camera Hero for Mobile */
@media (max-width: 768px) {
    .camera-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .camera-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .camera-hero-content {
        order: 1;
    }
    
    .camera-hero-visual {
        order: 2;
        margin-top: 32px;
    }
    
    .camera-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .camera-hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .camera-hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .camera-hero-buttons .btn {
        width: 100%;
        max-width: 195px;
        min-height: 48px;
    }
    
    .camera-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .camera-stat-number {
        font-size: 1.5rem;
    }
    
    .camera-stat-label {
        font-size: 0.75rem;
    }
}

/* Enhanced Camera Features for Mobile */
@media (max-width: 768px) {
    .camera-features {
        padding: 60px 0;
    }
    
    .camera-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card-large {
        padding: 24px;
        border-radius: 12px;
    }
    
    .feature-icon-large {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .feature-title-large {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .feature-description-large {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .feature-highlights {
        gap: 8px;
    }
    
    .highlight-item {
        font-size: 0.875rem;
        padding: 4px 0;
    }
    
    /* Enhanced Camera Roadmap for Mobile */
    .camera-roadmap {
        padding: 60px 0;
    }
    
    .roadmap-timeline {
        gap: 24px;
    }
    
    .roadmap-timeline::before {
        display: none; /* Ensure animated line is hidden on smaller mobile screens */
    }
    
    .roadmap-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .roadmap-marker {
        order: 1;
        margin: 0 auto;
    }
    
    .roadmap-content {
        order: 2;
        text-align: center;
    }
    
    .roadmap-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .roadmap-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .roadmap-status {
        align-self: center;
    }
    
    /* Enhanced Use Cases for Mobile */
    .camera-use-cases {
        padding: 60px 0;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .use-case-card {
        padding: 24px;
        text-align: center;
        border-radius: 12px;
    }
    
    .use-case-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 16px;
    }
    
    .use-case-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .use-case-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Enhanced Multiplatform Section for Mobile */
    .multiplatform-sdk {
        padding: 60px 0;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platforms-column {
        order: 2;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .code-column {
        order: 1;
    }
    
    .platform-card {
        padding: 20px;
        border-radius: 12px;
        min-height: auto;
        text-align: center;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 12px;
    }
    
    .platform-title {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
    
    .platform-description {
        font-size: 0.875rem;
    }
    
    .code-example-container {
        max-width: 100%;
        overflow-x: auto;
    }
    
    .code-content {
        padding: 20px;
    }
    
    .code-content pre {
        font-size: 0.8rem;
        line-height: 1.5;
        white-space: pre-wrap;
        word-break: break-word;
    }
    
    /* Enhanced Media Transformation for Mobile */
    .media-transformation {
        padding: 60px 0;
    }
    
    .transformation-title {
        font-size: clamp(1.875rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .transformation-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }
    
    /* Enhanced Camera Showcase for Mobile */
    .camera-showcase {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .camera-demo-video {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .camera-demo-video video {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
/*     
    .floating-effects {
        display: none;
    } */
}

@media (max-width: 480px) {
    /* Enhanced Mobile Typography */
    .camera-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .camera-hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .transformation-title,
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        line-height: 1.4;
        padding: 0 10px;
    }
    
    /* Enhanced Mobile Stats */
    .camera-hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    
    .camera-stat-item {
        padding: 16px;
        text-align: center;
    }
    
    .camera-stat-number {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 8px;
    }
    
    .camera-stat-label {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    /* Enhanced Mobile Buttons */
    .camera-hero-buttons {
        gap: 12px;
        padding: 0 20px;
    }
    
    .camera-hero-buttons .btn,
    .cta-buttons .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
    }
    
    /* Enhanced Mobile Cards */
    .feature-card-large {
        padding: 20px;
        margin: 0 10px;
    }
    
    .feature-title-large {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .feature-description-large {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .highlight-item {
        font-size: clamp(0.8rem, 3vw, 0.85rem);
        padding: 6px 0;
    }
    
    /* Enhanced Mobile Platform Cards */
    .platform-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .platform-title {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }
    
    .platform-description {
        font-size: clamp(0.8rem, 3vw, 0.85rem);
    }
    
    /* Enhanced Mobile Use Cases */
    .use-case-card {
        padding: 20px 16px;
        margin: 0 10px 16px;
    }
    
    .use-case-title {
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .use-case-description {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem);
        line-height: 1.4;
    }
    
    /* Enhanced Mobile Why Choose */
    .why-choose-card {
        padding: 20px 16px;
        margin: 0 10px 16px;
    }
    
    .why-choose-title {
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .why-choose-description {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem);
        line-height: 1.4;
    }
    
    /* Enhanced Mobile Roadmap */
    .roadmap-title {
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .roadmap-description {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem);
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .roadmap-status {
        font-size: clamp(0.75rem, 3vw, 0.8rem);
        padding: 4px 12px;
    }
    
    /* Enhanced Mobile Video */
    .camera-demo-video {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Enhanced Mobile Spacing */
    .camera-hero {
        padding: 80px 0 50px;
    }
    
    .camera-features,
    .camera-use-cases,
    .camera-why-choose,
    .camera-roadmap,
    .multiplatform-sdk {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
        padding: 0 20px;
    }
    
    .camera-features-container,
    .camera-use-cases-container,
    .camera-why-choose-container,
    .camera-roadmap-container,
    .multiplatform-container {
        padding: 0 16px;
    }
    
    /* Enhanced Mobile Touch Targets */
    .badge,
    .roadmap-status {
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Enhanced Mobile Badge Responsiveness */
    .features-badge,
    .roadmap-badge,
    .multiplatform-badge {
        margin: 0 auto 20px;
        text-align: center;
    }
    
    .features-badge .badge-text,
    .roadmap-badge .badge-text,
    .multiplatform-badge .badge-text {
        font-size: clamp(0.75rem, 3vw, 0.875rem);
    }
    
    /* Enhanced Mobile Icon Sizing */
    .feature-icon-large img,
    .use-case-icon img,
    .marker-icon img {
        width: clamp(32px, 8vw, 48px);
        height: clamp(32px, 8vw, 48px);
    }
    
    /* Enhanced Mobile Video Responsiveness */
    /* .floating-effects {
        display: none;
    } */
    
    /* Enhanced Mobile Container Max-Width */
    .camera-hero-container,
    .camera-features-container,
    .camera-use-cases-container,
    .camera-why-choose-container,
    .camera-roadmap-container,
    .multiplatform-container {
        max-width: 100%;
        overflow-x: hidden;
    }
}


/* Product Hunt Badge Styling */
.product-hunt-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-hunt-badge a {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-hunt-badge a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-hunt-img {
    width: 250px;
    height: 54px;
    display: block;
    transition: all 0.3s ease;
}

/* Responsive Design for Product Hunt Badge */
@media (max-width: 768px) {
    .product-hunt-badge {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-hunt-img {
        width: 200px;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .product-hunt-badge {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .product-hunt-img {
        width: 180px;
    }
}


/* Product Hunt Interactive Card Styling */
.product-hunt-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.product-hunt-card iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-hunt-card iframe:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Product Hunt Card */
@media (max-width: 768px) {
    .product-hunt-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-hunt-card iframe {
        width: 100%;
        max-width: 400px;
        height: 324px; /* Maintain aspect ratio */
    }
}

@media (max-width: 480px) {
    .product-hunt-card {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .product-hunt-card iframe {
        width: 100%;
        max-width: 320px;
        height: 259px; /* Maintain aspect ratio */
    }
}

/* Product Hunt Recognition Section */
.product-hunt-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.product-hunt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-hunt-section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.product-hunt-section-badge .badge-text {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-hunt-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

/* Updated Product Hunt Badge for Section */
.product-hunt-section .product-hunt-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.product-hunt-section .product-hunt-badge a {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-hunt-section .product-hunt-badge a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-hunt-section .product-hunt-img {
    width: 250px;
    height: 54px;
    display: block;
    transition: all 0.3s ease;
}

/* Updated Product Hunt Card for Section */
.product-hunt-section .product-hunt-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.product-hunt-section .product-hunt-card iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
}

.product-hunt-section .product-hunt-card iframe:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Product Hunt Section */
@media (max-width: 768px) {
    .product-hunt-section {
        padding: 80px 0;
    }
    
    .product-hunt-content {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .product-hunt-section .product-hunt-badge {
        padding: 0 1rem;
    }
    
    .product-hunt-section .product-hunt-img {
        width: 200px;
        height: auto;
        max-width: 100%;
    }
    
    .product-hunt-section .product-hunt-card {
        padding: 0 1rem;
    }
    
    .product-hunt-section .product-hunt-card iframe {
        width: 100%;
        max-width: 400px;
        height: 324px;
    }
}

@media (max-width: 480px) {
    .product-hunt-section {
        padding: 60px 0;
    }
    
    .product-hunt-content {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .product-hunt-section .product-hunt-img {
        width: 180px;
    }
    
    .product-hunt-section .product-hunt-card {
        padding: 0 0.5rem;
    }
    
    .product-hunt-section .product-hunt-card iframe {
        width: 100%;
        max-width: 320px;
        height: 259px;
    }
}
