/* Black Friday Deals Page Styles */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

*, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    scroll-behavior: smooth;
    scroll-margin: 280px;
}

body {
    background: #070d25;
    color: #f5f5f5;
    overflow-x: hidden;
}

main {
    margin: auto;
    background-image: url(/img/steps/wave.svg);
    background-repeat: no-repeat;
    background-position: bottom;
}

a {
    text-decoration: none;
    color: inherit;
}

span.highlight {
    color: #e64b3c;
}

span.green {
    color: #73ab3b;
}

/* Header Styles */
header {
    position: fixed;
    max-width: 1400px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background-color: rgba(7, 13, 37, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    z-index: 998;
    transition: transform 0.4s ease;
    border-bottom: 2px solid rgba(230, 75, 60, 0.3);
}

header.hidden {
    transform: translateY(-100%);
}

header img {
    height: 40px;
}

header ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

header ul a {
    transition: color .4s ease;
    font-weight: 500;
}

header ul a:hover {
    color: #e64b3c;
}

.cta-btn {
    padding: 10px 20px;
    background: #e64b3c;
    box-shadow: 1px 3px 4px rgba(230, 75, 60, 0.4);
    color: #F2FAFF;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: all .4s ease;
}

.cta-btn:hover {
    scale: 1.05;
    background-color: #e65b4e;
}

header .burger {
    display: none;
    justify-self: end;
    cursor: pointer;
    font-size: 1.5rem;
}

.fa-times {
    cursor: pointer;
    font-size: 1.5rem;
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: #070d25;
    transition: right 0.6s ease-in-out;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.menu ul li {
    margin: 20px 0;
}

.menu ul li a {
    color: #F2FAFF;
    text-decoration: none;
    transition: color .4s ease;
}

.menu ul li a:hover {
    color: #e64b3c;
}

.menu button {
    width: 100%;
    margin-top: 1rem;
}

.menu.active {
    right: 0;
    opacity: 1;
}

.menu i {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media screen and (width >= 1200px) {
    .menu {
        display: none;
    }
}

@media screen and (width < 1200px) {
    header ul, header .cta-btn {
        display: none;
    }
    header .burger {
        display: block;
    }
}

/* Animated Deal Banner */
.deal-banner {
    margin-top: 100px;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(230, 75, 60, 0.3);
}

.deal-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 75, 60, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.deal-text-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.deal-badge {
    display: inline-block;
    background: linear-gradient(90deg, #e64b3c, #ff6b5b);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
    box-shadow: 0 5px 15px rgba(230, 75, 60, 0.5);
}

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

.deal-title {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.black-friday {
    font-family: 'Bungee Inline', cursive;
    color: #e64b3c;
    text-shadow: 0 0 20px rgba(230, 75, 60, 0.8),
                 0 0 40px rgba(230, 75, 60, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.cyber-monday {
    font-family: 'Bungee Inline', cursive;
    color: #73ab3b;
    text-shadow: 0 0 20px rgba(115, 171, 59, 0.8),
                 0 0 40px rgba(115, 171, 59, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.3);
    }
}

.ampersand {
    font-size: 0.6em;
    color: #fff;
    opacity: 0.7;
}

.deal-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #f5f5f5;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Hero Section */
#hero {
    position: relative;
    padding: 0 20px;
    max-width: 1400px;
    margin: auto;
}

#hero-content {
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #ddd;
}

/* Countdown Timer */
.timer-container {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.timer-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #e64b3c, #ff6b5b);
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(230, 75, 60, 0.4);
}

.time-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Black Ops One', cursive;
}

.time-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 2rem;
    font-weight: bold;
    color: #e64b3c;
}

/* Offers Section */
#offers {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

#offers h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.offers-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #ddd;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.offer-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: left;
    border: 2px solid rgba(230, 75, 60, 0.3);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(230, 75, 60, 0.4);
}

.offer-card.premium {
    border-color: rgba(230, 75, 60, 0.5);
}

.offer-card.value {
    border-color: rgba(115, 171, 59, 0.5);
}

.offer-badge {
    display: inline-block;
    background: #e64b3c;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b5b, #e64b3c);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(230, 75, 60, 0.5);
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(3deg);
    }
}

.offer-icon {
    margin: 2rem 0;
    text-align: center;
}

.offer-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

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

.old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 1rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #73ab3b;
    text-shadow: 0 0 10px rgba(115, 171, 59, 0.5);
}

.lifetime-badge {
    display: block;
    margin-top: 0.5rem;
    color: #73ab3b;
    font-size: 1rem;
    font-weight: bold;
}

.offer-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.offer-features li i {
    color: #73ab3b;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.offer-note {
    background: rgba(115, 171, 59, 0.1);
    border-left: 4px solid #73ab3b;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
}

.offer-note i {
    color: #73ab3b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.offer-note p {
    margin: 0;
    line-height: 1.6;
}

.bonus-section {
    background: rgba(115, 171, 59, 0.1);
    border: 2px solid rgba(115, 171, 59, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bonus-header i {
    color: #73ab3b;
    font-size: 1.5rem;
}

.bonus-header h4 {
    font-size: 1.3rem;
    margin: 0;
    color: #73ab3b;
}

.bonus-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bonus-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.bonus-old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.bonus-new-price {
    font-size: 2rem;
    font-weight: bold;
    color: #73ab3b;
}

.bonus-save {
    background: #73ab3b;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.bonus-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.bonus-features li i {
    color: #73ab3b;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.offer-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e64b3c, #ff6b5b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(230, 75, 60, 0.4);
    text-align: center;
    text-decoration: none;
}

.offer-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 75, 60, 0.6);
}

.offer-btn.green {
    background: linear-gradient(135deg, #73ab3b, #8bc34a);
    box-shadow: 0 10px 30px rgba(115, 171, 59, 0.4);
}

.offer-btn.green:hover {
    box-shadow: 0 15px 40px rgba(115, 171, 59, 0.6);
}

.offer-validity {
    text-align: center;
    margin-top: 1rem;
    color: #e64b3c;
    font-weight: bold;
    font-size: 0.95rem;
}

.offer-card.premium .offer-validity {
    color: #73ab3b;
}

.offer-card.premium .offer-btn {
    margin-top: auto;
}

/* Combo Offer */
.combo-offer {
    background: linear-gradient(135deg, #ff6b5b 0%, #e64b3c 50%, #73ab3b 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(230, 75, 60, 0.5);
    position: relative;
    overflow: hidden;
}

.combo-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.combo-badge {
    display: inline-block;
    background: white;
    color: #e64b3c;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.combo-offer h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.combo-offer p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.combo-btn {
    padding: 15px 40px;
    background: white;
    color: #e64b3c;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.combo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(15, 52, 96, 0.4);
    border: 2px solid rgba(115, 171, 59, 0.3);
}

.demo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #73ab3b, #5d8b2f);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(115, 171, 59, 0.4);
}

.demo-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.demo-info {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-icon {
    font-size: 2.5rem;
    color: #73ab3b;
    margin-bottom: 1rem;
}

.demo-link {
    display: inline-block;
    color: #73ab3b;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.demo-link:hover {
    color: #8bc34a;
    transform: scale(1.05);
}

.demo-link i {
    margin-left: 0.5rem;
}

.demo-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.credential-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(115, 171, 59, 0.3);
    transition: all 0.3s ease;
}

.credential-box:hover {
    transform: translateY(-5px);
    border-color: rgba(115, 171, 59, 0.6);
    box-shadow: 0 10px 30px rgba(115, 171, 59, 0.2);
}

.credential-box i {
    font-size: 2rem;
    color: #73ab3b;
    margin-bottom: 0.8rem;
}

.credential-box h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.credential-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.credential-box code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    color: #73ab3b;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    margin-top: 0.3rem;
    border: 1px solid rgba(115, 171, 59, 0.2);
    user-select: all;
}

.demo-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #73ab3b, #5d8b2f);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(115, 171, 59, 0.4);
    margin: 1.5rem auto 0;
    text-align: center;
}

.demo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(115, 171, 59, 0.5);
    background: linear-gradient(135deg, #8bc34a, #73ab3b);
}

.demo-btn i {
    margin-left: 0.8rem;
}

/* About Us Section */
#about-us {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

#about-us h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(230, 75, 60, 0.2);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 75, 60, 0.5);
    box-shadow: 0 20px 40px rgba(230, 75, 60, 0.2);
}

.about-icon {
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e64b3c;
}

.about-card p {
    line-height: 1.7;
    color: #ddd;
}

/* Methodology Section */
#methodology {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

#methodology h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.methodology-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #ddd;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.methodology-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #e64b3c;
    transition: all 0.3s ease;
}

.methodology-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.methodology-step.full-width {
    grid-column: 1 / -1;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e64b3c;
    font-family: 'Black Ops One', cursive;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e64b3c;
}

.step-content p {
    line-height: 1.7;
    color: #ddd;
}

.methodology-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(230, 75, 60, 0.3);
}

.methodology-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #e64b3c;
}

.methodology-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.methodology-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e64b3c;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 75, 60, 0.4);
}

.methodology-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(230, 75, 60, 0.6);
}

/* Testimonials Section */
#testimonials {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

#testimonials h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid rgba(230, 75, 60, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 75, 60, 0.5);
    box-shadow: 0 20px 40px rgba(230, 75, 60, 0.2);
}

.quote-icon {
    color: #e64b3c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(230, 75, 60, 0.2);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    color: #e64b3c;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: #999;
}

/* Why Act Now Section */
#why-act-now {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: auto;
}

.urgency-container {
    background: linear-gradient(135deg, #e64b3c 0%, #ff6b5b 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.urgency-container h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    color: white;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.urgency-card {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.urgency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e64b3c;
}

.urgency-card p {
    line-height: 1.6;
}

.urgency-card ul {
    list-style: none;
    padding-left: 0;
}

.urgency-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.remaining-spots {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Contact Section */
#contact {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: auto;
}

.contact-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(230, 75, 60, 0.3);
}

.flex-row-contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.form-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
}

.form-subtitle a {
    color: #e64b3c;
    font-weight: bold;
}

.special-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(115, 171, 59, 0.1);
    border-left: 4px solid #73ab3b;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
}

.special-note i {
    color: #73ab3b;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.img-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-form-container {
    position: relative;
}

.form-overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 13, 37, 0.95);
    z-index: 1;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.form-overlay.active {
    display: flex;
}

/* Beautiful Loader */
.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(230, 75, 60, 0.2);
    border-top: 4px solid #e64b3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.success-icon {
    font-size: 4rem;
    color: #73ab3b;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #73ab3b;
}

.success-message p {
    font-size: 1.1rem;
    color: #ddd;
}

.form-control {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(230, 75, 60, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: "Quicksand", sans-serif;
    transition: all 0.3s ease;
}

textarea.form-control {
    resize: none;
}

.form-control:focus {
    outline: none;
    border-color: #e64b3c;
    background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#result {
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
}

/* Footer */
footer {
    background: #0a0f1e;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-col-title {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #e64b3c;
}

footer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e64b3c;
}

.footer-icons {
    margin-right: 0.5rem;
}

#yoltlabs {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 75, 60, 0.2);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 10px 15px;
    }
    
    header ul {
        display: none;
    }
    
    .burger {
        display: block !important;
    }
    
    /* Deal banner */
    .deal-banner {
        padding: 3rem 1.5rem;
    }
    
    .deal-title {
        font-size: 2.5rem;
    }
    
    .black-friday, .cyber-monday {
        font-size: 1.8rem;
    }
    
    .ampersand {
        font-size: 1.5rem;
    }
    
    .deal-subtitle {
        font-size: 1rem;
    }
    
    /* Hero section */
    #hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    /* Countdown timer */
    .time-unit {
        padding: 0.8rem 1rem;
        min-width: 70px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
        padding: 0 0.3rem;
    }
    
    /* Offers section */
    .offers-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-card {
        padding: 2.5rem 2rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .offer-icon svg {
        height: 60px;
        width: 60px;
    }
    
    .discount-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    /* Combo offer */
    .combo-offer {
        padding: 2rem 1.5rem;
    }
    
    .combo-offer h3 {
        font-size: 1.5rem;
    }

    /* Demo section */
    .demo-section {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .demo-credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .credential-box {
        padding: 1.2rem;
    }
    
    .demo-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    /* About section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    /* Methodology */
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .methodology-step.full-width {
        grid-column: 1;
    }
    
    /* Testimonials */
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Urgency section */
    .urgency-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .urgency-card {
        padding: 2rem;
    }
    
    /* Contact form */
    .flex-row-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .img-form-container {
        flex-direction: column;
    }
    
    .contact-img-container {
        display: none;
    }
    
    .contact-form-container {
        width: 100%;
        padding: 2rem 1rem;
    }
    
    /* Footer */
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .empty-div {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Deal banner */
    .deal-banner {
        padding: 2rem 1rem;
    }
    
    .deal-title {
        font-size: 2rem;
    }
    
    .black-friday, .cyber-monday {
        font-size: 1.4rem;
    }
    
    .ampersand {
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }
    
    .deal-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    /* Countdown */
    #countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        padding: 0.6rem 0.8rem;
        min-width: 60px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
    
    .time-separator {
        font-size: 1.2rem;
    }
    
    /* Offers */
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-title {
        font-size: 1.6rem;
    }
    
    .offer-price {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .old-price {
        font-size: 1.2rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .discount-badge {
        position: static;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .offer-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    /* Combo offer */
    .combo-offer {
        padding: 1.5rem 1rem;
    }
    
    .combo-offer h3 {
        font-size: 1.3rem;
    }
    
    .combo-offer p {
        font-size: 0.9rem;
    }
    
    .combo-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Demo section */
    .demo-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem auto;
    }
    
    .demo-section h3 {
        font-size: 1.3rem;
    }
    
    .credential-box {
        padding: 1rem;
    }
    
    .credential-box code {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .demo-btn {
        padding: 10px 24px;
        font-size: 1rem;
        width: 100%;
    }
    
    .demo-icon {
        font-size: 2rem;
    }
    
    /* Sections spacing */
    section {
        padding: 3rem 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    /* About cards */
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-icon svg {
        height: 50px;
        width: 50px;
    }
    
    /* Methodology */
    .methodology-step {
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    /* Urgency */
    .urgency-card {
        padding: 1.5rem;
    }
    
    .urgency-card h3 {
        font-size: 1.2rem;
    }
    
    .urgency-icon {
        font-size: 2rem;
    }
    
    /* Contact form */
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-control {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .cta-btn.submit {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    /* Footer */
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    #yoltlabs {
        font-size: 0.8rem;
    }
}

