* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a2332;
    --secondary-charcoal: #2c3e50;
    --accent-gold: #d4af37;
    --light-gold: #f4e5c3;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --bg-light: #f8f9fa;
    --border-color: #3d5266;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ffffff;
    overflow-x: hidden;
}

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

.main-navigation {
    background: var(--primary-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo-link {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

.hero-section {
    position: relative;
    height: 85vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/1.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-gold);
    margin-bottom: 40px;
    font-weight: 300;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.badge-item i {
    color: var(--accent-gold);
    font-size: 22px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: #e5c049;
}

.stats-section {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.stat-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary-charcoal);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-navy);
    font-weight: 700;
}

.problems-section {
    padding: 100px 0;
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.problem-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.problem-icon i {
    font-size: 35px;
    color: white;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.problem-card p {
    color: var(--secondary-charcoal);
    line-height: 1.7;
}

.timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-charcoal) 100%);
    color: var(--text-light);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gold);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.timeline-content p {
    line-height: 1.8;
}

.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.process-step {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.process-step p {
    color: var(--secondary-charcoal);
    line-height: 1.7;
}

.results-section {
    padding: 100px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.result-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
}

.result-header {
    position: relative;
}

.result-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.result-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.result-date,
.result-tag {
    background: rgba(26, 35, 50, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.result-tag {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.result-card h3 {
    padding: 25px 25px 10px;
    font-size: 24px;
    color: var(--primary-navy);
}

.result-card p {
    padding: 0 25px 20px;
    color: var(--secondary-charcoal);
    line-height: 1.7;
}

.result-amount {
    padding: 20px 25px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.whatsapp-style {
    border-left: 4px solid var(--accent-gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--primary-navy);
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-location {
    color: #7f8c8d;
    font-size: 14px;
}

.testimonial-rating {
    margin-left: auto;
    color: var(--accent-gold);
}

.testimonial-text {
    color: var(--secondary-charcoal);
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-date {
    color: #95a5a6;
    font-size: 13px;
}

.trust-section {
    padding: 100px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.trust-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.trust-card i {
    font-size: 50px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.trust-card p {
    color: var(--secondary-charcoal);
    line-height: 1.7;
}

.broker-check-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-charcoal) 100%);
    color: var(--text-light);
}

.broker-check-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.broker-check-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.broker-check-info p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.check-features {
    list-style: none;
}

.check-features li {
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-features i {
    color: var(--accent-gold);
    font-size: 18px;
}

.broker-check-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.broker-check-form h3 {
    color: var(--primary-navy);
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
}

.broker-check-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.broker-check-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e5c049;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--secondary-charcoal);
    line-height: 1.8;
}

.subscription-section {
    padding: 80px 0;
    background: white;
}

.subscription-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--primary-navy);
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-light);
}

.subscription-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.subscription-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-gold);
}

.subscription-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.subscription-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.subscription-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.subscription-form button {
    padding: 15px 35px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscription-form button:hover {
    background: #e5c049;
    transform: translateY(-2px);
}

.subscriber-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-gold);
}

.subscriber-count i {
    color: var(--accent-gold);
    font-size: 20px;
}

.admin-preview-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.admin-frame-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.admin-screenshot {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.admin-features h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-navy);
}

.admin-features ul {
    list-style: none;
}

.admin-features li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--secondary-charcoal);
}

.admin-features i {
    color: var(--accent-gold);
    font-size: 22px;
}

.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--secondary-charcoal);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
    color: var(--secondary-charcoal);
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form textarea {
    resize: vertical;
}

.sticky-messengers {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.messenger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.messenger-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp {
    background: #25D366;
}

.telegram {
    background: #0088cc;
}

.main-footer {
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-logo {
    width: 120px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--light-gold);
}

.footer-reg {
    font-size: 14px;
    color: var(--accent-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-column li i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--light-gold);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h4 {
    color: var(--primary-navy);
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-text p {
    color: var(--secondary-charcoal);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.accept-all {
    background: var(--accent-gold);
    color: white;
}

.accept-all:hover {
    background: #e5c049;
}

.customize {
    background: var(--secondary-charcoal);
    color: white;
}

.customize:hover {
    background: var(--primary-navy);
}

.decline {
    background: #e0e0e0;
    color: var(--secondary-charcoal);
}

.decline:hover {
    background: #d0d0d0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 50px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: var(--primary-navy);
}

.modal-icon {
    font-size: 70px;
    color: #28a745;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 18px;
    color: var(--secondary-charcoal);
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-navy);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .broker-check-content,
    .contact-wrapper,
    .admin-frame-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }

    .subscription-form {
        flex-direction: column;
    }

    .stats-grid,
    .problems-grid,
    .process-roadmap,
    .results-grid,
    .testimonials-slider,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .sticky-messengers {
        right: 20px;
        bottom: 20px;
    }

    .messenger-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}