/* 123B Theme Styles */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrap {
    min-height: calc(100vh - 200px);
}

/* Header */
.topbar-wrap {
    background: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-trigger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav-list li a:hover {
    color: #f0c040;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f0c040;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-login:hover {
    background: #fff;
    color: #1a1a2e;
}

.btn-register {
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #ff9500 0%, #f0c040 100%);
    transform: translateY(-2px);
}

/* Mobile Navigation */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #1a1a2e;
    padding: 80px 20px 30px;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1001;
}

.mobile-overlay.visible .mobile-nav {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list li a {
    display: block;
    color: #fff;
    padding: 15px 0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: #f0c040;
}

.mobile-user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.mobile-user-actions .btn-login,
.mobile-user-actions .btn-register {
    text-align: center;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-image {
    margin: 30px auto;
    max-width: 800px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.intro-image {
    margin: 30px auto;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.section-image {
    margin: 30px auto;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-image {
    margin: 30px auto;
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-image {
    margin: 30px auto;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 192, 64, 0.4);
    color: #1a1a2e;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.page-hero .hero-desc {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a2e;
}

section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* Brand Intro */
.brand-intro {
    background: #fff;
}

.brand-intro h2 {
    color: #1a1a2e;
}

.brand-intro p {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: justify;
}

/* Advantages Section */
.advantages-section {
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advantage-card h3 {
    color: #f0c040;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 15px;
}

/* Features Section */
.features-section {
    background: #fff;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    padding: 25px;
    border-left: 4px solid #f0c040;
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Cards Section */
.cards-section {
    background: #f8f9fa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 192, 64, 0.4);
    color: #1a1a2e;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Timeline Steps */
.steps-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 40px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #f0c040 0%, #ff9500 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #f0c040;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Steps List */
.steps-list {
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Steps Visual */
.steps-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-box p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.method-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 20px;
}

.method-card p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Download Section */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.download-card.ios {
    border-top: 5px solid #007aff;
}

.download-card.android {
    border-top: 5px solid #3ddc84;
}

.download-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.download-card p {
    font-size: 15px;
    margin-bottom: 25px;
}

.download-steps {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.download-steps li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.download-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f0c040;
    font-weight: 700;
}

.btn-download {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 192, 64, 0.4);
    color: #1a1a2e;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    margin-top: 40px;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: #f8f9fa;
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
}

.benefits-list {
    margin-top: 40px;
}

.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
    color: #f0c040;
    margin-bottom: 12px;
    font-size: 20px;
}

.benefit-item p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Requirements Section */
.requirements-section {
    background: #fff;
}

.requirements-list {
    list-style: none;
    margin-top: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.requirements-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    position: relative;
    padding-left: 35px;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f0c040;
    font-weight: 700;
    font-size: 18px;
}

/* Tips Section */
.tips-section {
    background: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tip-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 18px;
}

.tip-card p {
    font-size: 15px;
    margin-bottom: 0;
}

.tips-list {
    margin-top: 40px;
}

.tip-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tip-item h3 {
    color: #f0c040;
    margin-bottom: 10px;
    font-size: 19px;
}

.tip-item p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Security Section */
.security-section {
    background: #fff;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.security-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #f0c040;
}

.security-box h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 20px;
}

.security-box p {
    font-size: 15px;
    margin-bottom: 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.security-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.security-item h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 19px;
}

.security-item p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Conditions Section */
.conditions-section {
    background: #f8f9fa;
}

.conditions-list {
    list-style: none;
    margin-top: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.conditions-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    position: relative;
    padding-left: 35px;
}

.conditions-list li:last-child {
    border-bottom: none;
}

.conditions-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #f0c040;
    font-weight: 700;
    font-size: 24px;
}

/* Promo Section */
.promo-intro {
    background: #fff;
}

.main-promo {
    background: #f8f9fa;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.promo-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.promo-card.featured {
    border: 3px solid #f0c040;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #f0c040;
    color: #1a1a2e;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.promo-badge.pink {
    background: #ff6b9d;
}

.promo-badge.blue {
    background: #007aff;
}

.promo-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.promo-card p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.promo-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.btn-promo {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 192, 64, 0.4);
    color: #1a1a2e;
}

/* Promo List */
.ongoing-promos {
    background: #fff;
}

.promo-list {
    margin-top: 40px;
}

.promo-item {
    display: flex;
    gap: 25px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.promo-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.promo-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.promo-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.promo-content p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Terms Section */
.terms-section {
    background: #f8f9fa;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.term-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.term-box h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 19px;
}

.term-box p {
    font-size: 15px;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: #1a1a2e;
    cursor: pointer;
}

.faq-item p {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 0;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    color: #fff;
    padding: 100px 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #f0c040 0%, #ff9500 100%);
    color: #1a1a2e;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 192, 64, 0.4);
    color: #1a1a2e;
}

.cta-note {
    margin-top: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-note a {
    color: #f0c040;
    font-weight: 600;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Forgot Password */
.forgot-password {
    background: #fff;
}

.recovery-steps {
    list-style: none;
    margin-top: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.recovery-steps li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    position: relative;
    padding-left: 35px;
}

.recovery-steps li:last-child {
    border-bottom: none;
}

.recovery-steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #f0c040;
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Footer */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand h3 {
    color: #f0c040;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
    color: #f0c040;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-seo-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-trigger {
        display: flex;
    }

    .primary-nav {
        display: none;
    }

    .mobile-overlay {
        display: block;
    }

    .user-actions {
        display: none;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-hero {
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 26px;
    }

    section h3 {
        font-size: 20px;
    }

    .advantages-grid,
    .features-list,
    .cards-grid,
    .steps-grid,
    .methods-grid,
    .features-grid,
    .tips-grid,
    .security-grid,
    .promo-cards {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .btn-cta {
        padding: 15px 35px;
        font-size: 16px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

    .promo-item {
        flex-direction: column;
        gap: 15px;
    }

    .promo-icon {
        font-size: 30px;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }
}

/* Body menu open state */
body.menu-open {
    overflow: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f0c040;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5a800;
}
