/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary.btn-xl {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.btn-warning {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-section {
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.header-cta .btn-primary {
    width: 100%;
    max-width: 280px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.announcement-bar {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.announcement-icon {
    margin-right: 8px;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.guarantee-icon {
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    text-align: center;
}

.product-showcase {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.product-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.comparison-section {
    margin-top: 20px;
}

.comparison-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* SlimJaro Introduction Section */
.slimjaro-intro {
    background: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-showcase-large {
    margin: 30px 0;
}

.main-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-text {
    text-align: left;
    margin: 30px 0;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-cta {
    margin-top: 30px;
}

/* Comparison Table Section */
.comparison-table-section {
    padding: 50px 0;
    background: white;
}

.comparison-visual {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.check {
    color: #28a745;
    font-weight: bold;
}

.cross {
    color: #dc3545;
    font-weight: bold;
}

.stars {
    color: #ffc107;
}

/* Update Alert Styles */
.update-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ffeaa7;
}

.alert-icon {
    font-size: 1.1rem;
}

/* How SlimJaro Works Section */
.how-it-works {
    padding: 50px 0;
    background: white;
}

.work-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.work-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.result-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #e8f5e8;
    border-radius: 8px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

/* Ingredients Section Updates */
.ingredients {
    background: #f8f9fa;
    padding: 50px 0;
}

.ingredients-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-intro p {
    font-size: 1.1rem;
    color: #555;
}

/* Social Proof Section */
.social-proof {
    background: #f8f9fa;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
}

.results-visual {
    text-align: center;
    margin-bottom: 40px;
}

.results-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #ff6b35;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.verified {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Problem Solution Section */
.problem-solution {
    padding: 50px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.problem-item {
    text-align: center;
    padding: 25px;
    background: #fff5f5;
    border-radius: 12px;
    border: 2px solid #ffebee;
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.solution-section {
    margin-top: 50px;
}

.solution-title {
    text-align: center;
    color: #28a745;
    margin-bottom: 30px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.solution-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f0fff4;
    border-radius: 12px;
    border: 2px solid #d4edda;
}

.solution-number {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.solution-content h4 {
    color: #28a745;
    margin-bottom: 10px;
}

/* Ingredients Section */
.ingredients {
    background: #f8f9fa;
    padding: 50px 0;
}

.ingredients-visual {
    text-align: center;
    margin-bottom: 40px;
}

.ingredients-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 3px solid #28a745;
}

.ingredient-card h4 {
    color: #28a745;
    margin-bottom: 10px;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.urgency-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.urgency-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    min-width: 60px;
}

.timer-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.urgency-note {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* Warning Section */
.warning-section {
    background: #fff3cd;
    padding: 50px 0;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.warning-title {
    text-align: center;
    color: #856404;
    margin-bottom: 30px;
}

.warning-visual {
    text-align: center;
    margin-bottom: 30px;
}

.warning-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.warning-text {
    text-align: center;
    color: #856404;
}

.warning-cta {
    text-align: center;
    margin-top: 30px;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 0;
    text-align: center;
}

.pricing-visual {
    margin-bottom: 30px;
}

.pricing-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
    padding: 50px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.faq-question {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.quality-seal {
    margin-bottom: 30px;
}

.seal-img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.benefit-icon {
    font-size: 1.2rem;
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
}

.footer-link:hover {
    color: white;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* Images Responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .trust-badges {
        justify-content: flex-start;
    }
    
    .header-cta .btn-primary {
        width: auto;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-timer {
        gap: 30px;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 20px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .seal-img {
        max-width: 200px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch Improvements for Mobile */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .btn-warning:hover {
        transform: none;
    }
    
    .btn-primary:active,
    .btn-warning:active {
        transform: scale(0.98);
    }
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.pricing-column {
  flex: 1 1 30%;
  max-width: 300px;
  text-align: center;
}

.pricing-option-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

.pricing-option-img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .pricing-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}




.grecaptcha-badge { visibility: hidden; }

