:root {
  --primary:   #D4AF37;
  --secondary: #F5E6A1;

  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));

  --dark:  #1c1c1c;
  --light: #faf9f6;
  --white: #ffffff;
  --gray:  #7a7a7a;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(212,175,55,0.25);
}


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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}


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


.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212,175,55,0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.36);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid #eee;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    font-size: 0.85rem;
    padding: 6px 15px;
    background: var(--light);
    border-radius: 15px;
    color: var(--primary);
    font-weight: 600;
}

.full-width {
    width: 100%;
    text-align: center;
}


.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary);
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
}

.header-right {
    display: flex;
    align-items: center;
}

.mobile-menu {
    display: none;
    background: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}


.hero {
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.18);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}




.phone-mockup {
    width: 320px;
    margin: 0 auto;

    transform: rotate(-5deg) translateY(20px);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) translateY(10px);
}

.phone-border {
    background-color: #2c3e50;
    border-radius: 35px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    background-color: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    height: 520px;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Inter', sans-serif;
}


.mockup-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    background: transparent;
}

.mockup-header-new i {
    font-size: 1rem;
    color: #2c3e50;
    cursor: pointer;
}


.mockup-body-new {
    padding: 10px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}


.mockup-card {
    background-color: #f8f9fb;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 10px;
}

.mockup-label {
    display: block;
    font-size: 0.85rem;
    color: #9aa0a6;
    margin-bottom: 8px;
    font-weight: 500;
}

.mockup-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
}


.mockup-arrow-new {
    text-align: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin: 5px 0 15px 0;
}


.mockup-btn-new {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(91, 191, 166, 0.3);
    transition: 0.2s;
    display: flex;
    justify-content: center;
}

.mockup-btn-new:hover {
    background: linear-gradient(135deg, #9E7C19, #D4AF37);
    box-shadow: 0 5px 10px rgba(91, 191, 166, 0.3);
}



.exchange {
    background: var(--white);
    padding: 80px 0;
}

.exchange-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.exchange-steps h2 {
    margin-bottom: 30px;
}

.steps-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.steps-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 45px;
    width: 2px;
    height: 30px;
    background: #eee;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-info h4 {
    margin-bottom: 5px;
}

.step-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.exchange-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.exchange-card h3 {
    margin-bottom: 20px;
}

.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.toggle-label {
    font-weight: 600;
}

.toggle-btns {
    background: var(--light);
    padding: 4px;
    border-radius: 20px;
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 6px 15px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.toggle-btn.active {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

.exchange-form {
    display: none;
}

.exchange-form.active {
    display: block;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    background: #fcfcfc;
    font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.16);
}


.read-only-field {
    padding: 12px 15px;
    background: #f0f0f0;
    border-radius: 10px;
    color: #555;
}

.divider {
    text-align: center;
    color: var(--primary);
    margin: 15px 0;
}

.rate-hint {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.info-message {
    background: #e3f2fd;
    color: #1565c0;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}


.services {
    padding: 80px 0;
    background: #fbfaf6;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.18);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}


.reviews {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
}

.stars {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.user-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
}

.reviews-footer {
    text-align: center;
}


.license {
    padding: 60px 0;
    background: var(--white);
}

.license-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.license-card {
    background: #fafafa;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    min-width: 250px;
}

.license-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.license-card.clickable:hover {
    border-color: var(--primary);
    cursor: pointer;
}

.small-link {
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 10px;
    display: block;
}


.contacts {
    padding: 80px 0;
    background: #f7f5ef;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}


.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.about-stats {
    justify-content: center;
    margin-top: 40px;
}


.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 70px 0 30px;
    font-size: 0.95rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-desc {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.disclaimer {
    font-size: 0.75rem;
    color: #7f8c8d;
    max-width: 800px;
    line-height: 1.4;
}


@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .social-links {
        justify-content: center;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone-mockup {
        margin: 0 auto;
    }

    .exchange-layout {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .reviews-grid,
    .contacts-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .burger {
        display: block;
    }
}

.policy-section {
    padding: 60px 0;
    background-color: #f4f6f8;
    min-height: 80vh;
}

.policy-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.policy-wrapper h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--primary);
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: 30px 20px;
    }

    .policy-wrapper h1 {
        font-size: 1.8rem;
    }
}

.custom-input {
    color: #000000;
    font-weight: 700;
    opacity: 1;
}

.custom-input::placeholder {
    color: #000000;
    font-weight: 700;
    opacity: 1;
}

.input-attention {
    border-color: #ff4757 !important; 
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.2) !important; 
    transition: 0.3s ease;
}