/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 15 2026 | 22:46:19 */
/* Auto-generated from style.css: contact.html specific rules */

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #cf1734 0%, #e11d2e 100%);
    box-shadow: 0 4px 20px rgba(210, 15, 42, 0.4);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 60px 12px 20px;
    position: relative;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
    animation: pulse 2s infinite;
}

.promo-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 800;
}

.promo-btn {
    padding: 8px 18px;
    background: white;
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-close {
    position: absolute;
    padding: 0;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) rotate(90deg);
}

.promo-close svg {
    display: block;
}

.beauty-links {
  position: relative;
  z-index: 2; 
  color: rgb(244, 245, 247) !important;
  text-decoration: none !important;
}

.beauty-links::after {
  content:"";
  position: absolute;
  width: 100%;
  height: 8px;
  border-radius: 0px;
  left: -4px;
  bottom: 2px;
  padding: 0 4px;
  z-index: -1;
  background: var(--secondary);
  opacity: 0.9;
}

.beauty-links:hover {
    color: white;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    border-bottom: 1px solid rgba(210, 15, 42, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
    z-index: 1;
    transition: padding 0.4s ease;
}

/* ===== LOGO ===== */
.logo {
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img{
    
    max-width: 180px;
}

.logo:hover {
    transform: scale(1.02);
}

/* ===== NAVIGATION ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}


.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

/* ===== ACTIONS ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    padding: 0;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(210, 15, 42, 0.25);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.btn-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(210, 15, 42, 0.3), rgba(225, 29, 46, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-icon:hover {
    background: rgba(210, 15, 42, 0.15);
    border-color: rgba(210, 15, 42, 0.4);
}

.btn-icon:hover::before {
    opacity: 1;
}

.icon-sun,
.icon-moon {
    position: absolute;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.icon-moon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.btn-icon:hover .icon-sun,
.btn-icon:hover .icon-moon {
    color: var(--primary);
}

/* ===== MOBILE MENU BUTTON ===== */
.btn-mobile {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(210, 15, 42, 0.25);
    border-radius: 11px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 11px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(210, 15, 42, 0.3), rgba(225, 29, 46, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-mobile:hover {
    background: rgba(210, 15, 42, 0.15);
    border-color: rgba(210, 15, 42, 0.4);
    transform: translateY(-2px);
}

.btn-mobile:hover::before {
    opacity: 1;
}

.btn-mobile span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(210, 15, 42, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

@media (max-width: 768px) {

    .promo-banner {
        height: 64px;
    }

    .promo-content {
        padding: 10px 44px 10px 16px;
        gap: 10px;
    }

    .promo-text {
        font-size: 11px;
        line-height: 1.3;
    }

    .header {
        top: 64px;
    }

    .header::before {
        background: rgba(10, 10, 15, 0.7);
        backdrop-filter: blur(16px) saturate(160%);
        -webkit-backdrop-filter: blur(16px) saturate(160%);
        border-bottom-color: rgba(210, 15, 42, 0.2);
    }

    .nav {
        padding: 12px 0;
    }

    .nav-actions {
        gap: 8px;
    }

    .logo {
        max-width: 140px;
    }

    .logo img {
        max-width: 140px;
    }

    .btn-icon,
    .btn-mobile {
        width: 40px;
        height: 40px;
    }

    .promo-text {
        font-size: 12px;
    }

    .promo-btn {
        display: none;
    }}

@media (max-width: 480px) {
    .promo-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .promo-text {
        font-size: 11px;
    }}
.bg-dark{
    background: var(--bg-primary);

    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    
}
.bg-gradient {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: radial-gradient(circle at 20% 30%, rgba(210, 15, 42, 0.15) 0%, transparent 50%),*/
    /*            radial-gradient(circle at 80% 70%, rgba(225, 29, 46, 0.15) 0%, transparent 50%);*/
                
                
        background: radial-gradient(circle at 20% 30%, rgba(210, 15, 42, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(210, 15, 42, 0.20) 0%, transparent 50%);
}
.bg-grid {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(135deg, rgba(210, 15, 42, 0.06) 0 1px, transparent 1px 14px),
        repeating-linear-gradient(45deg, rgba(5, 183, 253, 0.04) 0 1px, transparent 1px 18px),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
    background-size: auto, auto, 32px 32px;
}

.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    position: relative;
    background: transparent;
}

.faq-section::before {
    display: none;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.faq-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: faq-counter;
}

.faq-grid.faq-contact {
    grid-template-columns: 1fr;
}
.contact-page .faq-support-card{
    height: auto;
}



/* FAQ Icon Wrapper */
.faq-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(210, 15, 42, 0.12);
    border: 1px solid rgba(210, 15, 42, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-icon {
    color: var(--primary);
    transition: color 0.3s ease;
}

/* FAQ Chevron */
.faq-chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.faq-answer p {
    padding: 0 28px 0 88px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* FAQ Support Card */
.faq-support-card {
    background:
        linear-gradient(180deg, rgba(23, 8, 15, 0.98) 0%, rgba(12, 7, 14, 0.96) 100%),
        linear-gradient(135deg, rgba(210, 15, 42, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    border: 1px solid rgba(225, 57, 90, 0.24);
    border-radius: 30px;
    padding: 34px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    position: sticky;
    top: 100px;
    height: fit-content;
    overflow: hidden;
    gap: 18px;
    box-shadow:
        0 28px 56px rgba(8, 3, 9, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-support-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 104, 130, 0.18), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(225, 29, 46, 0.14), transparent 32%);
    pointer-events: none;
}

.faq-support-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: linear-gradient(180deg, rgba(34, 10, 19, 0.74) 0%, rgba(15, 8, 15, 0.92) 100%);
    z-index: 0;
}

.faq-support-card > * {
    position: relative;
    z-index: 2;
}

/* Support Status */
.support-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 9px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}

/* Support Icon */
.support-icon {
    width: 92px;
    height: 92px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(224, 33, 65, 0.28), rgba(104, 13, 29, 0.12));
    border: 1px solid rgba(255, 118, 143, 0.25);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 2px;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 35px rgba(120, 12, 31, 0.28);
}

.support-icon-ring {
    position: absolute;
    inset: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.support-copy {
    display: grid;
    gap: 10px;
}

.support-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 130, 149, 0.82);
}

.support-title {
    font-size: 31px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.support-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.support-description {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
}

.support-points {
    display: grid;
    gap: 10px;
}

.support-point {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(225, 57, 90, 0.14);
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 600;
}

.support-point svg {
    flex: 0 0 auto;
    color: #ff5b77;
}

/* Support Stats */
.support-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}

.stat-item-small {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(225, 57, 90, 0.18);
    border-radius: 18px;
    padding: 14px 14px 13px;
}

.stat-label-small {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.stat-value-small {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-value-small svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    background: linear-gradient(135deg, #d20f2a 0%, #f03a5f 100%) ;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 120, 145, 0.3);
    box-shadow: 0 18px 34px rgba(125, 8, 29, 0.28);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(125, 8, 29, 0.34);
}

.whatsapp-btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    flex: 0 0 auto;
}

.whatsapp-btn-copy {
    display: grid;
    gap: 2px;
    flex: 1;
}

.whatsapp-btn-copy strong,
.whatsapp-btn-copy small {
    display: block;
}

.whatsapp-btn-copy strong {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.whatsapp-btn-copy small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.35;
}

.whatsapp-btn-arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    flex: 0 0 auto;
}

.support-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Support Hours */
.support-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(225, 57, 90, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.support-hours svg {
    color: var(--primary);
}

/* Support Badge */
.support-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 16px;
    border: 1px solid rgba(225, 57, 90, 0.16);
    background: rgba(255, 255, 255, 0.025);
}

.support-badge svg {
    color: var(--primary);
}

.support-guide-link {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    padding-bottom: 2px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        padding: 0 20px 0 68px;
        font-size: 14px;
    }

    .faq-support-card {
        padding: 32px 24px;
    }

    .support-title {
        font-size: 24px;
    }

    .support-icon {
        width: 80px;
        height: 80px;
    }

    .support-meta-row,
    .support-stats {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        padding: 15px 16px;
    }}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-answer p {
        padding: 0 20px 0 20px;
    }

    .faq-support-card {
        padding: 26px 18px 20px;
        border-radius: 24px;
    }

    .support-title {
        font-size: 22px;
    }

    .support-point {
        padding: 11px 12px;
        font-size: 13px;
    }

    .support-stats {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        gap: 10px;
        border-radius: 18px;
    }

    .whatsapp-btn-icon {
        width: 42px;
        height: 42px;
    }

    .whatsapp-btn-copy strong {
        font-size: 15px;
    }

    .whatsapp-btn-copy small {
        font-size: 11px;
    }}

.whatsapp-button .btn-icon {
    position: static;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 18, 12, 0.22);
    color: #ffffff;
    box-shadow: none !important;
    backdrop-filter: none;
}

.whatsapp-button .btn-icon::before {
    display: none !important;
}

.installation-whatsapp-btn .whatsapp-btn-copy strong,
.installation-whatsapp-btn .whatsapp-btn-copy small,
.installation-whatsapp-btn .whatsapp-btn-icon,
.installation-whatsapp-btn .whatsapp-btn-arrow {
    color: #ffffff;
}

.installation-whatsapp-btn .whatsapp-btn-copy strong {
    font-size: 15px;
}

.installation-whatsapp-btn .whatsapp-btn-copy small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {

    .installation-head .section-badge-purple {
        margin-inline: auto;
    }}

/* ===== CONTACT PAGE ===== */
.contact-page {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.contact-hero {
    position: relative;
    padding: 80px 0 120px;
}

.contact-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.contact-head h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.contact-head p {
    color: var(--text-secondary);
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(15, 18, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 22px 50px rgba(3, 10, 26, 0.45);
}

.contact-card-head {
    margin-bottom: 18px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.2);
    border: 1px solid rgba(0, 96, 239, 0.45);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card-head p {
    color: var(--text-secondary);
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text-primary);
    max-width: 651px;
    max-height: 400px;
}

.contact-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(1em + 2px), calc(100% - 11px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.contact-field select option {
    background: #0f1319;
    color: #ffffff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(0, 96, 239, 0.6);
    box-shadow: 0 0 0 3px rgba(0, 96, 239, 0.2);
}

.contact-submit {
    width: fit-content;
    align-items: center;
    gap: 10px;
    border: none;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.35);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
    }

    .contact-head h1 {
        font-size: 36px;
    }}

.promo-banner {
    background: linear-gradient(135deg, #b30f2c 0%, #e11d2e 100%);
    box-shadow: 0 8px 28px rgba(210, 15, 42, 0.35);
}

.header::before {
    background: rgba(10, 15, 31, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-links a::before {
    background: linear-gradient(135deg, #b30f2c 0%, #e11d2e 100%);
}

.features-section::before,
.pricing-section::before,
.faq-section::before {
    background: linear-gradient(to bottom, rgba(210, 15, 42, 0.2), transparent);
}

.pricing-title,
.features-title,
.faq-title,
.downloads-head h1,
.blog-head h1,
.contact-head h1 {
    letter-spacing: -0.6px;
}

/* ===== CONTACT CARD REDESIGN ===== */
.contact-page .contact-card {
    position: relative;
    padding: 30px;
    border-radius: 26px;
    border: 1px solid rgba(239, 68, 95, 0.36);
    background:
        radial-gradient(circle at 12% 6%, rgba(239, 68, 95, 0.22), transparent 42%),
        linear-gradient(162deg, rgba(28, 8, 14, 0.96), rgba(15, 6, 11, 0.94));
    box-shadow: 0 30px 65px rgba(38, 7, 15, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.contact-page .contact-card::before,
.contact-page .contact-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.contact-page .contact-card::before {
    width: 240px;
    height: 240px;
    right: -130px;
    top: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 118, 138, 0.34), transparent 70%);
}

.contact-page .contact-card::after {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.24;
}

.contact-page .contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-page .contact-card-head {
    margin-bottom: 22px;
}

.contact-page .contact-badge {
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(225, 29, 46, 0.22);
    border: 1px solid rgba(255, 169, 184, 0.55);
    color: #ffdce2;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-page .contact-card h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.45px;
}

.contact-page .contact-card-head p {
    color: rgba(255, 220, 227, 0.86);
    font-size: 14px;
}

.contact-page .contact-grid {
    align-items: start;
}

.contact-page .contact-form-top {
    margin: 0 0 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.contact-page .contact-mini-card {
    padding: 10px 10px 9px;
    border-radius: 12px;
    border: 1px solid rgba(255, 173, 189, 0.26);
    background: rgba(255, 255, 255, 0.045);
    display: grid;
    gap: 2px;
}

.contact-page .contact-mini-card strong {
    font-size: 0.84rem;
    color: #ffe9ee;
    line-height: 1.2;
}

.contact-page .contact-mini-card span {
    font-size: 0.68rem;
    color: rgba(255, 204, 214, 0.78);
    line-height: 1.3;
}

.contact-page .contact-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 14px;
}

.contact-page .contact-form .contact-field:nth-child(4),
.contact-page .contact-form .contact-field:nth-child(5),
.contact-page .contact-form .contact-submit {
    grid-column: 1 / -1;
}

.contact-page .contact-field {
    gap: 7px;
}

.contact-page .contact-field span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 217, 225, 0.88);
}

.contact-page .contact-field input,
.contact-page .contact-field select,
.contact-page .contact-field textarea {
    width: 100%;
    max-width: none;
    max-height: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 173, 189, 0.3);
    border-radius: 14px;
    padding: 12px 14px;
    color: #fff7f9;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-page .contact-field textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-page .contact-field input::placeholder,
.contact-page .contact-field select::placeholder,
.contact-page .contact-field textarea::placeholder {
    color: rgba(255, 204, 214, 0.56);
}

.contact-page .contact-field input:focus,
.contact-page .contact-field select:focus,
.contact-page .contact-field textarea:focus {
    outline: none;
    border-color: rgba(255, 161, 177, 0.82);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.2);
}

.contact-page .contact-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 14px;
    margin-top: 4px;
    box-shadow: 0 18px 34px rgba(207, 23, 52, 0.34);
}

@media (max-width: 768px) {
    .contact-page .contact-card {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .contact-page .contact-form-top {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-page .contact-form {
        grid-template-columns: 1fr;
    }}

.highlight-content .beauty-links {
    display: inline-block;
    margin-top: 3px;
    font-size: 12px;
}

.btn-icon,
.btn-mobile {
    border-color: var(--btn-border);
}

.btn-icon:hover,
.btn-mobile:hover {
    border-color: var(--btn-border-strong);
}

.btn-icon::before,
.btn-mobile::before {
    background: linear-gradient(135deg, var(--btn-border-gradient-start), var(--btn-border-gradient-end));
}

.promo-banner {
    background: linear-gradient(96deg, #a1021c 0%, #d20f2a 48%, #f73d54 100%);
    box-shadow: 0 8px 30px rgba(210, 15, 42, 0.48);
}

.promo-badge {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.36);
}

.section-badge-purple {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: fit-content !important;
    max-width: 100% !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) !important;
    color: #ffd6de !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 26px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.section-badge-purple::before {
    content: '' !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ff9aae 0%, #f4c95d 100%) !important;
    box-shadow: 0 0 12px rgba(255, 154, 174, 0.5) !important;
    flex-shrink: 0 !important;
}

.status-dot,
.badge-dot,
.feature-check,
.trust-icon,
.step-number {
    background: linear-gradient(135deg, #ff6a79, #d20f2a);
    box-shadow: 0 0 0 4px rgba(210, 15, 42, 0.2);
}

.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.32;
}

body .bg-dark {
    background: #0e090a;
}

.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

body .beauty-links {
    color: #f8fafc !important;
}

body .review-verified-v2 svg path,
body .faq-icon-wrapper svg,
body .feature-check svg,
body .feature-icon svg {
    stroke: #d20f2a !important;
    fill: transparent !important;
}

.bg-grid {
    display: none !important;
}

.header .nav {
    min-height: 84px;
    gap: 20px;
}

.header .nav-links {
    gap: 10px;
}

.header .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    color: rgba(248, 250, 252, 0.86) !important;
    font-weight: 700;
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
    z-index: 0;
}

.header .nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(210, 15, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.86);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: -1;
}

.header .nav-links a::after {
    content: '';
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: #ef405a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

@media (max-width: 1024px) {

    .header .nav {
        min-height: 72px;
    }}

.header .nav-links a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 14px !important;
    color: rgba(248, 250, 252, 0.84) !important;
    transition: color 0.22s ease, padding-left 0.22s ease;
}

.header .nav-links a::after {
    display: none !important;
}

.header .nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 11px;
    height: 11px;
    background-color: #d20f2a;
    -webkit-mask-image: var(--maple-link-mask);
    mask-image: var(--maple-link-mask);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transform: translateY(-50%) scale(0.5);
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

/* ===== STEP 19: PROMO BANNER V2 (CLEAN STRIP) ===== */
body .promo-banner {
    padding: 0 !important;
    background: linear-gradient(120deg, var(--canada-red-strong), var(--canada-red) 52%, var(--canada-red-soft)) !important;
    box-shadow: 0 12px 30px rgba(210, 15, 42, 0.4) !important;
    border-bottom: 1px solid rgba(255, 210, 219, 0.22);
}

body .promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 180, 194, 0.28), transparent 30%),
        radial-gradient(circle at 88% 38%, rgba(255, 122, 149, 0.2), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

body .promo-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 236, 241, 0.92), transparent);
    opacity: 0.8;
    pointer-events: none;
}

body .promo-content {
    width: 100%;
    min-height: 56px;
    padding: 9px 50px 9px 0 !important;
    gap: 12px;
    justify-content: flex-start;
    position: relative;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body .promo-badge {
    padding: 6px 10px;
    border-radius: 7px;
    border: 1px solid rgba(255, 182, 198, 0.4);
    background: rgba(255, 255, 255, 0.11);
    color: #ffe7ed;
    font-size: 10px;
    letter-spacing: 0.8px;
    font-weight: 800;
}

body .badge-dot {
    width: 6px;
    height: 6px;
    background: #ffd7e1;
    box-shadow: 0 0 8px rgba(255, 215, 225, 0.8);
}

body .promo-text {
    font-size: 15px;
    font-weight: 650;
    color: #fff;
    letter-spacing: 0.1px;
}

body .promo-text strong {
    color: #ffe9ee;
}

body .promo-btn {
    margin-left: auto;
    padding: 8px 14px !important;
    border-radius: 8px;
    border: 1px solid rgba(255, 198, 211, 0.42) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 800;
    box-shadow: none !important;
}

body .promo-btn:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-1px);
    box-shadow: none !important;
}

body .promo-close {
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1px solid rgba(255, 180, 197, 0.34);
    background: rgba(255, 255, 255, 0.14);
    color: #ffe8ee;
}

body .promo-close:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 214, 223, 0.46);
}

@media (max-width: 760px) {
    body .promo-content {
        min-height: 64px;
        padding: 8px 42px 8px 0 !important;
        gap: 8px;
        flex-wrap: wrap;
    }

    body .promo-badge {
        font-size: 9px;
        padding: 5px 8px;
    }

    body .promo-text {
        font-size: 11px;
        line-height: 1.25;
        flex: 1 1 calc(100% - 96px);
    }

    body .promo-btn {
        margin-left: 0;
        padding: 6px 10px !important;
        font-size: 11px;
    }}

body .apps-header-special .section-badge-purple {
    margin-bottom: 18px;
}

body .how-header-maple .section-badge-purple {
    margin-bottom: 18px;
}

.footer.footer-maple .logo-dark {
    display: none;
}

@media (max-width: 768px) {

    body .nav {
        min-height: 64px;
        gap: 10px;
    }

    body .logo,
    body .logo img {
        max-width: 122px;
    }

    body .nav-actions {
        flex: 0 0 auto;
        gap: 8px;
    }

    body .btn-icon,
    body .btn-mobile {
        width: 42px;
        height: 42px;
    }

    body .mobile-menu {
        top: calc(100% - 1px);
    }}
