/* block-instruction.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #9F2B2C;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background concentric circles pattern */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: #FFFFFF;
    opacity: 0.03;
    transform: translate(-50%, -50%);
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: 0;
    left: 0;
}

.circle-2 {
    width: 1000px;
    height: 1000px;
    top: 0;
    left: 100px;
    opacity: 0.02;
}

.circle-3 {
    width: 1400px;
    height: 1400px;
    top: 0;
    left: 200px;
    opacity: 0.01;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.guide-header {
    text-align: center;
    margin-bottom: 80px;
}

.guide-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.guide-header p {
    font-size: 20px;
    color: #A9A9A9;
    font-weight: 300;
}

.step-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 50px;
}

.step-section.reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    max-width: 500px;
}

.step-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #C54D4E;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    margin-right: 15px;
    box-shadow: 0 10px 20px rgba(197, 77, 78, 0.4);
    vertical-align: middle;
}

.step-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 70px);
}

.step-content p {
    font-size: 18px;
    font-weight: 300;
    color: #DDDDDD;
}

.step-link, .step-link:link, .step-link:visited {
    color: #FFFFFF !important;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.step-link:hover, .step-link:active {
    color: #FF7E80 !important;
}


.password-levels {
    list-style: none;
    margin-top: 20px;
}

.password-levels li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.password-levels li strong {
    color: #FF7779;
}

/* Animations Mockups styling based on the real widget */
.widget-mockup {
    width: 450px;
    height: 400px;
    background: #C54D4E;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.mockup-header h2 {
    font-size: 24px;
    font-weight: 900;
    color: #FFF;
    margin: 0;
}

.mockup-counter {
    width: 45px;
    height: 45px;
    border: 3px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}

.mockup-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-input {
    flex: 1;
    height: 45px;
    background: #FFF;
    border-radius: 25px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.typing-text {
    color: #333;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.mockup-btn {
    width: auto;
    padding: 0 18px;
    height: 45px;
    background: #FFF;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-item {
    width: 100%;
    height: 50px;
    background: #F86466;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
    opacity: 1;
    transform: translateY(0);
}

.mockup-item.new-item {
    opacity: 0;
    transform: translateY(-10px);
}

.mockup-item.animate-in {
    animation: premiumAddMockup 0.5s forwards;
}

@keyframes premiumAddMockup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mockup-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 5px;
}

.mockup-name {
    flex: 1;
    font-weight: 600;
    font-size: 14px;
}

.mockup-delete {
    font-weight: 900;
    color: #FFF;
    cursor: pointer;
}

.fake-mouse {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white" stroke="black" stroke-width="1"><path d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L5.5 3.21z"/></svg>') no-repeat;
    position: absolute;
    top: 60%;
    left: 80%;
    z-index: 10;
    opacity: 0;
}

/* Steps 4, 5, 6 Mockups */
.chrome-store-mockup {
    width: 350px;
    background: #202124;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border: 1px solid #3c4043;
}
.store-logo { width: 60px; height: 60px; }
.store-info h3 { font-size: 16px; margin-bottom: 10px; }
.store-btn {
    background: #8ab4f8;
    color: #202124;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.blocked-page-mockup {
    width: 400px;
    height: 250px;
    background: #000;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #C54D4E;
}
.bp-icon { font-size: 50px; margin-bottom: 15px; }
.bp-text { font-size: 24px; font-weight: 900; color: #FFF; }

.password-mockup {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pwd-level {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #444;
}
.pwd-level.active {
    background: #C54D4E;
    border-color: #F14C4E;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 100px;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #DDDDDD;
}

.cta-button {
    display: inline-block;
    background: #C54D4E;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 22px;
    font-weight: 900;
    padding: 20px 50px;
    border-radius: 40px;
    box-shadow: 0 15px 30px rgba(197, 77, 78, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 77, 78, 0.6);
    background: #F86466;
}

/* Toggle Switch Styling */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(61, 16, 16, 0.3);
    transition: .4s;
    border-radius: 34px;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 22px; width: 22px;
    left: 4px; bottom: 4px;
    background-color: #A33A3C;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background-color: #FFFFFF;
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(28px);
    background-color: #F86466;
}

.mockup-icon svg {
    width: 100%;
    height: 100%;
}

/* Hero Promo Section */
.hero-promo {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: url('../../../Promopage/assets/background_banner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-promo .hero-content {
    max-width: 650px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-promo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 68px;
    font-weight: 900 !important;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.hero-promo p {
    font-size: 25px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 45px;
    max-width: 440px;
}

.hero-promo .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-promo-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 427px;
    height: 96px;
    border-radius: 29px;
    cursor: pointer;
    border: none;
    font-size: 30px;
    font-weight: 900;
    color: #4F4F4F;
    background-color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: premium-pulse-hero 3s infinite ease-in-out;
}

.btn-promo-primary:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    color: #333333;
}

.btn-promo-primary:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-promo-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 427px;
    height: 60px;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.4);
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-promo-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #FFFFFF;
}

.hero-promo .hero-visual {
    position: relative;
    margin-right: -15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
}

/* Hero Blocked Page Mockup (Browser Style) */
.hero-blocked-mockup {
    width: 480px;
    height: auto;
    min-height: 420px;
    background-color: #f1f3f4;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.browser-header {
    height: 40px;
    background-color: #f1f3f4;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
    border-bottom: 1px solid #dadce0;
}

.browser-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.browser-url-bar {
    margin-left: 15px;
    margin-right: 25px;
    flex: 1;
    background-color: #ffffff;
    border-radius: 6px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #3c4043;
    border: 1px solid #dfe1e5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.5px;
}

.browser-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #9F2B2C;
    color: #ffffff;
}

/* Hero Flipper Animation */
.hero-flipper-container {
    width: 480px;
    height: 380px;
    perspective: 1200px;
}

.hero-flipper-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
}

.hero-flipper-inner.flipped {
    transform: rotateY(165deg) rotateX(5deg);
}

.hero-flipper-container:hover .hero-flipper-inner {
    transform: rotateY(0deg) rotateX(0deg);
}

.hero-flipper-container:hover .hero-flipper-inner.flipped {
    transform: rotateY(180deg) rotateX(0deg);
}

.hero-flipper-front, .hero-flipper-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.hero-flipper-front {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-flipper-back {
    background-color: #2b2b2b;
    transform: rotateY(180deg);
}

/* Front Widget Styles */
.hero-input-widget {
    padding: 30px;
    text-align: center;
    width: 85%;
    position: relative;
}

.hero-widget-logo {
    width: 64px;
    margin-bottom: 20px;
}

.hero-widget-title {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-widget-input-group {
    display: flex;
    gap: 10px;
}

.hero-widget-input {
    flex: 1;
    background: #f4f5f7;
    border-radius: 10px;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
    font-family: monospace;
    border: 2px solid #e1e4e8;
    text-align: left;
}

.hero-widget-btn {
    background: #F86466;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 24px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 10px rgba(248, 100, 102, 0.3);
}

.hero-widget-btn:hover {
    background: #e55557;
}

.hero-fake-mouse {
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24"><path fill="black" stroke="white" stroke-width="1.5" d="M11.4 21.6l-3.2-7.5-4.8 4.5V2.1l15.6 11.5-6.5 1.1 4.2 9.5-5.3 2.4-4.2-9.5z"/></svg>');
    position: absolute;
    top: 80%;
    left: 80%;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Rhythmic Steps for Instruction Text */
.rhythmic-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.rhythmic-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rhythmic-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.rhythmic-dot {
    width: 12px;
    height: 12px;
    background-color: #F86466;
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 10px rgba(248, 100, 102, 0.6);
    flex-shrink: 0;
}

.rhythmic-item p {
    font-size: 16px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    color: #DDDDDD;
}

/* Step 5 Install Methods Container */
.methods-mockup-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-mockup {
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.method-mockup.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.manage-mockup {
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.manage-mockup.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Method Tabs */
.method-tab {
    cursor: pointer;
}
.method-tab.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}
.method-tab.active .rhythmic-dot {
    box-shadow: 0 0 15px rgba(248, 100, 102, 1);
}

/* Modal Mockup */
.install-modal {
    background-color: #B23435;
    border-radius: 20px;
    padding: 30px;
    width: 380px;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.modal-icon-bg img {
    width: 32px;
}

.modal-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.modal-text {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.modal-subtext {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 500;
}

.modal-buttons {
    display: flex;
    gap: 15px;
}

.modal-btn {
    flex: 1;
    padding: 14px 0;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}
.modal-btn.outline {
    background: #FA6969;
    border: 1px solid rgba(255,255,255,0.2);
}
.modal-btn.filled {
    background: white;
    color: #B23435;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

/* Notification Mockup */
.install-notification {
    background: transparent;
    border: 1.5px dashed rgba(255,255,255,0.5);
    border-radius: 12px;
    padding: 20px;
    width: 440px;
    display: flex;
    gap: 15px;
    color: white;
    text-align: left;
}

.notif-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.notif-title {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 10px;
}

.notif-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 600;
}

.notif-link {
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

/* Status Mockup */
.install-status {
    text-align: left;
    color: white;
}
.status-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}
.status-btn {
    background-color: #E68A00;
    background-image: linear-gradient(
        45deg,
        rgba(217, 122, 0, 1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(217, 122, 0, 1) 50%,
        rgba(217, 122, 0, 1) 75%,
        transparent 75%,
        transparent
    );
    background-size: 28px 28px;
    animation: moveStripes 1s linear infinite;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 260px;
    color: black;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 28px 0; }
}
.status-link {
    font-size: 13px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Step 6: Manage Methods */
.manage-tab {
    cursor: pointer;
}
.manage-tab.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}
.manage-tab.active .rhythmic-dot {
    box-shadow: 0 0 15px rgba(248, 100, 102, 1);
}

.manage-mockup {
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
    pointer-events: none;
}
.manage-mockup.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Popup Mockup Exact 1 in 1 */
.popup-mockup-exact {
    width: 320px;
    height: 380px;
    background-color: #9F2B2C;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
}
.popup-bg-circles {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -50px;
    left: -50px;
    pointer-events: none;
}
.popup-exact-header {
    padding: 25px 25px 10px;
}
.popup-exact-settings {
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 0.8;
}
.popup-exact-site {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 25px 20px;
}
.popup-exact-site .site-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.popup-exact-site .site-text {
    display: flex;
    flex-direction: column;
}
.popup-exact-actions {
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}
.popup-exact-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.popup-exact-btn.primary {
    background: white;
    color: #333;
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}
.popup-exact-btn.secondary {
    background: #F86466;
    color: white;
    border: 1px solid white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Dashboard Mockup exact */
.browser-content-dashboard {
    flex: 1;
    display: flex;
    background: #F4F6F8;
}
.dash-mockup-sidebar {
    width: 130px;
    background: #111111;
    color: white;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dash-menu-item {
    font-size: 10px;
    font-weight: bold;
    padding: 8px;
    border-radius: 6px;
    color: #888;
}
.dash-menu-item.active {
    background: rgba(255,255,255,0.1);
    color: white;
}
.dash-sub-menu-item {
    font-size: 9px;
    padding: 6px 6px 6px 20px;
    color: #666;
}
.dash-sub-menu-item.active {
    color: #F86466;
    font-weight: bold;
}
.dash-mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dash-mockup-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    color: #333;
}
.dash-mockup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dash-mockup-row {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    font-size: 11px;
    font-weight: bold;
    color: #444;
}
.dash-mockup-row .toggle {
    width: 24px;
    height: 14px;
    background: #ddd;
    border-radius: 7px;
    position: relative;
}
.dash-mockup-row .toggle.active {
    background: #F86466;
}
.dash-mockup-row .toggle::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

/* Missing classes for Manage Mockup 2 (Browser Address) */
.browser-mockup-simple {
    width: 440px;
    height: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe1e5;
}

.browser-mockup-simple .browser-header.light-header {
    background: #f1f3f4;
    border-bottom: 1px solid #dadce0;
}
.browser-mockup-simple .light-url-bar {
    background: #ffffff;
    color: #202124;
    border: 1px solid #dfe1e5;
}
.block-list-widget {
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 20px;
    border: 1px solid #eee;
    color: #333;
}
.block-list-widget .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.block-list-widget .toggle {
    width: 40px;
    height: 22px;
    background: #ccc;
    border-radius: 11px;
    position: relative;
}
.block-list-widget .toggle.active {
    background: #4CAF50;
}
.block-list-widget .toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}
.block-list-widget .toggle.active::after {
    left: 20px;
}
.block-list-widget .search-bar input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 13px;
    background: #f8f9fa;
}
.block-list-widget .site-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.block-list-widget .site-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    background: #f8f9fa;
}
.block-list-widget .site-info {
    flex: 1;
}
.block-list-widget .site-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.block-list-widget .site-url {
    font-size: 11px;
    color: #777;
}
.block-list-widget .site-action {
    width: 28px;
    height: 28px;
    background: #ffebee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-mockup-row .toggle.active::after {
    left: auto;
    right: 2px;
}

.hero-blocked-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-blocked-title {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-blocked-message {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-blocked-unlock-btn {
    padding: 8px 16px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-left { opacity: 0; animation: fadeInLeft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.animate-bottom { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.animate-right { opacity: 0; animation: fadeInRight 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

/* Popup Mockup */
.popup-mockup {
    background: #FFFFFF;
    color: #333;
    border-radius: 12px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    border: 1px solid #E5E5E5;
    margin: 0 auto;
}

.popup-header {
    background: #F8F9FA;
    padding: 12px 15px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.popup-body {
    padding: 20px;
}

.popup-btn {
    background: #1a1a1a;
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.popup-btn:hover {
    transform: scale(1.02);
}

/* Password Mockup Styles */
.password-mockup {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.level-card {
    width: 100%;
    background-color: transparent;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-main-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 17px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.level-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.level-icon {
    display: flex;
}

.level-text-group {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.level-title {
    font-weight: 900;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.level-specs {
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.2;
}

.custom-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.radio-dot {
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
}

/* CTA Section Update */
.cta-section {
    padding: 60px 0 100px;
    text-align: center;
}

.cta-card {
    background: #C54D4E;
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn-override {
    background: #FFFFFF !important;
    color: #333333 !important;
    font-size: 1.1rem;
    font-weight: 900;
    padding: 18px 40px;
    border-radius: 16px;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
    animation: premium-pulse-cta 3s infinite ease-in-out;
}

.cta-btn-override:hover {
    animation-play-state: paused;
    background: #FFF0F0 !important;
    color: #9F2B2C !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.password-levels li {
    transition: all 0.3s ease;
    cursor: pointer;
}

.password-levels li.active {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 40px;
    }
    .hero-promo h1 {
        font-size: 56px;
    }
    .hero-promo p {
        font-size: 22px;
    }
    .btn-promo-primary, .btn-promo-secondary {
        width: 100%;
        max-width: 380px;
    }
    .hero-flipper-container {
        transform: scale(0.9);
        transform-origin: right center;
    }
}

@media (max-width: 1025px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 20px 40px;
        gap: 0 !important;
        display: flex;
    }
    .hero-promo {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    .hero-promo .hero-content {
        display: contents;
    }
    .hero-promo h1 {
        order: 1;
        margin-bottom: 15px !important;
    }
    .hero-promo p {
        order: 2;
        max-width: 550px;
        margin-bottom: 35px !important;
        font-size: 20px;
    }
    .hero-promo .hero-visual {
        order: 3;
        margin-right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 25px !important;
    }
    .hero-promo .hero-buttons {
        order: 4;
        align-items: center;
        width: 100%;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .hero-flipper-container {
        transform: scale(1);
        transform-origin: center center;
    }
}

@media (max-width: 900px) {
    .step-section, .step-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 80px;
    }
    .step-content {
        max-width: 100%;
    }
    .step-content h2 {
        width: 100%;
        font-size: 28px;
        display: block;
        margin-top: 10px;
    }
    .step-number {
        margin: 0 auto;
        display: flex;
    }
    .step-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 420px;
    }
    .flat-flipper, .widget-mockup, .methods-mockup-container {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

@media (max-width: 768px) {
    .hero-promo h1 br {
        display: none;
    }
    .hero-promo h1 {
        font-size: 42px;
        line-height: 1.3;
        word-spacing: 0.05em;
    }
    .hero-promo p {
        font-size: 18px;
    }
    .btn-promo-primary {
        width: 100% !important;
        max-width: 340px !important;
        height: 70px !important;
        font-size: 22px !important;
        border-radius: 20px !important;
    }
    .btn-promo-secondary {
        width: 100% !important;
        max-width: 340px !important;
        height: 52px !important;
        font-size: 16px !important;
        border-radius: 16px !important;
    }
    .hero-flipper-container {
        transform: scale(0.8) !important;
        transform-origin: center top !important;
        margin-bottom: -80px !important;
    }
    .guide-header h1 {
        font-size: 36px;
    }
    .guide-header p {
        font-size: 18px;
    }
    .cta-card {
        padding: 40px 20px;
        border-radius: 24px;
    }
    .cta-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-promo h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-promo p {
        font-size: 16px;
        padding: 0 10px;
    }
    .btn-promo-primary {
        max-width: 290px !important;
        height: 60px !important;
        font-size: 18px !important;
        border-radius: 16px !important;
    }
    .btn-promo-secondary {
        max-width: 290px !important;
        height: 48px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }
    .hero-flipper-container {
        width: 480px !important;
        height: 380px !important;
        transform: scale(0.68) !important;
        transform-origin: center top !important;
        margin-bottom: -120px !important;
    }
    .hero-blocked-mockup {
        width: 100% !important;
        min-height: 420px !important;
        transform: none !important;
    }
    .step-visual {
        min-height: 300px;
    }
    .flat-flipper, .widget-mockup {
        transform: scale(0.7) !important;
        transform-origin: center center !important;
        margin: -50px 0 !important;
    }
    .methods-mockup-container {
        transform: scale(0.68) !important;
        transform-origin: center center !important;
        margin: -60px 0 !important;
    }
    .password-mockup {
        transform: scale(0.8) !important;
        transform-origin: center center !important;
    }
    .guide-header h1 {
        font-size: 28px;
    }
    .cta-card h2 {
        font-size: 1.6rem;
    }
    .cta-card p {
        font-size: 1rem;
    }
    .cta-btn-override {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .hero-promo h1 {
        font-size: 28px;
    }
    .hero-flipper-container {
        transform: scale(0.58) !important;
        margin-bottom: -160px !important;
    }
    .flat-flipper, .widget-mockup {
        transform: scale(0.62) !important;
        margin: -70px 0 !important;
    }
    .methods-mockup-container {
        transform: scale(0.6) !important;
        margin: -80px 0 !important;
    }
    .password-mockup {
        transform: scale(0.7) !important;
    }
}

/* Premium Button Interactivity Animations */
.btn-promo-primary::after, .cta-btn-override::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: premium-shimmer 3s infinite ease-in-out;
}

@keyframes premium-shimmer {
    0% {
        left: -60%;
    }
    35%, 100% {
        left: 140%;
    }
}

@keyframes premium-pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.5) !important;
    }
}

@keyframes premium-pulse-hero {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.035);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

/* Flat Flipper overrides to disable 3D perspective and hover tilt */
.flat-flipper .hero-flipper-inner {
    transform: none !important;
}
.flat-flipper .hero-flipper-inner.flipped {
    transform: rotateY(180deg) !important;
}
.flat-flipper:hover .hero-flipper-inner {
    transform: none !important;
}
.flat-flipper:hover .hero-flipper-inner.flipped {
    transform: rotateY(180deg) !important;
}

/* Force ALL buttons to uppercase */
button, .btn, [class*="btn"], [class*="button"] {
    text-transform: uppercase !important;
}

