/* Reset and Base Styles */
:root {
    --primary-dark: #0d2033;
    --primary-medium: #194470;
    --primary-light: #1c4e82;
    --secondary-dark: #2a5885;
    --secondary-light: #3d6a99;
    --accent: #4a7fbf;
    --accent-light: #6b9bd1;
    --gold: #ffd700;
    --warning: #ff6b6b;
    --success: #51cf66;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #8b9dc3;
    --border-color: rgba(184, 197, 214, 0.1);
    --card-bg: rgba(25, 68, 112, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-gold: linear-gradient(135deg, #ffaa00 0%, #ffd700 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-dark);
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 70%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary-dark);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--accent-light);
    top: 40%;
    right: 30%;
    animation-delay: 15s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: var(--primary-medium);
    top: 20%;
    right: 60%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Header */
.header {
    background: rgba(13, 32, 51, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--gold);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: var(--text-primary);
}

.header-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(74, 127, 191, 0.15) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.secret-box {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--warning);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    animation: glow-red 2s ease-in-out infinite;
}

@keyframes glow-red {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    }
}

.secret-box p {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 1.2rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 127, 191, 0.3);
}

.btn-primary::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:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 127, 191, 0.4);
}

.guarantee {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Code Showcase */
.code-showcase {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.code-editor {
    background: var(--primary-medium);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.editor-header {
    background: rgba(13, 32, 51, 0.5);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.3;
}

.window-controls span:first-child {
    background: #ff5f57;
    opacity: 1;
}

.window-controls span:nth-child(2) {
    background: #ffbd2e;
    opacity: 1;
}

.window-controls span:nth-child(3) {
    background: #28ca42;
    opacity: 1;
}

.file-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.editor-content {
    padding: 1.5rem;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
}

.editor-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.keyword {
    color: var(--accent-light);
}

.class {
    color: #7dd87d;
}

.procedure {
    color: #ffa500;
}

.method {
    color: #87ceeb;
}

.function {
    color: #ffa500;
}

.comment {
    color: var(--text-muted);
    font-style: italic;
}

.string {
    color: #ffa500;
}

.variable {
    color: #87ceeb;
}

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

.php-tag {
    color: var(--accent-light);
}

.global {
    color: #7dd87d;
}

.tag {
    color: #569cd6;
}

.prop {
    color: #9cdcfe;
}

.command-input {
    background: rgba(25, 68, 112, 0.3);
    border: 2px solid var(--accent);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.command-input input {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.command-input input::placeholder {
    color: var(--text-muted);
}

.cursor {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.2rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(25, 68, 112, 0.05);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(74, 127, 191, 0.1);
}

.step-number {
    background: var(--gradient-accent);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.tech-secrecy {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

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

.tech-secrecy h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-secrecy p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card.featured {
    border-color: var(--gold);
    transform: scale(1.02);
}

.benefit-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(74, 127, 191, 0.1);
}

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

.benefit-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefit-highlight {
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Community */
.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.community-list li {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.phone-mockup {
    background: var(--primary-medium);
    border-radius: 30px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    margin: 0 auto;
}

.screen {
    background: var(--text-primary);
    border-radius: 20px;
    overflow: hidden;
}

.app-header {
    background: var(--card-bg);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.app-content {
    padding: 1rem;
    height: 300px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.message.instructor {
    justify-content: flex-end;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.avatar.instructor {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.msg-content {
    background: var(--card-bg);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    max-width: 70%;
}

.message.instructor .msg-content {
    background: var(--gradient-accent);
    color: var(--text-primary);
}

.msg-content strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.msg-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.message.instructor .msg-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Bonus */
.bonus-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.bonus-item.exclusive {
    border-color: var(--gold);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

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

.bonus-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.bonus-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bonus-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.bonus-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.bonus-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.total-value {
    background: var(--gradient-accent);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.value-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value {
    font-size: 2.5rem;
    font-weight: 800;
}

.conclusion {
    color: var(--text-primary);
    font-size: 1.1rem;
}

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

.testimonial {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(74, 127, 191, 0.1);
}

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

.testimonial p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    text-align: left;
}

.author h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing */
.offer-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timer-container {
    margin-top: 2rem;
}

.timer-container p {
    color: var(--warning);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-block {
    background: var(--card-bg);
    border: 2px solid var(--warning);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 100px;
    text-align: center;
}

.time-block span {
    display: block;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.time-block small {
    color: var(--text-muted);
    text-transform: uppercase;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.price-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.price-card.current {
    border: 2px solid var(--success);
    transform: scale(1.05);
}

.price-card.future {
    opacity: 0.8;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-tag {
    margin-bottom: 1rem;
}

.currency {
    color: var(--text-secondary);
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    color: var(--text-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.urgency-badge {
    background: var(--success);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.increase-badge {
    background: var(--warning);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.versus {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

.value-proposition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.prop-item {
    background: rgba(74, 127, 191, 0.1);
    border: 1px solid rgba(74, 127, 191, 0.3);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.prop-item .icon {
    font-size: 1.5rem;
}

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

.btn-final {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.btn-final span {
    display: block;
    margin-bottom: 0.5rem;
}

.btn-final small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.last-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--warning);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.last-warning p {
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-medium);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bonus-main {
        grid-template-columns: 1fr;
    }

    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .versus {
        display: none;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .popup-container {
        padding: 20px;
        max-width: 95%;
        width: 100%;
        margin: 20px;
    }

    .payment-cards {
        flex-direction: column;
        gap: 15px;
    }

    .pix-option, .card-option {
        min-width: auto;
        width: 100%;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .mini-timer {
        font-size: 1.8rem;
    }

    .pix-amount {
        font-size: 1.4rem;
    }

    .card-amount {
        font-size: 1.3rem;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(13, 32, 51, 0.95) 0%, rgba(25, 68, 112, 0.95) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-name {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-role {
    color: var(--accent);
    font-size: 0.9rem;
}

.counter-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.counter-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* CTA Buttons for sections */
.benefit-cta,
.community-cta,
.bonus-cta,
.testimonial-cta {
    text-align: center;
    margin-top: 50px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Footer Button */
.btn-footer {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-footer:hover::before {
    width: 300px;
    height: 300px;
}

.btn-footer:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Enhanced Contact Button Animations */
.btn-primary, .btn-final, button[onclick*="openPaymentModal"] {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-final::after, button[onclick*="openPaymentModal"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.8s, height 0.8s;
}

.btn-primary:hover::after, .btn-final:hover::after, button[onclick*="openPaymentModal"]:hover::after {
    width: 400px;
    height: 400px;
}

/* WhatsApp buttons glow effect */
a[href*="wa.me"], button[onclick*="payWithPix"], button[onclick*="payWithCard"] {
    position: relative;
    transition: all 0.3s ease;
}

a[href*="wa.me"]:hover, button[onclick*="payWithPix"]:hover, button[onclick*="payWithCard"]:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4),
                0 5px 15px rgba(0, 0, 0, 0.3);
}

a[href*="wa.me"]:active, button[onclick*="payWithPix"]:active, button[onclick*="payWithCard"]:active {
    transform: scale(0.98);
}

/* Pulse animation for all CTAs */
@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.btn-primary:hover, .btn-final:hover {
    animation: cta-pulse 1.5s infinite;
}

/* Code Tabs */
.code-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--primary-medium);
    color: var(--gold);
    border-color: var(--gold);
}

/* Code Editors - Hide non-active by default */
.code-editor:not(.active) {
    display: none;
}

/* PHP Syntax Highlighting */
.php-tag {
    color: #8B5CF6;
}

.variable {
    color: #3B82F6;
}

.operator {
    color: #E5E7EB;
}

/* JavaScript/Node Syntax Highlighting */
.global {
    color: #8B5CF6;
}

.string {
    color: #10B981;
}

.method {
    color: #FBBF24;
}

/* Additional syntax colors */
.keyword {
    color: #3B82F6;
}

.class {
    color: #F59E0B;
}

.procedure {
    color: #10B981;
}

.function {
    color: #10B981;
}

/* Enhanced Pricing Section */
.price-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    position: relative;
}

.original-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: var(--gold);
    animation: strikeThrough 0.5s ease-out;
}

@keyframes strikeThrough {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.current-price {
    text-align: center;
}

.current-price .currency {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.symbol {
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cents {
    font-size: 2rem;
    color: var(--gold);
    align-self: flex-end;
    margin-bottom: 10px;
}

.payment-method {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.discount-badge {
    background: linear-gradient(135deg, #ff4757, #ff6348);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.3);
}

/* Value Stack */
.value-stack {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-stack h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.check-icon {
    color: #10B981;
    font-size: 1.5rem;
    margin-right: 20px;
}

.value-text {
    flex: 1;
}

.value-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.real-value {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--gold);
}

.value-total span:first-child {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.value-total span:last-child {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.option-card.selected {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.option-header h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price-big {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.price-big span {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.option-benefits {
    margin-top: 20px;
}

.option-benefits span {
    display: block;
    color: var(--text-secondary);
    margin: 10px 0;
    font-size: 0.95rem;
}

/* Guarantee Section */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

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

.guarantee h4 {
    color: #10B981;
    margin: 0;
}

.guarantee p {
    color: var(--text-secondary);
    margin: 5px 0 0 0;
}

/* Spots Info */
.spots-info {
    text-align: center;
    margin-top: 30px;
}

.spots-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    margin-bottom: 15px;
}

.spots-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4757;
    animation: pulse 2s infinite;
}

.urgency-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Productivity Modal */
.productivity-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.productivity-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: 25px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.modal-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 15px;
}

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

.benefit-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-text span {
    color: var(--text-secondary);
}

.modal-pricing {
    text-align: center;
    margin-bottom: 40px;
}

.price-showcase {
    position: relative;
    display: inline-block;
}

.original {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.current .currency {
    font-size: 2rem;
    vertical-align: super;
}

.current .cents {
    font-size: 2rem;
    vertical-align: baseline;
}

.discount {
    position: absolute;
    top: -10px;
    right: -30px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(15deg);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-modal-primary {
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: block;
}

.btn-modal-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-modal-primary small {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
}

.btn-modal-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-modal-secondary:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.modal-urgency {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 15px;
}

.modal-urgency p {
    color: var(--text-secondary);
    margin: 10px 0;
}

.modal-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Floating animation for modal */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.modal-content.active {
    animation: slideInUp 0.5s ease, float 3s ease-in-out infinite;
}

/* Bonus Section - Simplified */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(13, 32, 51, 0.95) 0%, rgba(25, 68, 112, 0.95) 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Initial Offer Popup */
.initial-offer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
}

.initial-offer-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.popup-container {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 20px;
    max-width: 900px;
    width: 95%;
    text-align: center;
    border: 3px solid var(--gold);
    box-shadow: 0 0 100px rgba(255, 215, 0, 0.3);
    animation: popupDrop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
               popupGlow 2s ease-in-out infinite alternate,
               popupBounce 3s ease-in-out infinite;
    max-height: 85vh;
    overflow-y: auto;
    transform-origin: center;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

@keyframes popupDrop {
    0% {
        transform: translateY(-150vh) scale(0.3) rotate(-15deg);
        opacity: 0;
    }
    40% {
        transform: translateY(10vh) scale(1.1) rotate(5deg);
        opacity: 1;
    }
    70% {
        transform: translateY(-5vh) scale(0.95) rotate(-2deg);
    }
    90% {
        transform: translateY(2vh) scale(1.02) rotate(1deg);
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes popupGlow {
    0% {
        box-shadow: 0 0 100px rgba(255, 215, 0, 0.3),
                    0 0 20px rgba(255, 215, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 150px rgba(255, 215, 0, 0.5),
                    0 0 40px rgba(255, 215, 0, 0.4),
                    inset 0 0 30px rgba(255, 215, 0, 0.1);
    }
}

@keyframes popupBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.01);
    }
    75% {
        transform: translateY(4px) scale(0.99);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.popup-left, .popup-right {
    flex: 1;
    padding: 0 20px;
}

.popup-left {
    border-right: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-header h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: fireFlicker 2s infinite alternate;
}

@keyframes fireFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.popup-header p {
    color: white;
    font-size: 0.95rem;
    margin: 6px 0 12px;
    font-weight: 600;
}

.countdown-header {
    background: rgba(255, 71, 87, 0.2);
    border: 2px solid #ff4757;
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 15px;
}

.mini-timer {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff4757;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

.countdown-header small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: block;
    margin-top: 8px;
}

.popup-price-display {
    margin: 30px 0;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.original-big {
    font-size: 1.8rem;
    color: #666;
    text-decoration: line-through;
    position: relative;
}

.original-big::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #ff4757;
}

.arrow-down {
    font-size: 2rem;
    color: #ff4757;
    animation: bounceArrow 1s infinite;
}

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

.current-huge {
    position: relative;
}

.current-huge .currency {
    font-size: 1.2rem;
    color: var(--gold);
    vertical-align: super;
}

.current-huge .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: priceGlow 2s infinite alternate;
}

@keyframes priceGlow {
    0% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
    100% { text-shadow: 0 0 50px rgba(255, 215, 0, 0.9); }
}

.current-huge .cents {
    font-size: 1.8rem;
    color: var(--gold);
    vertical-align: baseline;
}

.discount-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.popup-payment-options {
    margin: 15px 0;
}

.payment-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.pix-option, .card-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 12px 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 130px;
}

.pix-option:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
}

.card-option:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.option-badge {
    background: #4CAF50;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.option-price {
    margin: 10px 0;
}

.pix-amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4CAF50;
}

.pix-discount {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-amount {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.card-amount .installment {
    font-size: 1rem;
}

.card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-no-juros {
    font-size: 0.8rem;
    color: #4CAF50;
    margin-top: 5px;
    font-weight: 600;
}

.btn-pix-popup, .btn-card-popup {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-pix-popup {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-pix-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-card-popup {
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-card-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.popup-urgency {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
}

.popup-urgency p {
    color: white;
    margin: 10px 0;
    font-size: 1.1rem;
}

.popup-urgency strong {
    color: #ff4757;
    font-size: 1.3rem;
    animation: pulse 1s infinite;
}

.close-text {
    margin-top: 30px;
}

.close-text a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.close-text a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Sales Notifications */
.sales-notification {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.5s ease;
    min-width: 350px;
    overflow: hidden;
}

.sales-notification.show {
    bottom: 20px;
}

.notification-content {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.notification-text {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.notification-text strong {
    display: block;
    color: #000;
}

.notification-time {
    font-size: 0.8rem;
    color: #666;
}

.notification-bar {
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    animation: progress 5s linear;
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.payment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-modal.active .modal-content {
    animation: dropIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes dropIn {
    0% {
        transform: translateY(-100vh) scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    30% {
        transform: translateY(20vh) scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-10vh) scale(0.95) rotate(-2deg);
        opacity: 1;
    }
    80% {
        transform: translateY(5vh) scale(1.02) rotate(1deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.payment-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.payment-modal .modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: 25px;
    padding: 50px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.urgency-timer {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 10px;
}

.urgency-timer p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.modal-timer-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4757;
    font-family: 'Courier New', monospace;
}

.price-showcase-modal {
    text-align: center;
    margin: 30px 0;
}

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

.current-price-modal {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.current-price-modal .currency {
    font-size: 2rem;
    vertical-align: super;
}

.current-price-modal .cents {
    font-size: 2rem;
    vertical-align: baseline;
}

.discount-modal {
    font-size: 1.2rem;
    color: #10B981;
    margin-top: 10px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.method-card.selected {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.method-icon {
    font-size: 2rem;
}

.method-header h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
}

.method-price {
    text-align: center;
    margin-bottom: 20px;
}

.big-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.discount, .installment {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.method-benefits {
    margin-bottom: 25px;
}

.method-benefits span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 8px 0;
}

.method-button button {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    color: var(--primary-dark);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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