/* Reset and Design Tokens */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #9F2B2C;
    --accent-color: #C54D4E;
    --btn-primary-bg: #FFFFFF;
    --btn-primary-color: #333333;
    --btn-secondary-bg: #F86466;
    --btn-secondary-border: rgba(255, 255, 255, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background concentric circles pattern */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.mobile-break {
    display: 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;
}

/* Hero Section */
.hero-promo {
    width: 100%;
    min-height: 100vh;
    background: url('../../Promopage/assets/background_banner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero-promo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 92px;
    font-weight: 900 !important;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
}

html[lang="ru"] .hero-promo h1 {
    font-size: 64px;
    line-height: 1.1;
}

.hero-promo p {
    font-size: 25px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 45px;
    max-width: 440px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.hero-bullets-compact {
    list-style: none;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 480px;
    max-width: 100%;
}

.hero-bullets-compact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hero-bullets-compact .checkmark {
    background-color: #ff6565;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-promo-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 280px;
    padding: 0 40px;
    height: 64px;
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: premium-pulse-hero 3s infinite ease-in-out;
}

.btn-promo-primary:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: #FFF3F3;
}

/* Secondary Button */
.btn-promo-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 64px;
    background-color: transparent;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--btn-secondary-border);
    transition: all 0.3s ease;
}

.btn-promo-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #FFFFFF;
}

/* Shimmer animation on buttons */
.btn-promo-primary::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 4s infinite ease-in-out;
}

@keyframes premium-shimmer {
    0% { left: -60%; }
    30%, 100% { left: 140%; }
}

.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Dashboard Mockup (Hero Animation) */
/* Browser Blocked Mockup (Hero Animation) */
.browser-blocked-mockup {
    width: 480px;
    height: 380px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.browser-header {
    height: 40px;
    background: #f1f3f4;
    border-bottom: 1px solid #dadce0;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
}

.browser-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.browser-url-bar {
    margin-left: 15px;
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #dfe1e5;
    border-radius: 14px;
    height: 24px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-size: 11px;
    color: #5f6368;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.browser-content-container {
    flex: 1;
    position: relative;
    height: calc(100% - 40px);
}

/* Google search page mockup styles */
.google-search-mockup {
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.google-logo {
    font-size: 38px;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    user-select: none;
}

.google-search-bar {
    width: 320px;
    height: 38px;
    border: 1px solid #dfe1e5;
    border-radius: 19px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #202124;
    font-size: 14px;
    box-shadow: 0 1px 6px rgba(32,33,36,0.08);
    background: #ffffff;
    position: relative;
    text-align: left;
    box-sizing: border-box;
}

.hero-cursor {
    animation: blink 1s infinite step-end;
    color: #202124;
    margin-left: 2px;
    font-weight: bold;
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: #202124; }
}

.google-search-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.google-search-buttons button {
    background: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-family: arial,sans-serif;
    font-size: 12px;
    padding: 0 12px;
    line-height: 27px;
    height: 30px;
    transition: 0.2s;
}

.hero-fake-mouse {
    position: absolute;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M4.5 1.5v16.3l4.5-4.4 2.8 6.4 2.8-1.2-2.8-6.3 5.9.1L4.5 1.5z"/></svg>') no-repeat;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    left: 80%;
    top: 80%;
}

/* Blocked screen layout (replica of blocked.html) */
.original-blocked-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F04648;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.original-blocked-screen.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.blocked-container-mock {
    text-align: center;
    color: #ffffff;
    max-width: 320px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blocked-icon-wrapper-mock {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 12px;
    width: 60px;
    height: 60px;
}

.blocked-icon-ellipse-mock {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.animated-lock-icon {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lock-svg {
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.lock-shackle {
    transform-origin: 35px 45px;
    transform: translateY(-8px) rotate(-18deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.original-blocked-screen.active .lock-shackle {
    transform: translateY(0) rotate(0deg);
}

.original-blocked-screen.active .lock-svg {
    animation: lock-shake 0.4s ease-in-out 0.4s;
}

@keyframes lock-shake {
    0%, 100% { transform: scale(1); }
    20%, 60% { transform: scale(1.05) translateY(2px); }
    40%, 80% { transform: scale(1.05) translateY(-2px); }
}

.blocked-title-mock {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blocked-message-mock {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 18px;
}

.blocked-buttons-mock {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.blocked-back-btn-mock {
    width: 110px;
    height: 32px;
    background-color: #ffffff;
    color: #111111;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blocked-unlock-btn-mock {
    width: 110px;
    height: 32px;
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 600;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Animations */
.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; }

@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); }
}

/* ---------------------------------------------------- */
/* Section: Pain Points (Grid) */
.section-pain {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-title::after {
    display: none;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px auto;
    font-weight: 300;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.pain-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.pain-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pain-icon-bg {
    width: 64px;
    height: 64px;
    background: #F86466;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(248, 100, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.pain-card:hover .pain-icon-bg {
    transform: translateY(-5px) rotate(5deg);
}

.pain-icon-bg svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

.pain-icon-bg.premium-icon svg {
    fill: none;
    stroke: #FFFFFF;
}

.pain-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---------------------------------------------------- */
/* Section: Feature Showcase (Z-pattern) */
.section-features {
    padding: 80px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 120px auto;
    padding: 0 40px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex !important;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-list li.interactive-list-item {
    cursor: pointer;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-list li.feature-list-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-list-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list-icon svg {
    width: 24px;
    height: 24px;
}

.feature-list-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-list-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.2px;
}

.feature-list-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.feature-visual-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Blocklist Mockup (Original 1 in 1 Style) */
.main-card-blocklist {
    width: 440px;
    height: 340px;
    background: #C54D4E;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.header-section-blocklist {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.page-title-blocklist {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #FFFFFF;
    margin-right: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.counter-badge-blocklist {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #FFFFFF;
}

.input-section-blocklist {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.url-input-blocklist {
    flex: 1;
    height: 48px;
    background: #FFFFFF;
    border: none;
    border-radius: 24px;
    padding: 0 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #333333;
    outline: none;
}

.url-input-blocklist::placeholder {
    color: #A9A9A9;
}

.add-btn-blocklist {
    width: 90px;
    height: 48px;
    background: #FFFFFF;
    border: none;
    border-radius: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #555555 !important;
    cursor: pointer;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sites-container-blocklist {
    flex: 1;
    overflow: hidden;
}

.sites-list-blocklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    overflow-y: auto;
}

.site-item-blocklist {
    width: 100%;
    height: 48px;
    background: #F86466;
    border: 1px solid #F14C4E;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 0 12px 0 18px;
    position: relative;
    transition: all 0.3s ease;
}

.site-icon-blocklist {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 10px;
}

.site-icon-blocklist svg {
    width: 100%;
    height: 100%;
}

.site-name-blocklist {
    flex: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.toggle-switch-blocklist {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch-blocklist input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-blocklist {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(61, 16, 16, 0.3);
    transition: .4s;
    border-radius: 24px;
}

.slider-blocklist:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: #A33A3C;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch-blocklist input:checked + .slider-blocklist {
    background-color: #FFFFFF;
}

.toggle-switch-blocklist input:checked + .slider-blocklist:before {
    transform: translateX(20px);
    background-color: #F86466;
}

.delete-btn-blocklist {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.delete-btn-blocklist svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.delete-btn-blocklist:hover svg {
    opacity: 1;
}

/* Password Levels Mockup (Original 1 in 1 Style) */
.discipline-panel-mock {
    width: 440px;
    background: #C54D4E;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cards-scroll-area-mock {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.level-card-mock {
    width: 100%;
    background-color: transparent;
    border-radius: 16px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.level-card-mock.active {
    border-color: #FFFFFF;
    transform: scale(1.02);
}

.card-main-content-mock {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 14px;
}

.level-header-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.level-icon-mock {
    display: flex;
    flex-shrink: 0;
}
.level-icon-mock img {
    width: 42px;
    height: 42px;
}

.level-text-group-mock {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.level-title-mock {
    font-weight: 900;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
}

.level-specs-mock {
    font-weight: 500;
    font-size: 11px;
    color: #FFFFFF;
}

.custom-radio-mock {
    width: 18px;
    height: 18px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.radio-dot-mock {
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.level-card-mock.active .radio-dot-mock {
    opacity: 1;
    transform: scale(1);
}

.level-footer-row-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 6px;
}

.level-quote-mock {
    font-size: 9px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    text-align: left;
}

.more-btn-mock {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}

.discipline-footer-mock {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 5px;
}

.btn-mock {
    flex: 1;
    height: 40px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mock.btn-remove-mock {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: not-allowed;
}

.btn-mock.btn-set-mock {
    background: #FFFFFF;
    color: #C54D4E;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.analytics-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analytics-tab-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.analytics-tab-btn.active {
    background: #FFFFFF !important;
    color: #E85D5F !important;
}

/* Focus Audit Mockup (True Service Match) */
.analytics-tabs-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.analytics-scale-wrapper {
    width: 686px;
    transform: scale(0.64);
    transform-origin: top center;
    height: 395px; /* scaled height roughly 370px + some breathing room */
}

.daily-pulse-main {
    width: 686px;
    background: #C54D4E;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.analytics-pane-exact {
    display: none;
}
.analytics-pane-exact.active {
    display: block;
}

.focus-audit-main.main-card {
    width: 686px;
    height: auto;
    background-color: #C54D4E;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.focus-audit-main .filter-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.focus-audit-main .filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.focus-audit-main .filter-btn.active {
    background: #FFFFFF;
    color: #F86466;
    border-color: #FFFFFF;
}

.focus-audit-main .card {
    background-color: #F86466;
    border-radius: 20px;
    padding: 30px;
    color: #FFFFFF;
}

.focus-audit-main .top-row {
    display: flex;
    gap: 10px;
}

.focus-audit-main .top-distractions {
    width: 288px;
    height: 195px;
    padding: 30px 40px 30px 30px;
    display: flex;
    flex-direction: column;
}

.focus-audit-main .lost-productivity {
    width: 203px;
    height: 197px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.focus-audit-main .extra-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 89px;
    height: 197px;
}

.focus-audit-main .small-stat-card {
    flex: 1;
    min-height: 0;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.focus-audit-main .small-card-title {
    font-weight: 900;
    font-size: 10px;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.focus-audit-main .bypass-value {
    font-weight: 900;
    font-size: 48px;
    color: #FFFFFF;
    margin-top: 5px;
    line-height: 1;
}

.focus-audit-main .card-title {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.focus-audit-main .distractions-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.focus-audit-main .distraction-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.focus-audit-main .icon-box {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.focus-audit-main .icon-box img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.focus-audit-main .social-name {
    font-weight: 600;
    font-size: 15px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.focus-audit-main .productivity-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
}

.focus-audit-main .productivity-content .value {
    font-weight: 900;
    font-size: 55px;
    line-height: 1;
}

.focus-audit-main .productivity-content .unit {
    font-weight: 700;
    font-size: 25px;
    margin-top: 6px;
}

.focus-audit-main .screen-time-audit {
    width: 100%;
    min-height: 300px;
    padding: 30px;
}

.focus-audit-main .audit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.focus-audit-main .header-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.focus-audit-main .audit-actions {
    display: flex;
    gap: 8px;
}

.focus-audit-main .action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 3px 10px;
    border-radius: 9px;
    font-size: 8px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.focus-audit-main .action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.focus-audit-main .audit-title {
    font-weight: 700;
    font-size: 25px;
}

.focus-audit-main .audit-body {
    display: flex;
    gap: 129px;
}

.focus-audit-main .sites-summary {
    display: flex;
    flex-direction: column;
    gap: 9px;
    height: 160px;
    overflow-y: auto;
    padding-right: 15px;
}

.focus-audit-main .sites-summary::-webkit-scrollbar {
    width: 35px;
}
.focus-audit-main .sites-summary::-webkit-scrollbar-track {
    background: rgba(61, 16, 16, 0.4);
    border-radius: 20px;
}
.focus-audit-main .sites-summary::-webkit-scrollbar-thumb {
    background: #FF7E80;
    border-radius: 20px;
}

.focus-audit-main .summary-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.focus-audit-main .site-info {
    font-weight: 600;
    font-size: 15px;
}

.focus-audit-main .search-and-list {
    width: 264px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.focus-audit-main .search-box {
    width: 264px;
    height: 37px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

.focus-audit-main .search-icon img {
    width: 16px;
    height: 16px;
}

.focus-audit-main .search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-weight: 900;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.focus-audit-main .websites-list-container {
    height: 160px;
    overflow-y: auto;
    padding-right: 15px;
    margin-top: 10px;
}
.focus-audit-main .websites-list-container::-webkit-scrollbar {
    width: 35px;
}
.focus-audit-main .websites-list-container::-webkit-scrollbar-track {
    background: rgba(61, 16, 16, 0.4);
    border-radius: 20px;
}
.focus-audit-main .websites-list-container::-webkit-scrollbar-thumb {
    background: #FF7E80;
    border-radius: 20px;
}

.focus-audit-main .websites-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.focus-audit-main .list-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.focus-audit-main .list-item input[type="radio"] {
    appearance: none;
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.focus-audit-main .list-item input[type="radio"]:checked {
    background-color: #1877F2;
    border-color: #1877F2;
}

.focus-audit-main .list-item input[type="radio"]:checked::after {
    content: '✔';
    color: white;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background-color: transparent;
}

.focus-audit-main .list-item label {
    font-weight: 600;
    font-size: 8px;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
}

.focus-audit-main .bypass-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background-color: #9F2B2C;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Feature Voting Mockup */
.voting-panel-mock {
    width: 440px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.voting-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease;
}

.voting-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.vote-count {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    min-width: 75px;
    justify-content: center;
}

.vote-arrow {
    color: #76D18B;
    font-size: 12px;
}

.vote-title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

/* Ecosystem Mockup */
.ecosystem-mock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 440px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.eco-site, .eco-ext {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.eco-site:hover, .eco-ext:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.eco-site svg, .eco-ext svg {
    fill: #FFFFFF;
}

.eco-site span, .eco-ext span {
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
}

@keyframes sync-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

.eco-sync {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sync-pulse 2s infinite;
}

.ecosystem-trigger-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #76D18B;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.ecosystem-trigger-link:hover {
    color: #FFFFFF;
}

/* Privacy Section styling */
.section-privacy {
    padding: 60px 20px;
}

.privacy-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Privacy Block: style in service design */
.privacy-icon {
    width: 80px;
    height: 80px;
    background: #F86466;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(248, 100, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.privacy-icon:hover {
    transform: translateY(-5px) rotate(5deg);
}

.privacy-icon svg {
    width: 42px;
    height: 42px;
    fill: #FFFFFF;
}

.privacy-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}

.privacy-container p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

/* ---------------------------------------------------- */
/* CTA Section */
.cta-section {
    padding: 100px 0 140px;
    text-align: center;
}

.cta-card {
    background: #C54D4E;
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.cta-microcopy {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    font-weight: 400;
}

.cta-secondary-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.cta-secondary-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.cta-btn-override {
    background: #FFFFFF !important;
    color: #333333 !important;
    font-size: 18px;
    font-weight: 900;
    padding: 18px 45px;
    border-radius: 16px;
    text-decoration: none !important;
    display: inline-block;
    width: auto !important;
    min-width: 300px !important;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !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.25) !important;
}

@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.2);
    }
    50% {
        transform: scale(1.035);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

/* ---------------------------------------------------- */
/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 40px;
    }
    .hero-promo h1 {
        font-size: 76px;
    }
    html[lang="ru"] .hero-promo h1 {
        font-size: 48px;
    }
    .hero-promo p {
        font-size: 18px;
    }
    .pain-grid {
        gap: 20px;
    }
}

@media (max-width: 1025px) {
    .mobile-break {
        display: block;
    }
    .hero-promo .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .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-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-bullets-compact {
        order: 4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: fit-content;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 12px;
        margin-bottom: 25px !important;
        margin-top: 25px !important;
    }
    .hero-promo .hero-buttons {
        order: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .browser-blocked-mockup {
        transform: scale(0.9);
        transform-origin: center center;
    }
    .pain-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .pain-card {
        text-align: center;
    }
    .pain-icon-bg {
        margin-left: auto;
        margin-right: auto;
    }
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .feature-text {
        max-width: 100%;
    }
    .feature-list {
        align-items: stretch;
    }
    .feature-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-list-icon {
        margin-top: 0;
    }
    .main-card-blocklist, .discipline-panel-mock, .voting-panel-mock, .ecosystem-mock {
        transform: scale(0.95);
        transform-origin: center center;
    }
    .analytics-scale-wrapper {
        transform: scale(0.608);
        transform-origin: top center;
    }
}

@media (max-width: 768px) {
    .hero-promo h1 br {
        display: none;
    }
    .hero-promo h1 {
        font-size: 56px;
        line-height: 1.3;
    }
    .btn-promo-primary {
        width: 100% !important;
        max-width: 320px !important;
        height: 60px !important;
        font-size: 16px !important;
        border-radius: 16px !important;
    }
    .btn-promo-secondary {
        width: 100% !important;
        max-width: 320px !important;
        height: 52px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }
    .section-title {
        font-size: 32px;
    }
    .feature-text h2 {
        font-size: 28px;
    }
    .browser-blocked-mockup {
        transform: scale(0.8) !important;
        transform-origin: center top !important;
        margin-bottom: -60px !important;
    }
    .cta-section {
        padding: 60px 20px 80px;
    }
    .cta-card {
        padding: 40px 20px;
    }
    .cta-card h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-promo h1 {
        font-size: 46px;
    }
    .hero-promo p {
        font-size: 16px;
    }
    .btn-promo-primary {
        max-width: 280px !important;
        height: 54px !important;
        font-size: 15px !important;
        border-radius: 12px !important;
    }
    .btn-promo-secondary {
        max-width: 280px !important;
        height: 48px !important;
        font-size: 13px !important;
    }
    .browser-blocked-mockup {
        transform: scale(0.68) !important;
        margin-bottom: -110px !important;
    }
    .main-card-blocklist, .discipline-panel-mock, .voting-panel-mock, .ecosystem-mock {
        transform: scale(0.72) !important;
        transform-origin: center center !important;
        margin: -40px 0 !important;
    }
    .analytics-scale-wrapper {
        transform: scale(0.4608) !important;
        transform-origin: top center !important;
        margin: 0 0 -210px 0 !important;
    }
    .section-title {
        font-size: 26px;
    }
    .cta-section {
        padding: 40px 16px 60px;
    }
    .cta-card h2 {
        font-size: 22px;
    }
    .cta-card p {
        font-size: 15px;
    }
}

@media (max-width: 461px) {
    .privacy-container {
        padding: 30px 20px;
        gap: 15px;
    }
    .privacy-container h2 {
        font-size: 24px;
    }
    .privacy-container p {
        font-size: 14px;
    }
    .privacy-icon {
        width: 60px;
        height: 60px;
    }
    .privacy-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    .cta-btn-override {
        min-width: 100% !important;
        font-size: 16px !important;
        padding: 15px 20px !important;
        white-space: normal;
    }
    .cta-microcopy {
        font-size: 11px !important;
    }
}

@media (max-width: 360px) {
    .hero-promo h1 {
        font-size: 38px;
    }
    .browser-blocked-mockup {
        transform: scale(0.58) !important;
        margin-bottom: -140px !important;
    }
    .main-card-blocklist, .discipline-panel-mock, .voting-panel-mock, .ecosystem-mock {
        transform: scale(0.62) !important;
        margin: -60px 0 !important;
    }
    .analytics-scale-wrapper {
        transform: scale(0.3968) !important;
        transform-origin: top center !important;
        margin: 0 0 -235px 0 !important;
    }
}


/* --- Migrated Content Styles --- */

/* Page Headers */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.category-tag-link {
    text-decoration: none;
}

.category-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(248, 100, 102, 0.1);
    color: #F86466;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-title {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.page-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 750px;
    margin: 0 auto;
}

/* Page Body */
.page-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.section-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    display: none;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.75));
    font-size: 16px;
    line-height: 1.8;
}

strong {
    color: #fff;
}

.highlight {
    color: var(--btn-secondary-bg, #F86466);
}

.section-card a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.section-card a:hover {
    color: var(--btn-secondary-bg, #F86466);
    text-decoration-color: var(--btn-secondary-bg, #F86466);
}

/* FAQ Accordion Styling */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 205, 48, 0.2);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    user-select: none;
}

.faq-question::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 205, 48, 0.1);
    color: var(--btn-secondary-bg, #F86466);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 5px;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-secondary, rgba(255, 255, 255, 0.75));
    border-bottom: 2px solid var(--text-secondary, rgba(255, 255, 255, 0.75));
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.faq-item:hover .faq-question::after {
    border-color: var(--text-primary, #FFFFFF);
}

.faq-item.active .faq-question::after {
    transform: rotate(-135deg);
    border-color: var(--btn-secondary-bg, #F86466);
}

.faq-answer {
    color: var(--text-secondary, rgba(255, 255, 255, 0.75));
    font-size: 15px;
    line-height: 1.6;
    padding-left: 36px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 15px;
}

/* FOUNDER CARD STYLES */
.founder-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 35px;
}

.founder-photo-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--btn-secondary-bg, #F86466);
    box-shadow: 0 0 20px rgba(248, 100, 102, 0.3);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-photo-placeholder {
    width: 50px;
    height: 50px;
    color: var(--btn-secondary-bg, #F86466);
}

.founder-speech {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    padding: 30px;
    border-radius: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-speech::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    border-radius: inherit;
    pointer-events: none;
    -webkit-mask-image: 
        linear-gradient(to bottom, black 53px, transparent 53px, transparent 73px, black 73px),
        linear-gradient(to right, transparent 2px, black 2px);
    -webkit-mask-size: 2px 100%, 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: 
        linear-gradient(to bottom, black 53px, transparent 53px, transparent 73px, black 73px),
        linear-gradient(to right, transparent 2px, black 2px);
    mask-size: 2px 100%, 100% 100%;
    mask-repeat: no-repeat;
}

/* Speech bubble arrow pointing to the left on desktop */
.founder-speech::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 55px; /* Aligns with center of photo */
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.01); /* matches body background or fallback to cover border gap */
    border-left: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    border-bottom: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    transform: rotate(45deg);
}

.founder-text {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 0;
}

.quote-mark {
    font-size: 24px;
    color: var(--btn-secondary-bg, #F86466);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: middle;
    margin: 0 5px;
    font-weight: 900;
}

.founder-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    padding-top: 15px;
}

.founder-name {
    font-weight: 900;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-role {
    font-size: 12px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.75));
}

/* 3 Quick Features Grid */
.founder-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: rgba(255, 205, 48, 0.2);
    transform: translateY(-2px);
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 205, 48, 0.1);
    color: var(--btn-secondary-bg, #F86466);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 22px;
    height: 22px;
}

.badge-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-text p {
    font-size: 12px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.75));
    margin-bottom: 0;
    line-height: 1.4;
}

/* Split Layout for Contact / Form Section */
.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 20px;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 18px;
    color: #121221;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(18, 18, 33, 0.5);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #F86466;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--btn-secondary-bg, #F86466);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(255, 205, 48, 0.1);
}

.btn-primary {
    background-color: var(--btn-primary-bg, #FFFFFF);
    color: var(--btn-primary-color, #F86466);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    padding: 16px 36px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    animation: premium-pulse-hero 3s infinite ease-in-out;
}

.btn-primary:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: #FFF3F3;
}

.btn-primary::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 4s infinite ease-in-out;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Custom Select Styling */
.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 18px;
    color: #121221;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--btn-secondary-bg, #F86466);
}

.custom-select-trigger svg {
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 6px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    display: block;
    padding: 12px 15px;
    color: #121221;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
}

.custom-option:hover {
    background: #C54D4E;
    color: #FFFFFF;
}

.custom-select-trigger.selected {
    color: #121221;
}

/* Contact Info Panel */
.contact-info-panel {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block h4 {
    font-size: 12px;
    color: var(--btn-secondary-bg, #F86466);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    color: var(--text-secondary, rgba(255, 255, 255, 0.75));
    transition: all 0.3s ease;
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
}

.contact-social-link:hover {
    color: var(--btn-secondary-bg, #F86466);
    border-color: var(--btn-secondary-bg, #F86466);
    transform: translateY(-3px);
    background: rgba(255, 205, 48, 0.05);
    box-shadow: 0 0 15px rgba(248, 100, 102, 0.3);
}

/* Success / Error Inline States */
.form-success-state,
.form-error-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.form-success-state.show,
.form-error-state.show {
    display: flex;
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.status-icon.success {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.status-icon.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.btn-secondary-link {
    color: var(--btn-secondary-bg, #F86466);
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 15px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 15px;
}


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