/* CSS Variables */
:root {
    --primary: #1F3A5F;      /* Deep Blue */
    --primary-light: #2c548c;
    --background: #F4E8D5;   /* Light Beige */
    --accent: #C8A951;       /* Soft Gold */
    --accent-dark: #b59848;
    --text-dark: #2b2b2b;
    --text-light: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(31, 58, 95, 0.1);
    --shadow-hover: 0 15px 40px rgba(31, 58, 95, 0.15);
    
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-light { color: var(--text-light) !important; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* typography modifiers */
strong { font-weight: 700; }

/* Floating Micro-Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(200, 169, 81, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(200, 169, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 169, 81, 0); }
}

.floating-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 50px;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(200, 169, 81, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-glow 2.5s infinite;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(200, 169, 81, 0.4);
    color: var(--primary);
}

.large-cta {
    font-size: 1.3rem;
    padding: 20px 48px;
    width: 100%;
    max-width: 450px;
}

/* Section Spacing */
.section { padding: 5rem 0; }
.padding-y { padding: 4rem 0; }

/* Sub-backgrounds */
.bg-blue { 
    background-color: var(--primary); 
    color: var(--text-light);
}
.bg-light-gold {
    background-color: rgba(200, 169, 81, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(31, 58, 95, 0.05) 0%, rgba(244, 232, 213, 1) 100%);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, rgba(244,232,213,0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.brand-tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Floating bubbles in hero */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(200,169,81,0) 100%);
    opacity: 0.2;
    z-index: 1;
    animation: float 6s ease-in-out infinite alternate;
}

.bubble-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

/* Intro */
.intro-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Selector Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-top: 5px solid var(--accent);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-range {
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.delay-1 { animation-delay: 0.2s; }

/* Value Stack */
.value-stack {
    background: #fff;
    color: var(--text-dark);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.value-list li:last-child {
    border-bottom: none;
}

.check {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 2px;
}

.value-content {
    flex: 1;
}

.value-content h4 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    color: var(--primary);
    font-family: var(--font-body);
}

.value-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

.value-price {
    font-weight: 700;
    color: var(--accent-dark);
    background: rgba(200, 169, 81, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.value-total {
    margin-top: 2rem;
    text-align: right;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
    padding-top: 1.5rem;
    border-top: 2px dashed rgba(31,58,95,0.2);
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
    font-size: 1.1rem;
}

/* Benefits Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefit-box {
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.box-title { color: var(--primary); font-size: 1.8rem; }

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.accent-box {
    background: var(--primary);
    color: var(--text-light);
}
.accent-box .box-title {
    color: var(--accent);
}

/* Vision Section */
.vision-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.vision-card {
    background: #fff;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.imagine-box {
    background: #fff;
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200,169,81,0.3);
}

.imagine-title {
    font-size: 2rem;
    color: var(--accent-dark);
}

.imagine-box p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Offer */
.offer-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.price-box {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(31,58,95,0.1);
    border-top: 8px solid var(--primary);
}

.normal-price {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.discount-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    background: rgba(200,169,81,0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.discount-price .label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.discount-price .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.secure-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    display: block;
}

.bonus-box {
    background: rgba(31,58,95, 0.05);
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--primary);
}

.bonus-box h3 {
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.print-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Footer / Author */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.author-title {
    color: var(--accent);
    font-size: 1.8rem;
}

.guarantee-box {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-box h4 {
    color: #fff;
    font-family: var(--font-body);
}

.guarantee-box p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .value-list li { flex-direction: column; }
    .value-price { margin-left: 0; margin-top: 1rem; align-self: flex-start; }
    .vision-cards { flex-direction: column; }
    .imagine-box, .price-box, .bonus-box { padding: 2rem 1.5rem; }
    .discount-price .price { font-size: 2.8rem; }
}
