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

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

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

/* Header Navigation */
.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

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

.btn-login {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

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

.btn-primary {
    background: #ffd700;
    border: none;
    color: #1a1a1a;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.accent-line {
    width: 4px;
    height: 80px;
    background: #ffd700;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-image {
    flex: 0.6;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Funding Section */
.funding {
    padding: 80px 0;
    background: #fff;
}

.funding-section {
    padding: 80px 0;
    background: #fff;
}

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

.funding-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.btn-secondary {
    background: #ffd700;
    border: none;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.features {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    flex-direction: row;
}

.feature {
    flex: 1;
}

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

.feature p {
    color: #666;
    font-size: 14px;
}

/* Investment Opportunities Carousel */
.investments {
    padding: 80px 0;
    background: #f8f8f8;
}

.investments h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

.investment-card {
    min-width: calc(33.333% - 14px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.investment-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

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

.property-type {
    font-size: 14px;
    font-weight: 600;
}

.badge {
    background: #ffd700;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.investment-details {
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-row .label {
    color: #666;
    font-size: 14px;
}

.detail-row .value {
    font-weight: 600;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #666);
    border-radius: 4px;
    transition: width 0.5s ease-in-out;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.logos {
    display: flex;
    gap: 5px;
}

.logos img {
    width: 20px;
    height: 20px;
}

.btn-invest {
    width: 100%;
    background: #ffd700;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-invest:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.carousel-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #ffd700;
    border-color: #ffd700;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #ffd700;
}

/* Support & Calculator Section */
.support-calculator {
    padding: 80px 0;
    background: #fff;
}

.support-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.support-text {
    flex: 1;
}

.support-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.support-text p {
    color: #666;
    margin-bottom: 30px;
}

.calculator {
    flex: 1;
    background: #ffd700;
    padding: 40px;
    border-radius: 15px;
}

.calculator h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.calculator-field {
    margin-bottom: 25px;
}

.calculator-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.slider-container {
    position: relative;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    outline: none;
    cursor: not-allowed;
}

.slider-value {
    position: absolute;
    right: 0;
    top: -25px;
    font-weight: 600;
}

.calculator-results {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.result-row strong {
    font-weight: 700;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

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

.impact-subtitle {
    color: #666;
    margin-bottom: 60px;
}

.impact-stats {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    max-width: 1200px;
    display: inline-block;
    padding: 80px 0;
    min-width: 200px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon img {
    width: 50px;
    height: 50px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

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

.section-header .accent-line {
    width: 4px;
    height: 60px;
    background: #ffd700;
    margin: 0 auto 20px;
}

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

.section-header p {
    color: #ccc;
}

.why-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.why-card {
    flex: 1;
    background: #fff;
    color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon img {
    width: 50px;
    height: 50px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    color: #666;
    font-size: 14px;
}

.why-choose .btn-primary {
    display: block;
    margin: 0 auto;
}

/* Customer Feedbacks Section */
.feedbacks {
    padding: 80px 0;
    background: #fff;
}

.feedbacks h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.feedback-cards {
    display: flex;
    gap: 40px;
}

.feedback-card {
    flex: 1;
    display: flex;
    gap: 20px;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    transition: box-shadow 0.3s;
}

.feedback-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feedback-avatar {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.feedback-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feedback-role {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.feedback-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feedback-stars {
    color: #ffd700;
    font-size: 18px;
}

/* CTA Footer */
.cta-footer {
    padding: 80px 0;
    background: #ffd700;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    color: #333;
}

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

.btn-dark {
    background: #1a1a1a;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #ffd700;
}

.section-header {
  position: relative;
  padding-left: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%; /* автоматическая высота по контенту */
  width: 3px;
  background: #ffffff;
}


.hero-text {
  position: relative;
  padding-left: 20px;
}

.hero-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%; /* автоматическая высота по контенту */
  width: 3px;
  background: #ffffff;
}

h2, p {
  margin: 0;
  padding: 2px 0; /* контроль отступов между строками */
}

.card-footer {
    content: "🏢";
    filter: grayscale(100%);
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero-content,
    .support-content,
    .cta-content {
        flex-direction: column;
    }

    .funding-features,
    .why-cards,
    .feedback-cards {
        flex-direction: column;
    }

    .investment-card {
        min-width: 100%;
    }

    .impact-stats {
        flex-direction: column;
        gap: 40px;
    }
}
