
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B5CF6;
    --secondary-color: #3B82F6;
    --accent-color: #F97316;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-dark: #0F172A;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px 0 rgb(0 0 0 / 0.06);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-secondary: linear-gradient(135deg, #F97316 0%, #F59E0B 100%);
    --gradient-hero: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #F97316 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Utilities */
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    border: none;
    animation: gradient-shift 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

/* Logo icon styling */
.logo-icon {
    width: 220px;
    height: auto; 
    display: block; 
    text-decoration: none; /* Remove any underline from the image link */
}




.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
   /* padding: 16px 24px;*/
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    margin: 0;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 800;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05) rotate(1deg);
}


/*hero section 2*/

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(var(--accent-glow));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: statsSlideIn 1s ease-out 0.5s both;
}

@keyframes statsSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    color: #fff;
}


.trust-badges1 {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
    font-size: 0.9rem;
}

.trust-badges1 span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    color: #fff;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-mockup {
    perspective: 1000px;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: ebookFloat 4s ease-in-out infinite;
}

@keyframes ebookFloat {
    0%, 100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-10px);
    }
}

.ebook-mockup:hover {
    transform: rotateY(-8deg) rotateX(2deg) scale(1.08);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5)) brightness(1.1);
    animation-play-state: paused;
}

.ebook-cover {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #1f2937, #374151, #4f46e5);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.ebook-cover a:link {
  /* Style for unvisited links */
  color: #0099cc;
  text-decoration: none;
}

.ebook-cover a:visited {
  /* Style for visited links */
  color: #660099;
   text-decoration: none;
}

.ebook-cover a:hover {
  /* Style when the mouse hovers over the link */
  color: #ff6600;
  text-decoration: underline;
}

.ebook-cover a:active {
  /* Style for the moment the link is being clicked */
  color: #cc0000;
   text-decoration: none;
}

.ebook-cover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.ebook-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    text-align: center;
}

.ebook-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    text-align: center;
    margin-top: 0.5rem;
}

.ebook-icon {
    text-align: center;
    font-size: 4rem;
    color: #6366f1;
    margin: 2rem 0;
}


/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
}

.product-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.single-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image-section {
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 24px;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.single-product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.image-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.format-badge,
.prompts-count {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-details {
    padding: 24px;
}

.product-header {
    margin-bottom: 32px;
}

.product-title {
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.product-features {
    margin-top: 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-item .feature-icon {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-pricing-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    max-width: 450px;
    width: 100%;
}

.single-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    margin-bottom: 24px;
}

.badge-text {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    margin-bottom: 16px;
    font-weight: 700;
}

.price-container {
    margin-bottom: 16px;
}

.current-price {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.price-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.original-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount {
    background: var(--gradient-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-benefits {
    text-align: left;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-weight: 500;
}

.check-icon {
    font-size: 16px;
    color: var(--success-color);
}

.pricing-cta {
    margin-bottom: 16px;
}

.cta-button {
    width: 100%;
    font-size: 18px;
    padding: 16px 32px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.button-text {
    font-weight: 700;
}

.button-subtext {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

.guarantee-text {
    color: var(--success-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}


/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease-in-out infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="200" r="120" fill="url(%23b)"/><circle cx="200" cy="800" r="100" fill="url(%23b)"/></svg>');
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-content h2 {
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-weight: 800;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta .btn-primary {
    background: white;
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    font-size: 18px;
    padding: 16px 32px;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 64px 0 24px;
}

.footer-container {
        max-width: 1350px;
        margin: 0 auto;
        padding: 0 24px;}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 4px 0;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

.newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
    color: var(--text-light);
}


.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #333;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.facebook {
    background: url('https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg') center/30px no-repeat;
}

.instagram {
    background: url('https://upload.wikimedia.org/wikipedia/commons/9/95/Instagram_logo_2022.svg') center/30px no-repeat;
}

.linkedin {
    background: url('https://promptsproai.com/assets/image/linkedin.svg') center/30px no-repeat;
}

.twitter {
    background: url('https://promptsproai.com/assets/image/twitter.svg') center/30px no-repeat;
}

.youtube {
    background: url('https://upload.wikimedia.org/wikipedia/commons/4/42/YouTube_icon_%282013-2017%29.png') center/30px no-repeat;
}


/* Responsive Design */
@media (max-width: 768px) {.container {padding: 0 16px;}
        .nav-menu {position: fixed;top: 100%;left: 0;right: 0;background: var(--bg-primary);flex-direction: column;padding: 24px;box-shadow: var(--shadow-lg);transform: translateY(-100%);opacity: 0;visibility: hidden;transition: all 0.3s ease;}
        .nav-menu.active {transform: translateY(0);opacity: 1;visibility: visible;}
.nav {padding: 2px 14px}
    .nav-toggle {display: flex;}
    .hero {padding: 100px 0 60px;}
    .hero-content {grid-template-columns: 1fr;gap: 40px;text-align: center;}
    .hero-stats {justify-content: center;}
    .hero-cta {justify-content: center;}
    .features,
    .product-showcase,
    .pricing-section,
    .testimonials {padding: 60px 0;}
    .section-header {margin-bottom: 40px;}
    .features-grid,.testimonials-grid {grid-template-columns: 1fr;gap: 24px;}
    .single-product-card {grid-template-columns: 1fr;gap: 40px;}
    .newsletter {flex-direction: column;}
    .hero-title {font-size: 2.5rem;}
    .feature-icon {font-size: 48px;}
    .feature-grid {grid-template-columns: 1fr;}



    /*Hero 2*/

    .hero {padding: 6rem 1rem 3rem;text-align: center;}
    .hero-content {grid-template-columns: 1fr;gap: 2rem;}
    .hero-text h1 {font-size: 2.5rem;}
    .hero-text p {font-size: 1.1rem;}
    .hero-stats {justify-content: center;gap: 1rem;}  
    .trust-badges {justify-content: center;gap: 1rem;flex-wrap: wrap;}
    .ebook-cover {width: 250px;height: 330px;padding: 1.5rem;}
    .ebook-title {font-size: 1.5rem;}
    .ebook-icon {font-size: 3rem;margin: 1rem 0;}}

@media (max-width: 480px) {.btn {display: block;width: 100%;margin-bottom: 8px} 
    .hero-cta {flex-direction: column;}   
    .hero-stats {flex-direction: column;gap: 16px;}
    .hero-title {font-size: 2rem;}
    .hero-description {font-size: 16px;}}

/* Smooth scrolling */
html {scroll-behavior: smooth;}
@keyframes fadeInUp {from {opacity: 0;transform: translateY(30px);}to {opacity: 1;transform: translateY(0);}}
.animate-fade-in-up {animation: fadeInUp 0.8s ease forwards;}
.btn:active {transform: scale(0.98);}
.btn:focus,
.nav-link:focus,
input:focus {outline: 2px solid var(--primary-color);outline-offset: 2px;}

/*Bottom To Top*/
.ai-robot-button{position:fixed;bottom:30px;right:30px;width:60px;height:60px;background: var(--gradient-hero);border:none;border-radius:50%;cursor:pointer;display:none;align-items:center;justify-content:center;box-shadow:0 4px 15px rgba(0,0,0,0.3);transition:all 0.3s ease;z-index:1000}
.ai-robot-button.visible{display:flex}
.ai-robot-button:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(0,0,0,0.4)}
.robot-container{position:relative;width:40px;height:40px}
.robot-head{width:35px;height:35px;background:#2c3e50;border-radius:50%;position:relative;border:2px solid #34495e}
.robot-antenna{position:absolute;top:-6px;left:50%;transform:translateX(-50%);width:2px;height:6px;background:#34495e}
.robot-antenna::after{content:'';position:absolute;top:-4px;left:50%;transform:translateX(-50%);width:4px;height:4px;background:#e74c3c;border-radius:50%}
.robot-face{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:24px;height:12px;background:white;border-radius:15px;display:flex;align-items:center;justify-content:space-around;padding:1px}
.robot-eyes{width:4px;height:4px;background:#2c3e50;border-radius:50%}
.arrow-up{position:absolute;bottom:-12px;left:50%;transform:translateX(-50%);width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:6px solid white}
.ai-badge{position:absolute;bottom:-18px;left:50%;transform:translateX(-50%);background:#2c3e50;color:white;padding:1px 6px;border-radius:8px;font-size:8px;font-weight:bold}
@media (max-width:768px){.ai-robot-button{width:50px;height:50px;bottom:20px;right:20px}
.robot-container{width:30px;height:30px}
.robot-head{width:25px;height:25px}
.robot-face{width:18px;height:10px}
.robot-eyes{width:3px;height:3px}}


/*terms-condition*/

  .terms-condition .tearms-heading{background:linear-gradient(120deg,#6a82fb,#fc5c7d);padding:60px 20px;text-align:center;color:white;border-bottom:2px solid #ddd; margin-top: 60px;}
  .terms-condition .tearms-heading h1{font-size:2.5rem;margin:0}
  .terms-condition .tearms-heading p{font-size:1.2rem;margin-top:10px}
  .terms-condition main{max-width:1000px;margin:40px auto;padding:20px;background-color:#ffffff;box-shadow:0 0 10px rgba(0,0,0,0.1);border-radius:8px}.terms-condition .updated{font-size:.9rem;color:#777;margin-bottom:30px}
  .terms-condition .card{background-color:#f1f1f1;margin-bottom:30px;padding:20px;border-radius:8px;box-shadow:0 0 8px rgba(0,0,0,0.1)}
  .terms-condition .card h2{font-size:1.6rem;margin-top:0;color:#333}
  .terms-condition .card p{font-size:1rem;color:#555;line-height:1.6}
  .terms-condition .card ul{margin-left:20px;list-style-type:disc}
  .terms-condition .toc{background-color:#e9f7fe;padding:20px;border-radius:8px;margin-bottom:40px}
  .terms-condition .toc h3{font-size:1.2rem;color:#333;margin-bottom:10px}
  .terms-condition .toc ul{list-style-type:none;padding-left:0}
  .terms-condition .toc a{text-decoration:none;color:#3498db;font-size:1rem}
  .terms-condition .toc a:hover{text-decoration:underline}
  @media (max-width:768px){.terms-condition .tearms-heading h1{font-size:2rem}
  .terms-condition .tearms-heading p{font-size:1rem}.terms-condition main{padding:15px;margin:20px}
  .terms-condition .card h2{font-size:1.4rem}
  .terms-condition .card p{font-size:.95rem}}
  @media (max-width:480px){.terms-condition .tearms-heading{padding:40px 20px}.terms-condition main{padding:10px}}
  
  
  /*Contact us*/
  
.contact-container5{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1.5fr;gap:0;background:white;border-radius:20px;box-shadow:0 20px 40px rgba(0,0,0,.1);overflow:hidden;min-height:600px;margin-top: 40px;margin-bottom: 40px;}
.contact-info{background:linear-gradient(120deg,#6a82fb,#fc5c7d);color:white;padding:60px 40px;display:flex;flex-direction:column;justify-content:center}
.contact-info h2{font-size:2.5em;margin-bottom:40px;font-weight:300}
.email-item{margin-bottom:40px;padding:25px;background:rgba(255,255,255,0.1);border-radius:15px;backdrop-filter:blur(10px);transition:all .3s ease}
.email-item:hover{transform:translateY(-5px);background:rgba(255,255,255,0.2)}
.email-item h3{font-size:1.3em;margin-bottom:15px;color:#ecf0f1}
.email-link{display:flex;align-items:center;color:white;text-decoration:none;font-size:1.1em;transition:all .3s ease}
.email-link:hover{color:#f39c12;transform:translateX(5px)}
.email-icon{width:24px;height:24px;margin-right:12px;fill:currentColor}
.form-section{padding:60px 50px;display:flex;flex-direction:column;justify-content:center}
.form-section h2{font-size:2.2em;color:#2c3e50;margin-bottom:30px;font-weight:300}
.contact-form{display:flex;flex-direction:column;gap:25px}
.form-group{position:relative}
.form-group label{display:block;margin-bottom:8px;color:#2c3e50;font-weight:500;font-size:.95em}
.form-group input,.form-group textarea{width:100%;padding:15px;border:2px solid #ecf0f1;border-radius:10px;font-size:1em;transition:all .3s ease;background:#f8f9fa}.form-group input:focus,
.form-group textarea:focus{outline:none;border-color:#3498db;background:white;transform:translateY(-2px);box-shadow:0 5px 15px rgba(52,152,219,.2)}
.form-group textarea{resize:vertical;min-height:120px}
.submit-btn{background:linear-gradient(120deg,#6a82fb,#fc5c7d);color:white;padding:18px 40px;border:none;border-radius:50px;font-size:1.1em;font-weight:600;cursor:pointer;transition:all .3s ease;margin-top:10px}
.submit-btn:hover{transform:translateY(-3px);box-shadow:0 10px 25px rgba(52,152,219,.3)}
.submit-btn:active{transform:translateY(0)}
.submit-btn:disabled{opacity:.7;cursor:not-allowed;transform:none}
.message{padding:15px;border-radius:10px;margin-top:20px;text-align:center;font-weight:500;display:none}
.success-message{background:#27ae60;color:white}
.error-message{background:#e74c3c;color:white}
@media (max-width:768px){.contact-container5{grid-template-columns:1fr;margin:10px}
.contact-info{padding:40px 30px}
.form-section{padding:40px 30px}
.contact-info h2,.form-section h2{font-size:1.8em}}


