/* -------------------------------------
   Fonts
------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

/* -------------------------------------
   Global Variables
------------------------------------- */
:root {
    --bg-gradient: linear-gradient(135deg, #0a0e17 0%, #1a2333 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary-white: #ffffff;
    --secondary-gray: #ffffff;
    --accent-green: #00e676;
    --accent-green-hover: #00c853;
    --accent-gold: #ffd700;
    --premium-red: #e53e3e;
    --premium-red-dark: #c53030;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Outfit', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------
   Reset & Base
------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(rgba(10, 22, 45, 0.8), rgba(10, 22, 45, 0.9)), url('imagen/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-white);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* -------------------------------------
   Layout
------------------------------------- */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 80px; /* Space for sticky CTA on mobile */
}

.content-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------------
   Animations
------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* -------------------------------------
   Top Banner
------------------------------------- */
.top-banner-container {
    background: linear-gradient(90deg, var(--premium-red-dark) 0%, var(--premium-red) 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.banner-heading {
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: 0.5px;
}

/* -------------------------------------
   Progress bar
------------------------------------- */
.progress-section {
    margin: 30px 0;
    text-align: center;
}

.progress-label {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.progress-widget {
    background: rgba(255, 255, 255, 0.1);
    height: 24px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
}

.progress-bar {
    background: linear-gradient(90deg, #00c853 0%, #00e676 100%);
    height: 100%;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.progress-text {
    font-size: 12px;
    font-weight: 800;
    padding-right: 10px;
    color: #000;
}

/* -------------------------------------
   Intro Section
------------------------------------- */
.intro-text {
    text-align: center;
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 18px;
    color: var(--primary-white);
    margin-bottom: 15px;
}

/* -------------------------------------
   Card Style
------------------------------------- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
}

.title-text {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-white);
}

.title-text strong {
    color: var(--accent-gold);
}

/* -------------------------------------
   Images
------------------------------------- */
.image-widget {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.image-widget img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.card:hover .image-widget img {
    scale: 1.03;
}

/* -------------------------------------
   Icon Lists
------------------------------------- */
.icon-list-items {
    list-style: none;
    margin-top: 20px;
}

.icon-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 16px;
}

.icon-list-icon {
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.icon-list-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-green);
}

.icon-list-text {
    color: var(--secondary-gray);
}

/* -------------------------------------
   Pricing & Value
------------------------------------- */
.pricing-section {
    text-align: center;
    margin: 50px 0;
}

.value-strike {
    font-size: 18px;
    color: var(--secondary-gray);
    text-decoration: line-through;
}

.price-main {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-green);
    margin: 10px 0;
    display: block;
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.price-main u {
    text-decoration: none;
    border-bottom: 4px solid var(--accent-green);
}

/* -------------------------------------
   CTA Buttons
------------------------------------- */
.btn-container {
    padding: 20px 0;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: #000;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: clamp(18px, 5vw, 24px);
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
    transition: var(--transition);
    animation: pulse 3s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.5);
    color: #000;
    text-decoration: none;
}

/* -------------------------------------
   Testimonials
------------------------------------- */
.testimonials-section {
    margin: 60px 0;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-gray);
}

/* -------------------------------------
   Trust Elements
------------------------------------- */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--secondary-gray);
    font-weight: 600;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-green);
    margin-right: 5px;
}

.ireland-badge {
    text-align: center;
    font-size: 13px;
    color: var(--secondary-gray);
    font-weight: 500;
    margin-top: 10px;
}

/* -------------------------------------
   Urgency & Scarcity
------------------------------------- */
.urgency-box {
    text-align: center;
    margin-bottom: 20px;
}

.timer-wrapper {
    background: rgba(229, 62, 62, 0.1);
    color: var(--premium-red);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-family: monospace;
    font-size: 20px;
    border: 1px solid rgba(229, 62, 62, 0.2);
    margin-bottom: 10px;
}

.urgency-text {
    color: var(--premium-red);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.stock-msg {
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

/* -------------------------------------
   Sticky Mobile CTA
------------------------------------- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--card-border);
    z-index: 2000;
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    .mobile-sticky-cta .cta-button {
        padding: 12px 20px;
        font-size: 18px;
    }
    .page-wrapper {
        padding-bottom: 100px;
    }
}

/* -------------------------------------
   Responsive
------------------------------------- */
@media (max-width: 480px) {
    .content-inner {
        padding: 0 15px;
    }
    .card {
        padding: 20px;
    }
    .price-main {
        font-size: 36px;
    }
}