/* Homepage Specific Styles - SEO Writer PRO VIP */

:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

.dark {
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg-blur {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.05) 100%);
    filter: blur(100px);
    z-index: -1;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
}

/* Features */
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 24px;
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* AI Providers Logo Cloud */
.provider-logo {
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s;
    height: 40px;
    object-fit: contain;
}

.provider-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Statistics */
.stat-card {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

/* ===== PREMIUM SERVICES SECTION ===== */
.services-premium-section {
    min-height: 100vh;
    /* Fallback dark gradient in case Tailwind classes don't load */
    background: linear-gradient(135deg, #020617 0%, #1e1b4b 50%, #3b0764 100%);
    position: relative;
}

/* Floating Particles Animation */
.floating-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
}

.floating-particle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    filter: blur(20px);
}

.particle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: floatParticle 20s ease-in-out infinite;
}

.particle-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation: floatParticle 25s ease-in-out infinite reverse;
}

.particle-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation: floatParticle 18s ease-in-out infinite 2s;
}

.particle-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    top: 30%;
    right: 25%;
    animation: floatParticle 22s ease-in-out infinite 3s;
}

.particle-5 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    bottom: 40%;
    left: 60%;
    animation: floatParticle 24s ease-in-out infinite 1s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 40px) scale(0.9);
    }

    75% {
        transform: translate(50px, 20px) scale(1.05);
    }
}

/* Premium Service Card */
.service-premium-card {
    perspective: 1000px;
}

.service-premium-card .card-inner {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-premium-card:hover .card-inner {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 40px -10px rgba(99, 102, 241, 0.3);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card-glow-indigo {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}

.card-glow-emerald {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.card-glow-purple {
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
}

.card-glow-blue {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.card-glow-orange {
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
}

.card-glow-amber {
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
}

.service-premium-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
}

/* Premium Service Icon */
.service-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
}

.icon-ring {
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    border: 2px solid transparent;
    opacity: 0;
    transition: all 0.4s ease;
}

.icon-ring-indigo {
    border-color: rgba(99, 102, 241, 0.5);
}

.icon-ring-emerald {
    border-color: rgba(16, 185, 129, 0.5);
}

.icon-ring-purple {
    border-color: rgba(168, 85, 247, 0.5);
}

.icon-ring-blue {
    border-color: rgba(59, 130, 246, 0.5);
}

.icon-ring-orange {
    border-color: rgba(249, 115, 22, 0.5);
}

.icon-ring-amber {
    border-color: rgba(245, 158, 11, 0.5);
}

.service-premium-card:hover .icon-ring {
    opacity: 1;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.service-icon-premium {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-premium-card:hover .service-icon-premium {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Feature Tags */
.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.15);
    color: rgba(165, 180, 252, 1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
}

.feature-tag-emerald {
    background: rgba(16, 185, 129, 0.15);
    color: rgba(110, 231, 183, 1);
    border-color: rgba(16, 185, 129, 0.25);
}

.feature-tag-purple {
    background: rgba(168, 85, 247, 0.15);
    color: rgba(216, 180, 254, 1);
    border-color: rgba(168, 85, 247, 0.25);
}

.feature-tag-blue {
    background: rgba(59, 130, 246, 0.15);
    color: rgba(147, 197, 253, 1);
    border-color: rgba(59, 130, 246, 0.25);
}

.feature-tag-orange {
    background: rgba(249, 115, 22, 0.15);
    color: rgba(253, 186, 116, 1);
    border-color: rgba(249, 115, 22, 0.25);
}

.feature-tag-amber {
    background: rgba(245, 158, 11, 0.15);
    color: rgba(252, 211, 77, 1);
    border-color: rgba(245, 158, 11, 0.25);
}

.service-premium-card:hover .feature-tag {
    transform: translateY(-2px);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Premium CTA Button */
.cta-premium-btn {
    position: relative;
    display: inline-flex;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-premium-btn .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    z-index: 0;
    transition: all 0.4s ease;
}

.cta-premium-btn .btn-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-premium-btn .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-premium-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px -15px rgba(99, 102, 241, 0.5),
        0 0 30px rgba(139, 92, 246, 0.3);
}

.cta-premium-btn:hover .btn-bg {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-premium-section {
        padding: 4rem 0;
    }

    .floating-particle {
        display: none;
    }

    .card-content {
        padding: 20px;
    }

    .service-icon-premium {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        border-radius: 14px;
    }

    .service-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .service-premium-card h3 {
        font-size: 1.25rem;
    }

    .feature-tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    .cta-premium-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
}

.dark .pricing-toggle {
    background: #1e293b;
}

.toggle-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #4f46e5;
}

.dark .toggle-btn.active {
    background: #4f46e5;
    color: white;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Testimonials */
.testimonial-card {
    position: relative;
    padding-top: 40px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: rgba(99, 102, 241, 0.1);
}

/* FAQ */
.faq-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.05);
    color: #4f46e5;
    box-shadow: none;
}

/* Fix: Override Tailwind visibility:collapse that breaks Bootstrap accordion */
.accordion-collapse.collapse {
    visibility: visible !important;
}

.accordion-collapse.collapse:not(.show) {
    display: none !important;
}

.accordion-collapse.show {
    display: block !important;
    visibility: visible !important;
}

.accordion-body {
    visibility: visible !important;
}

/* ===== MOBILE RESPONSIVE CSS ===== */

/* Extra Small Devices (phones, 375px and down) */
@media (max-width: 375px) {
    .hero-wrapper {
        padding: 30px 0;
    }

    .hero-wrapper h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    .hero-wrapper p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .compare-table {
        min-width: auto;
        font-size: 0.75rem;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px 8px;
    }

    .glass-card {
        padding: 16px;
        border-radius: 16px;
    }
}

/* Small Devices (phones, 376px to 480px) */
@media (max-width: 480px) {
    .hero-wrapper {
        padding: 40px 0;
    }

    .hero-wrapper h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-wrapper p {
        font-size: 1rem;
    }

    /* Glass card in hero - code preview */
    .glass-card.max-w-lg {
        margin: 0 -16px;
        border-radius: 16px;
    }

    .glass-card .font-mono {
        font-size: 0.75rem;
    }

    /* Stat cards */
    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Feature icon */
    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 12px;
    }

    /* Step numbers */
    .glass-card .text-5xl.font-black {
        font-size: 2rem !important;
    }

    /* Comparison table */
    .comparison-container {
        margin: 0 -16px;
        border-radius: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        min-width: 500px;
        font-size: 0.8rem;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 10px;
    }

    .compare-table .feature-col {
        width: 150px;
        font-size: 0.75rem;
    }

    /* Pricing cards */
    .glass-card .text-4xl {
        font-size: 2rem !important;
    }

    /* Testimonial cards */
    .testimonial-card {
        padding-top: 30px;
    }

    .quote-icon {
        font-size: 30px;
    }

    /* Spec cards */
    .spec-card {
        padding: 16px;
    }

    .spec-value {
        font-size: 14px;
    }

    /* Security badges */
    .security-badge {
        padding: 12px 14px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Medium Devices (tablets, 481px to 768px) */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 50px 0;
    }

    .hero-wrapper h1 {
        font-size: 2.25rem !important;
        line-height: 1.25;
    }

    .hero-wrapper p {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
    }

    /* Code preview card - make it not overflow */
    .float-animation {
        animation: none;
    }

    .glass-card {
        border-radius: 16px;
    }

    /* Stat section */
    .stat-number {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.85rem;
    }

    /* Feature cards step numbers */
    .glass-card .text-5xl.font-black {
        font-size: 2.5rem !important;
    }

    /* Comparison table - allow scroll */
    .compare-table {
        min-width: 550px;
    }
}

/* Large tablets and below (max 1024px) */
@media (max-width: 1024px) {
    .hero-wrapper h1 {
        font-size: 2.75rem !important;
    }
}

/* ===== SECTION PADDING MOBILE ===== */
@media (max-width: 640px) {

    /* Reduce vertical padding on all sections */
    section.py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    section.py-20 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    section.py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Section headings */
    section h2.text-4xl {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    section h2.text-3xl {
        font-size: 1.375rem !important;
    }

    /* Section descriptions */
    section .text-center p {
        font-size: 0.875rem;
    }

    /* Max width text containers */
    .max-w-3xl,
    .max-w-4xl {
        margin-bottom: 2rem !important;
    }

    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Grid gaps */
    .grid.gap-8 {
        gap: 1rem !important;
    }

    .grid.gap-6 {
        gap: 0.75rem !important;
    }

    /* Flex gaps for CTA buttons */
    .flex.gap-4 {
        gap: 0.75rem !important;
    }

    /* CTA Buttons - make them full width */
    .hero-wrapper .flex.flex-wrap a {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Provider logos section */
    .provider-logo {
        height: 24px;
    }

    /* Trust badges row - wrap */
    .mt-12.pt-8 {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
    }

    .mt-12.pt-8 .flex.flex-wrap {
        gap: 1rem !important;
    }

    /* Feature lists spacing */
    ul.space-y-4 li {
        font-size: 0.875rem;
    }

    /* Integration items grid */
    .integration-item {
        padding: 1rem;
    }

    .integration-item img {
        height: 28px;
    }

    .integration-item span {
        font-size: 0.875rem !important;
    }

    /* Pricing toggle */
    .pricing-toggle {
        width: 100%;
        justify-content: center;
    }

    .toggle-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    /* Pricing card features */
    .glass-card ul.space-y-4 {
        font-size: 0.875rem;
    }

    /* FAQ accordion */
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.875rem;
    }

    /* Final CTA section */
    section.py-24 h2.text-4xl.md\\:text-5xl,
    section h2.text-4xl {
        font-size: 1.5rem !important;
    }

    section.py-24 p.text-xl {
        font-size: 1rem !important;
    }

    section.py-24 .flex.flex-col.sm\\:flex-row a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== CMS INTEGRATIONS MOBILE ===== */
@media (max-width: 640px) {
    .grid.grid-cols-2.md\\:grid-cols-3.lg\\:grid-cols-6 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ===== HIDE TOP BAR ON MOBILE ===== */
@media (max-width: 640px) {

    /* Top bar - simplify on mobile */
    .bg-gradient-to-r.from-slate-900 .container>.flex {
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bg-gradient-to-r.from-slate-900 .container>.flex::-webkit-scrollbar {
        display: none;
    }
}

/* ===== TOUCH TARGETS ===== */
@media (max-width: 768px) {

    /* Ensure minimum touch target size of 44px */
    a,
    button {
        min-height: 44px;
    }

    /* Mobile menu items */
    .mobile-nav-item {
        min-height: 52px;
        padding: 0.875rem 1rem;
    }
}

/* ===== PREVENT HORIZONTAL SCROLL ===== */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Fix for absolute positioned elements */
@media (max-width: 768px) {

    .absolute.-top-20,
    .absolute.-bottom-20,
    .absolute.-right-20,
    .absolute.-left-20 {
        display: none !important;
    }

    /* Hero decorative blurs - hide on mobile */
    .hero-bg-blur {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Hide ALL absolute positioned decorative elements */
    .hero-wrapper .absolute,
    .hero-section .absolute,
    section>.absolute {
        display: none !important;
    }

    /* Images that might overflow */
    section img {
        max-width: 100%;
        height: auto;
    }

    /* Skewed images - remove skew on mobile */
    .skew-y-2,
    .skew-x-1,
    .-skew-y-2 {
        transform: none !important;
    }
}

/* Comparison Table PRO */
.comparison-container {
    overflow-x: auto;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.compare-table {
    width: 100%;
    min-width: 600px;
}

.compare-table th {
    background: rgba(99, 102, 241, 0.05);
    padding: 24px;
    font-weight: 800;
    text-align: center;
    border-bottom: 2px solid var(--glass-border);
}

.compare-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    font-weight: 500;
}

.compare-table .feature-col {
    text-align: left;
    font-weight: 700;
    color: #4f46e5;
    width: 300px;
}

.dark .compare-table .feature-col {
    color: #818cf8;
}

.check-pro {
    color: #10b981;
    font-size: 1.4rem;
}

.cross-wrong {
    color: #ef4444;
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Integrations Cloud */
.integration-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    filter: grayscale(1);
    opacity: 0.6;
}

.dark .integration-item {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.integration-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    border-color: #4f46e5;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

/* AI Spec Cards */
.spec-card {
    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.spec-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    transform: scale(1.02);
}

.spec-label {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 4px;
    display: block;
}

.spec-value {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

.dark .spec-value {
    color: #f1f5f9;
}

/* Security Badges */
.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.dark .security-badge {
    background: rgba(16, 185, 129, 0.1);
}

/* ===== SERVICES SHOWCASE SECTION ===== */
.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card .glass-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .glass-card {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-card a:hover {
    gap: 12px;
}

.service-card a i {
    transition: transform 0.3s ease;
}

.service-card:hover a i {
    transform: translateX(4px);
}

/* Service Cards Responsive */
@media (max-width: 768px) {
    .service-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        font-size: 1.25rem;
    }

    .service-card .glass-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card ul li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .service-card .glass-card {
        padding: 1rem;
    }

    /* Hide decorative corner on mobile */
    .service-card .absolute.top-0.right-0 {
        display: none;
    }
}

/* ===== WHO USES / USER TYPE SECTION ===== */
.user-type-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.user-type-card:hover .user-type-icon {
    transform: scale(1.15) rotate(-5deg);
}

.user-type-card>div {
    transition: all 0.3s ease;
}

.user-type-card:hover>div {
    transform: translateY(-8px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-card {
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.dark .why-choose-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.dark .why-choose-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-color: rgba(99, 102, 241, 0.35);
}

.why-choose-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

/* User Type & Why Choose Responsive */
@media (max-width: 768px) {
    .user-type-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .user-type-card>div {
        padding: 1rem;
    }

    .why-choose-card {
        padding: 1rem;
    }

    .why-choose-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 12px;
    }

    .why-choose-card h3 {
        font-size: 1rem;
    }

    .why-choose-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .user-type-card h3 {
        font-size: 1rem;
    }

    .user-type-card p {
        font-size: 0.8rem;
    }

    /* Stack Why Choose items */
    .why-choose-card .flex {
        gap: 12px;
    }
}

h2.text-4xl.md\:text-5xl.font-black.mb-6 {
    color: #4c00ff;
}

/* ===== FEATURED TOOLS SECTION ===== */
.featured-tools-section {
    min-height: 80vh;
}

.tool-card {
    cursor: pointer;
}

.tool-card-inner {
    position: relative;
    overflow: hidden;
}

.tool-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tool-color-1, #f59e0b), var(--tool-color-2, #ea580c));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover .tool-card-inner::before {
    opacity: 1;
}

.tool-card:nth-child(1) .tool-card-inner {
    --tool-color-1: #f59e0b;
    --tool-color-2: #ea580c;
}

.tool-card:nth-child(2) .tool-card-inner {
    --tool-color-1: #10b981;
    --tool-color-2: #14b8a6;
}

.tool-card:nth-child(3) .tool-card-inner {
    --tool-color-1: #a855f7;
    --tool-color-2: #ec4899;
}

.tool-card:nth-child(4) .tool-card-inner {
    --tool-color-1: #3b82f6;
    --tool-color-2: #06b6d4;
}

.tool-icon {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-card {
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-8px);
}

.success-card>div {
    position: relative;
    overflow: hidden;
}

.success-card>div::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent);
    pointer-events: none;
}

/* ===== LIVE STATS COUNTER SECTION ===== */
.live-stats-section {
    position: relative;
}

.counter-number {
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-number.animated {
    animation: countUp 0.5s ease-out forwards;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.glass-newsletter {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.glass-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.1), transparent 30%);
    animation: rotateBg 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.glass-newsletter input:focus {
    background: rgba(255, 255, 255, 0.15);
}

/* Newsletter Button Hover */
.glass-newsletter button:hover {
    transform: translateY(-2px);
}

/* ===== AI MODELS SECTION ===== */
.ai-models-section {
    min-height: 50vh;
}

.ai-model-card>div {
    transition: all 0.3s ease;
}

.ai-model-card:hover>div {
    transform: translateY(-5px);
}

/* ===== PRICING PREVIEW SECTION ===== */
.pricing-card.featured {
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card>div {
    transition: all 0.3s ease;
}

.pricing-card:not(.featured):hover>div {
    transform: translateY(-5px);
}

/* ===== TRUST BADGES SECTION ===== */
.trust-badge {
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    section.featured-tools-section.py-32.relative.overflow-hidden {
        background-color: #3e00a6;
    }

    section.live-stats-section.py-24.relative.overflow-hidden {
        background-color: #3e00a6;
    }

    .glass-newsletter.bg-white\/5.backdrop-blur-xl.border.border-white\/10.rounded-3xl.p-8.md\:p-12 {
        background-color: #3e00a6;
    }

    section.py-24.relative.overflow-hidden {
        background-color: #3e00a6;
    }

    h2.text-4xl.md\:text-5xl.font-black.mb-6 {
        color: #3c04f7;
    }

    /* General Container */
    .containerss {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Hero Section Mobile */
    .hero-wrapper {
        padding: 60px 0 40px;
    }

    .hero-wrapper h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .hero-wrapper p {
        font-size: 1rem;
    }

    .hero-wrapper .flex-wrap {
        flex-direction: column;
    }

    .hero-wrapper .flex-wrap a {
        width: 100%;
        justify-content: center;
    }

    /* Provider Logos - 2 columns */
    .hero-wrapper .flex.flex-wrap.gap-6 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .provider-logo {
        height: 24px !important;
    }

    /* Services Cards Mobile */
    .services-premium-section,
    .featured-tools-section,
    .newsletter-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .premium-service-card,
    .tool-card-inner {
        padding: 1.25rem !important;
    }

    /* Tool Icons */
    .tool-icon,
    .premium-icon-wrapper {
        width: 48px !important;
        height: 48px !important;
    }

    /* Who Uses Section Mobile */
    .user-type-card>div {
        padding: 1rem !important;
    }

    .user-type-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .user-type-card h3 {
        font-size: 1rem;
    }

    .user-type-card p {
        font-size: 0.8rem;
    }

    /* Why Choose Section Mobile */
    .why-choose-card {
        padding: 1rem;
    }

    .why-choose-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 12px;
    }

    .why-choose-card h3 {
        font-size: 1rem;
    }

    .why-choose-card p {
        font-size: 0.85rem;
    }

    /* Success Stories Mobile */
    .success-card>div {
        padding: 1.25rem !important;
    }

    .success-card .grid-cols-2 {
        gap: 0.5rem !important;
    }

    .success-card .grid-cols-2>div {
        padding: 0.75rem !important;
    }

    .success-card .text-3xl {
        font-size: 1.5rem !important;
    }

    .success-card .text-xs {
        font-size: 0.65rem !important;
    }

    /* Live Stats Counter Mobile - Bigger & Better */
    .live-stats-section {
        padding: 2.5rem 0;
    }

    .counter-number {
        font-size: 2.8rem !important;
        letter-spacing: -1px;
    }

    .live-stats-section .grid {
        gap: 1.5rem;
    }

    .live-stats-section .text-white\/70 {
        font-size: 0.75rem;
    }

    /* Newsletter Mobile */
    .glass-newsletter {
        padding: 1.5rem !important;
        border-radius: 1rem !important;
    }

    .glass-newsletter h2 {
        font-size: 1.25rem !important;
    }

    .glass-newsletter p {
        font-size: 0.9rem !important;
    }

    .glass-newsletter form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .glass-newsletter input,
    .glass-newsletter button {
        width: 100%;
        padding: 0.875rem 1rem !important;
    }

    .glass-newsletter .flex-wrap {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start !important;
    }

    /* Comparison Table - Scrollable */
    .comparison-table-wrapper,
    table {
        overflow-x: auto;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    /* CMS Integrations - 2 columns */
    .integration-item {
        padding: 0.75rem !important;
    }

    .integration-item img {
        height: 24px !important;
    }

    /* Final CTA - Stack buttons */
    section:last-of-type .flex-col.sm\:flex-row {
        flex-direction: column !important;
    }

    section:last-of-type .flex-col.sm\:flex-row a {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }

    /* Section Titles */
    h2.text-4xl,
    h2.text-5xl,
    h2.text-6xl {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }

    /* Section Descriptions */
    .text-xl {
        font-size: 1rem !important;
    }

    /* Badge Pills */
    .inline-flex.items-center.gap-2 {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem !important;
    }
}

@media (max-width: 480px) {

    /* Extra small screens */
    .hero-wrapper h1 {
        font-size: 2rem !important;
    }

    .counter-number {
        font-size: 2.2rem !important;
    }

    h2.text-4xl,
    h2.text-5xl,
    h2.text-6xl {
        font-size: 1.5rem !important;
    }

    /* Single column grids */
    .grid.grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    /* Feature tags - wrap better */
    .premium-feature-tags {
        gap: 0.25rem !important;
    }

    .premium-feature-tags span {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
    }
}

@media (max-width: 375px) {

    /* iPhone SE and smaller */
    .containerss {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-wrapper h1 {
        font-size: 1.75rem !important;
    }

    .counter-number {
        font-size: 2rem !important;
    }

    .glass-newsletter h2 {
        font-size: 1.1rem !important;
    }
}