/* ============================================
   ProContentCook - Standalone CSS
   ============================================ */

/* CSS Variables */
:root {
    --primary: #14b8a6;
    
    --primary-dark: #0d9488;
    --primary-light: #5eead4;
    --gold: #f59e0b;
    --dark: #242424;
    --dark-light: #000000;
    --cream: #f4f4f4;
    --cream-dark: #ededed;
    --background: #fffffff8;
    --foreground: #202020;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-highlight {
    background-color: #111827;
}

.btn-highlight:hover {
    background-color: #000;
}


/* Utilities */
.hidden {
    display: none !important;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

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

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--foreground);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-icon, .close-icon {
    width: 1.5rem;
    height: 1.5rem;
}



/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 1rem 0 1rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

@media (min-width: 768px) {
    .hero {
        padding: 3rem 0 5rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.badge-stars {
    color: var(--gold);
    font-size: 0.875rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 540px;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-proof {
        justify-content: flex-start;
    }
}

.stars {
    color: var(--gold);
    font-size: 1rem;
}

.proof-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   Section Common Styles
   ============================================ */
section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    background: var(--background);
}

.benefits-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.benefit-problem, .benefit-solution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.benefit-problem {
    color: var(--muted-foreground);
    text-decoration: line-through;
    opacity: 0.7;
}

.benefit-solution {
    color: var(--foreground);
    font-weight: 500;
}

.icon-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.icon-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: #d1fae5;
    color: #10b981;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefits-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Categories Section
   ============================================ */
.categories {
    background: var(--cream);
}

.categories-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem;
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.category-count {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.category-items {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.category-items li {
    padding: 0.25rem 0;
}

.category-items li::before {
    content: "•";
    color: var(--primary);
    margin-right: 0.5rem;
}

.category-items .more {
    color: var(--primary);
    font-weight: 500;
}

.category-items .more::before {
    display: none;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    background: var(--background);
}

.features-row {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .features-row {
        grid-template-columns: 1fr 1fr;
    }
}

.features-row.reverse {
    direction: ltr;
}

@media (min-width: 1024px) {
    .features-row.reverse {
        direction: rtl;
    }
    
    .features-row.reverse > * {
        direction: ltr;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.feature-desc {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.features-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: var(--cream);
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 9999px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.step-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--background);

}



.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--muted);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    background: #ffffff

}

.pricing .section-title,
.pricing .section-description {
    color: rgb(0, 0, 0);
}

.pricing .section-description {
    opacity: 0.9;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.pricing-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-content {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-image-wrapper {
    background: var(--cream);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-image {
    max-height: 400px;
    object-fit: contain;
}

.pricing-details {
    padding: 2rem;
    color: var(--foreground);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-old {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.price-current {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--background);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo-icon {
    background: var(--primary);
}

.footer-brand .logo-text {
    color: white;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer {
  background: #0b0b0b;
  color: #b5b5b5;
  padding: 3rem 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

.footer-summary {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #9a9a9a;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.85rem;
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}


/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

body {
    padding-top: 4rem;
}


html, body {
    overflow-x: hidden;
}

.hero,
.hero-image-wrapper {
    overflow: hidden;
}


.nav-mobile {
    position: fixed;
    top: 64px; 
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px 24px;
    z-index: 999;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-link-mobile {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a; 
    padding: 14px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.15s ease;
}


.nav-link-mobile:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}


.hidden {
    display: none;
}

/* MOBILE ONLY */
@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .features-row {
        display: flex;
        flex-direction: column;
    }

    .features-row .features-image {
        order: 1;
    }

    .features-row .features-list {
        order: 2;
    }
}


/* .support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  

  padding: 0.75rem 1.5rem;
  border-radius: 8px;

  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;

  transition: all 0.25s ease;
}

.support-btn:hover {
  background: #000;
  transform: translateY(-1px);
} */


.support-desktop {
  display: inline-flex;
}


.support-btn:not(.support-desktop) {
  display: none;
}

@media (max-width: 768px) {
  .support-desktop {
    display: none;
  }

  .support-btn:not(.support-desktop) {
    display: inline-flex;
  }
}


