/* ==========================================================================
   HOMEPAGE STYLES - RIFE DIGITAL THEME
   Modern, Premium, High-Performance CSS (Zero Page Builder Bloat)
   ========================================================================== */



.home-replica {
    font-family: var(--font-primary);
    background-color: #fafafa;
    color: #475569;
    line-height: 1.6;
    overflow-x: hidden;
}

.home-replica h1, 
.home-replica h2, 
.home-replica h3, 
.home-replica h4, 
.home-replica h5, 
.home-replica h6 {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700;
    color: var(--brand-title);
    letter-spacing: -0.01em;
}

/* Utilities */
.section-padding {
    padding: 70px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-green { color: var(--brand-green) !important; }
.text-accent { color: var(--brand-navy) !important; }

.align-center {
    align-items: center;
}

.section-title-wrap {
    margin-bottom: 45px;
}

.section-tag {
    display: inline-block;
    background: var(--brand-green-light);
    color: var(--brand-green);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brand-muted);
    max-width: 650px;
    margin: 0 auto;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--brand-green);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons System */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #58ad51 0%, #43923c 100%) !important;
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(88, 173, 81, 0.35);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #468f3f 0%, #377631 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 173, 81, 0.45);
    color: #ffffff !important;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   SECTION 1: HERO TOP - VIP PRO MAKEOVER
   ========================================================================== */
.replica-hero {
    padding: 70px 0 0;
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 40%, #f8fafc 100%);
    border-bottom: 1px solid var(--brand-border);
    position: relative;
    overflow: hidden;
}

/* Background Ambient Lighting & High-Tech Grid Mesh */
.hero-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.hero-glow-emerald {
    top: -15%;
    right: 5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(88, 173, 81, 0.16) 0%, rgba(88, 173, 81, 0.05) 50%, transparent 70%);
    animation: pulseGlow 9s ease-in-out infinite alternate;
}

.hero-glow-cyan {
    bottom: 5%;
    left: -12%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.09) 0%, rgba(2, 132, 199, 0.02) 50%, transparent 70%);
    animation: pulseGlow 11s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.12) translate(-15px, 15px); opacity: 1; }
}

.hero-grid-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(88, 173, 81, 0.15) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.5;
    mask-image: radial-gradient(circle at 60% 40%, black 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 60% 40%, black 25%, transparent 80%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 40px;
    align-items: center;
}

/* Left Column: Pill Badge, Title Gradient, CTAs, Stats */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(88, 173, 81, 0.35);
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(88, 173, 81, 0.12);
    margin-bottom: 18px;
}

.badge-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    position: relative;
    animation: badgePulseAnim 2s infinite;
}

@keyframes badgePulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(88, 173, 81, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(88, 173, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(88, 173, 81, 0); }
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--brand-title);
    text-transform: uppercase;
}

.badge-tag {
    background: var(--brand-green);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.9rem;
    font-weight: 800;
    line-height: 1.06;
    color: #1e293b;
    margin: 0 0 18px;
    letter-spacing: -0.025em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #58ad51 0%, #16a34a 55%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 12px rgba(88, 173, 81, 0.22));
}

.hero-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.72;
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-desc strong {
    color: #1e293b;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

/* Secondary CTA (Glassmorphic Watch Demo) */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(88, 173, 81, 0.35);
    color: #1e293b;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-secondary .play-btn-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-green);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    padding-left: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 173, 81, 0.18);
}

.btn-hero-secondary:hover .play-btn-circle {
    transform: scale(1.15);
    background: var(--brand-green-hover);
}

/* Trust Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Barlow', sans-serif;
    line-height: 1.2;
}

.stat-num.stat-rating {
    color: #d97706;
}

.stat-num.stat-rating i {
    color: #f59e0b;
    font-size: 1rem;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(203, 213, 225, 0.85);
}

/* Right Column: Visual Stage & Floating Glassmorphism Cards */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.stage-aura-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.stage-aura-ring.ring-1 {
    width: 440px;
    height: 440px;
    border: 1.5px dashed rgba(88, 173, 81, 0.28);
    animation: spinAuraRing 35s linear infinite;
}

.stage-aura-ring.ring-2 {
    width: 520px;
    height: 520px;
    border: 1.5px dotted rgba(2, 132, 199, 0.22);
    animation: spinAuraRingRev 45s linear infinite;
}

@keyframes spinAuraRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinAuraRingRev {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.stage-glow-center {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 173, 81, 0.24) 0%, rgba(2, 132, 199, 0.08) 50%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.hero-img-card {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-main-img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s ease;
}

.hero-visual-stage:hover .hero-main-img {
    transform: scale(1.02);
}

/* Floating Glassmorphic Badges */
.hero-float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09), 0 2px 6px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-float-card:hover {
    transform: translateY(-5px) scale(1.04) !important;
    box-shadow: 0 20px 45px rgba(88, 173, 81, 0.2);
    border-color: rgba(88, 173, 81, 0.35);
}

.card-sweep {
    top: 6%;
    left: -4%;
}

.card-rating {
    bottom: 12%;
    left: -8%;
}

.card-cert {
    bottom: 16%;
    right: -4%;
}

.float-anim-1 {
    animation: floatCardSlow1 4.5s ease-in-out infinite alternate;
}

.float-anim-2 {
    animation: floatCardSlow2 5.5s ease-in-out infinite alternate;
}

.float-anim-3 {
    animation: floatCardSlow3 5s ease-in-out infinite alternate;
}

@keyframes floatCardSlow1 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(0.8deg); }
}

@keyframes floatCardSlow2 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(8px) rotate(-0.8deg); }
}

@keyframes floatCardSlow3 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(0.6deg); }
}

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.icon-emerald {
    background: rgba(88, 173, 81, 0.16);
    color: #58ad51;
}

.icon-gold {
    background: rgba(245, 158, 11, 0.16);
    color: #f59e0b;
}

.icon-blue {
    background: rgba(2, 132, 199, 0.16);
    color: #0284c7;
}

.float-card-content {
    display: flex;
    flex-direction: column;
}

.float-card-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.float-card-val {
    font-size: 0.96rem;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Barlow', sans-serif;
    line-height: 1.2;
}

.float-card-stars {
    color: #f59e0b;
    font-size: 0.72rem;
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.float-card-sub {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 500;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    animation: miniDotPulse 1.8s infinite;
    margin-left: 2px;
}

@keyframes miniDotPulse {
    0% { box-shadow: 0 0 0 0 rgba(88, 173, 81, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(88, 173, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(88, 173, 81, 0); }
}

/* VIP Guarantee Strip */
.hero-guarantee-strip {
    margin-top: 55px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    padding: 22px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.guarantee-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--brand-green-light);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    background: var(--brand-green);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(88, 173, 81, 0.35);
}

.guarantee-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
}

.guarantee-text span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

/* ==========================================================================
   SECTION 1B: HERO BOTTOM (DEVICE SHOWCASE)
   ========================================================================== */
.replica-hero-bottom {
    background-color: var(--brand-light);
    border-bottom: 1px solid var(--brand-border);
}

.device-float-box {
    text-align: center;
}

.float-animation {
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.section-desc {
    font-size: 1.1rem;
    color: var(--brand-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ==========================================================================
   SECTION 2: LIMITED TIME OFFER BAR
   ========================================================================== */
.limited-offer-bar {
    background: linear-gradient(135deg, #58ad51 0%, #468f3f 100%);
    padding: 20px 0;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(88, 173, 81, 0.25);
}

.offer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.offer-heading {
    margin: 0;
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-offer-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #ffffff;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-offer-outline:hover {
    background: #ffffff;
    color: var(--brand-green) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ==========================================================================
   SECTION 3: FLIP BOXES
   ========================================================================== */
.flip-boxes-section {
    background: #ffffff;
}

.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.flip-box {
    background-color: transparent;
    height: 270px;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 14px;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, 
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 35px 25px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-box-front {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-shadow);
}

.flip-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-green-light);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.flip-box-front h3 {
    color: var(--brand-title);
    font-size: 1.35rem;
    margin: 0 0 10px;
}

.flip-box-front p {
    color: var(--brand-muted);
    font-size: 0.95rem;
    margin: 0 0 12px;
    line-height: 1.5;
}

.flip-action-hint {
    font-size: 0.8rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.flip-box-back {
    background: linear-gradient(135deg, #415161 0%, #2c3845 100%);
    color: #ffffff;
    transform: rotateY(180deg);
    box-shadow: 0 15px 35px rgba(44, 56, 69, 0.25);
}

.back-icon {
    font-size: 32px;
    color: var(--brand-green);
    margin-bottom: 12px;
}

.flip-box-back h3 {
    color: #ffffff !important;
    font-size: 1.35rem;
    margin: 0 0 10px;
}

.flip-box-back p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.btn-flip-back {
    display: inline-block;
    background: var(--brand-green);
    color: #ffffff !important;
    padding: 8px 22px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-flip-back:hover {
    background: var(--brand-green-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   SECTION 4: INSTRUCTIONAL VIDEOS
   ========================================================================== */
.videos-section {
    background-color: var(--brand-light);
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.video-item {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--brand-shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--brand-shadow-hover);
}

.video-thumb {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: background 0.3s;
}

.video-item:hover .video-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.play-btn-circle {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-item:hover .play-btn-circle {
    transform: scale(1.12);
    background: var(--brand-green);
    color: #ffffff;
}

.video-overlay h3 {
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* ==========================================================================
   SECTION 5: RIFE MACHINE FEATURES
   ========================================================================== */
.machine-features {
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.feature-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 6px 18px rgba(88, 173, 81, 0.1);
    transform: translateX(4px);
}

.feature-icon-badge {
    width: 38px;
    height: 38px;
    background: var(--brand-green-light);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: var(--brand-title);
}

.feature-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--brand-muted);
    line-height: 1.5;
}

.feature-device-wrap {
    display: flex;
    justify-content: center;
}

.device-card-frame {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--brand-shadow);
    display: inline-block;
    text-align: center;
}

.device-card-frame img {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-navy);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* ==========================================================================
   SECTION 6: DEAL OF THE WEEK
   ========================================================================== */
.deal-section {
    background: var(--brand-light);
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
}

.section-tag-deal {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.countdown-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.countdown-unit {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 12px 18px;
    min-width: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.countdown-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--brand-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.countdown-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: #cbd5e1;
}

.deal-card-premium {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.deal-discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ef4444;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.4);
}

.deal-image-wrap {
    text-align: center;
}

.deal-image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.deal-info h3 {
    font-size: 1.6rem;
    color: var(--brand-title);
    margin: 0 0 10px;
    line-height: 1.3;
}

.deal-desc {
    color: var(--brand-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.deal-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.price-old {
    color: #94a3b8;
    font-size: 1.25rem;
}

.price-current {
    color: var(--brand-green);
    font-size: 2.2rem;
    font-weight: 800;
}

.price-save {
    background: var(--brand-green-light);
    color: var(--brand-green);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-deal {
    width: 100%;
}

/* ==========================================================================
   SECTION 7: DUAL COMBOS (MAT & BELT)
   ========================================================================== */
.dual-combos-section {
    background: #ffffff;
}

.combo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.combo-card {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--brand-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--brand-shadow-hover);
}

.combo-tag {
    display: inline-block;
    background: #f1f5f9;
    color: var(--brand-navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.combo-header h3 {
    font-size: 1.5rem;
    color: var(--brand-title);
    margin: 0 0 6px;
}

.combo-sub {
    font-size: 0.9rem;
    color: var(--brand-muted);
    font-weight: 600;
    margin: 0;
}

.combo-image-box {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.combo-image-box img {
    max-width: 260px;
    height: auto;
    transition: transform 0.4s ease;
}

.combo-card:hover .combo-image-box img {
    transform: scale(1.06);
}

.btn-combo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border: 2px solid var(--brand-green);
    background: transparent;
    color: var(--brand-green) !important;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-combo:hover {
    background: var(--brand-green);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(88, 173, 81, 0.3);
}

/* ==========================================================================
   SECTION 8: TESTIMONIAL SLIDER
   ========================================================================== */
.testimonial-slider-section {
    background: var(--brand-light);
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
}

.testimonial-slider-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px 5px;
}

.testimonial-bubble {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 45px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.quote-symbol {
    font-size: 32px;
    color: var(--brand-green);
    opacity: 0.35;
    margin-bottom: 10px;
}

.star-rating {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #334155;
    line-height: 1.75;
    margin: 0 0 22px;
}

.author-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.author-name {
    font-size: 1.15rem;
    color: var(--brand-title);
    font-weight: 700;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--brand-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.t-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    color: var(--brand-title);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    z-index: 5;
}

.t-nav-btn:hover {
    background: var(--brand-green);
    color: #ffffff;
    border-color: var(--brand-green);
    transform: scale(1.08);
}

.t-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    width: 26px;
    border-radius: 10px;
    background: var(--brand-green);
}

/* ==========================================================================
   SECTION 9: PACKED WITH NEW FEATURES (MINI IMAGE SLIDERS)
   ========================================================================== */
.packed-features-section {
    background: #ffffff;
}

.features-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.f3-card {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    padding: 25px;
    box-shadow: var(--brand-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.f3-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--brand-shadow-hover);
}

.f3-header h4 {
    margin: 0 0 18px;
    font-size: 1.25rem;
    color: var(--brand-title);
}

/* Mini Image Slider Container */
.f3-slider {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 18px;
}

.f3-slides-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.f3-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.f3-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.f3-slide img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.f3-card:hover .f3-slide img {
    transform: scale(1.05);
}

.f3-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--brand-border);
    color: var(--brand-title);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    opacity: 0;
    transition: all 0.25s ease;
    z-index: 4;
}

.f3-slider:hover .f3-btn {
    opacity: 1;
}

.f3-btn:hover {
    background: var(--brand-green);
    color: #ffffff;
    border-color: var(--brand-green);
}

.f3-btn.f3-prev {
    left: 8px;
}

.f3-btn.f3-next {
    right: 8px;
}

.f3-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 4;
}

.f3-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
}

.f3-dot.active {
    background: var(--brand-green);
    width: 16px;
    border-radius: 6px;
}

.f3-desc p {
    font-size: 0.95rem;
    color: var(--brand-muted);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 10: CONTACT FORM
   ========================================================================== */
.contact-section {
    background: var(--brand-light);
    border-top: 1px solid var(--brand-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.contact-heading {
    font-size: 2.3rem;
    margin: 0 0 10px;
}

.contact-sub {
    color: var(--brand-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.contact-woman-img img {
    max-width: 270px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--brand-shadow);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-title);
}

.form-group .req {
    color: #ef4444;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #334155;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(88, 173, 81, 0.15);
}

.btn-submit-contact {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border-radius: 6px;
    font-size: 1rem;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-content {
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats-row {
        justify-content: center;
    }
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .card-sweep {
        top: 2%;
        left: 2%;
    }
    .card-rating {
        bottom: 8%;
        left: 2%;
    }
    .card-cert {
        bottom: 10%;
        right: 2%;
    }
    .hero-grid,
    .features-grid,
    .contact-grid,
    .deal-card-premium {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .deal-card-premium {
        text-align: center;
    }
    .deal-pricing {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-pill-badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .hero-stats-row {
        flex-direction: column;
        gap: 14px;
    }
    .stat-divider {
        display: none;
    }
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stage-aura-ring.ring-1 {
        width: 320px;
        height: 320px;
    }
    .stage-aura-ring.ring-2 {
        width: 360px;
        height: 360px;
    }
    .hero-float-card {
        padding: 8px 12px;
        gap: 8px;
    }
    .float-card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .float-card-val {
        font-size: 0.82rem;
    }
    .card-sweep {
        top: -4%;
        left: 0;
    }
    .card-rating {
        display: none;
    }
    .card-cert {
        bottom: 2%;
        right: 0;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .offer-flex {
        flex-direction: column;
        text-align: center;
    }
    .offer-left {
        justify-content: center;
    }
    .offer-heading {
        font-size: 1.3rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .combo-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-bubble {
        padding: 30px 20px;
    }
    .testimonial-quote {
        font-size: 1.05rem;
    }
    .countdown-unit {
        min-width: 65px;
        padding: 10px;
    }
    .countdown-num {
        font-size: 1.7rem;
    }
}
