:root {
    --primary-color: #14bfb1;
    --primary-dark: #0e8a80;
    --secondary-color: #f6fefc;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: transparent;
    position: relative;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(20, 191, 177, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.2rem;
    padding: 16px 32px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    width: 100%;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-messenger {
    background-color: #0084FF;
    color: white;
}

.btn-messenger:hover {
    background-color: #006ADB;
}

/* Contact Buttons Layout */
.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.contact-buttons .btn {
    flex: 1 1 50%;
    text-align: center;
    white-space: nowrap;
}

/* Invite Friends Section */
.invite-friends {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.invite-label {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 10px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-email {
    background: linear-gradient(135deg, #EA4335, #D93025);
}

.share-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.share-messenger {
    background: linear-gradient(135deg, #00B2FF, #006ADB);
}

.share-tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.logo {
    height: 50px;
}

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.cta-urgency {
    font-size: 0.75rem;
    color: #ff1744;
    font-weight: 600;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.trust-bar {
    background: linear-gradient(90deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 8px 0;
    border-top: 1px solid rgba(20, 191, 177, 0.2);
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-bar span {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fffb 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 191, 177, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.badge {
    background: linear-gradient(135deg, #14bfb1 0%, #0e8a80 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(20, 191, 177, 0.3);
    transform: scale(1.15);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .discount-highlight {
    color: #ff1744;
    display: inline-block;
    animation: pulse-discount 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
    font-weight: 900;
}

@keyframes pulse-discount {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.5;
}

.trust-label {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #2e7d32;
    font-weight: 600;
}

.trust-text {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.scroll-hint {
    margin-top: 40px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-hint span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.15), 0 0 30px rgba(255, 23, 68, 0.1);
    min-width: 85px;
    text-align: center;
    border: 2px solid rgba(255, 23, 68, 0.1);
}

.countdown-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff1744;
    display: block;
    text-shadow: 0 2px 4px rgba(255, 23, 68, 0.2);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--light-text);
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

/* Calculator Section */
.calculator-section {
    padding: 60px 0;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.calc-left h2 {
    margin-bottom: 10px;
}

.services-list {
    margin-top: 30px;
}

/* Service Item - Grid Layout for Better Alignment */
.service-item {
    display: grid;
    grid-template-columns: 30px 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.service-item:hover {
    border-color: var(--primary-color);
}

.service-quantity {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
}

.service-quantity:focus {
    outline: none;
    border-color: var(--primary-color);
}

.service-item input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.service-item input:checked~.checkmark:after {
    display: block;
}

.service-check {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.service-name {
    font-weight: 600;
    text-align: left;
}

.service-price {
    font-weight: 700;
    color: var(--primary-dark);
    text-align: right;
    white-space: nowrap;
    grid-column: -1;
}

.badge-rec {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-pop {
    background: #fff3e0;
    color: #ef6c00;
}

.badge-inc {
    background: #e8f5e9;
    color: #2e7d32;
}

.price-summary {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 16px;
    border: 1px dashed var(--primary-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price-row.original {
    color: var(--light-text);
    text-decoration: line-through;
}

.price-row.discount {
    color: #e53935;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

.price-row.total {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-top: 10px;
    align-items: center;
}

.savings-badge {
    background: #ffebee;
    color: #c62828;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 10px;
}

/* Payment Section */
.payment {
    padding: 80px 0;
    background: rgba(246, 254, 252, 0.9);
}

.payment h2 {
    text-align: center;
    margin-bottom: 50px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.payment-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.payment-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.payment-card p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.copy-target {
    font-family: monospace;
    font-weight: 700;
    background: #eee;
    padding: 2px 6px;
    border-radius: 4px;
}

.payment-confirm {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.payment-confirm h3 {
    margin-bottom: 20px;
}

.payment-confirm ul {
    list-style: none;
    margin-bottom: 20px;
}

.payment-confirm li {
    margin-bottom: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-link i {
    font-size: 1.3rem;
}

.trust-message p {
    color: #2e7d32;
    margin-bottom: 5px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.feature-card h3 {
    margin: 20px 0;
    color: var(--primary-dark);
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

/* Screenshots */
.screenshots {
    padding: 60px 0;
    background: rgba(245, 245, 245, 0.9);
    text-align: center;
}

.screenshots h2 {
    margin-bottom: 40px;
}

/* Swiper Slider - Bigger slides */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 800px;
    height: auto;
    filter: blur(2px);
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.swiper-slide-active {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

/* Demo Section */
.demo {
    padding: 80px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
}

.video-wrapper {
    max-width: 800px;
    margin: 40px auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.demo-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.links-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.demo-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 191, 177, 0.4);
}

.demo-link i {
    font-size: 1.3rem;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
}

/* Reviews Swiper - Bigger and slidable */
.reviewsSwiper .swiper-slide {
    width: 400px;
}

.reviewsSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.proof-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.proof-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.proof-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 191, 177, 0.4);
}

.proof-link i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .badge {
        margin-bottom: 15px;
        transform: scale(1.1);
    }

    .countdown-timer {
        gap: 10px;
        margin: 20px 0 25px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 12px 15px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .trust-bar .container {
        gap: 15px;
    }

    .trust-bar span {
        font-size: 0.75rem;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .swiper-slide {
        width: 90vw;
    }

    .reviewsSwiper .swiper-slide {
        width: 85vw;
    }
}

/* Animations */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(20, 191, 177, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(20, 191, 177, 0.6);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 4px 15px rgba(20, 191, 177, 0.3);
    }
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

.feature-card,
.payment-card,
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}



/* === EasyClinic Video Section (Reel) === */

.ec-video-section {
    padding: 3rem 1.5rem;
    background: #f5f7fb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ec-video-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Left side content */
.ec-video-content {
    flex: 1 1 320px;
    min-width: 280px;
}

.ec-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #18203a;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.ec-video-title {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: #18203a;
}

.ec-video-subtitle {
    margin: 0 0 1.5rem;
    font-size: 0.98rem;
    color: #4a4f63;
}

/* CTA Button */
.ec-cta-btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    background: #0ebc29;
    /* EasyClinic green */
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(14, 188, 41, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ec-cta-btn:hover {
    background: #0aa622;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(14, 188, 41, 0.35);
}

.ec-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(14, 188, 41, 0.25);
}

/* Right side: Reels-style video */
.ec-video-reel {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 360px;
    position: relative;
}

.ec-video-element {
    width: 100%;
    aspect-ratio: 4 / 5;
    /* Vertical reel format */
    border-radius: 1.4rem;
    object-fit: cover;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Small reel label */
.ec-reel-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.25rem 0.7rem;
    font-size: 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .ec-video-section {
        padding: 2.5rem 1.25rem;
    }

    .ec-video-container {
        flex-direction: column;
    }

    .ec-video-title {
        font-size: 1.6rem;
    }

    .ec-video-reel {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Promo Popup Styles */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.promo-popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.promo-popup {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease-out;
    position: relative;
    box-sizing: border-box;
}

.promo-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ff1744, #ff6b6b);
    background-size: 200% 100%;
    animation: gradientShift 2s ease infinite;
    border-radius: 20px 20px 0 0;
}

@keyframes popupSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.promo-popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff1744 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
}

.promo-popup-icon i {
    font-size: 1.8rem;
    color: white;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5);
    }
}

.promo-popup-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.promo-popup-message {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 500;
    padding: 0 5px;
}

.promo-discount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff1744;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 23, 68, 0.3);
    animation: pulse-discount 2s ease-in-out infinite;
}

.promo-popup-btn {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 25px rgba(20, 191, 177, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.promo-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 191, 177, 0.5);
}

/* Larger screens */
@media (min-width: 481px) {
    .promo-popup {
        padding: 40px 35px;
        max-width: 420px;
        border-radius: 24px;
    }

    .promo-popup-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .promo-popup-icon i {
        font-size: 2.2rem;
    }

    .promo-popup-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .promo-popup-message {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .promo-popup-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
        max-width: 280px;
    }
}