* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #8b4513;
  --secondary: #cd853f;
  --accent: #d2691e;
  --light: #faf0e6;
  --dark: #654321;
  --success: #228b22;
  --land: #a0522d;
}

body {
  background: linear-gradient(135deg, #faf0e6 0%, #f5deb3 100%);
  color: var(--dark);
  line-height: 1.6;
}

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

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

.logo {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  position: relative;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  line-height: 1.8;
}

.section {
  background: white;
  margin: 2.5rem 0;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 0 18px 18px 0;
}

.section:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

h2 {
  color: var(--primary);
  border-right: 6px solid var(--secondary);
  padding-right: 20px;
  margin-bottom: 2rem;
  font-size: 2rem;
  position: relative;
}

h3 {
  color: var(--accent);
  margin: 2rem 0 1.2rem 0;
  font-size: 1.5rem;
  position: relative;
  padding-right: 15px;
}

h3::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.advantage-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--land);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 0.05) 0%,
    rgba(205, 133, 63, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--land);
}

.advantage-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
}

.advantage-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--land);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.8;
}

.comparison-section {
  background: linear-gradient(135deg, #faf0e6 0%, #f5deb3 100%);
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
  border-right: 6px solid var(--accent);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  padding: 1.5rem;
  text-align: right;
  border-bottom: 1px solid #eaeaea;
}

th {
  background: linear-gradient(to right, var(--primary), var(--dark));
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

tr:nth-child(even) {
  background: #faf0e6;
}

tr:hover {
  background: #f5deb3;
  transition: background 0.3s ease;
}

.areas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.area-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-right: 4px solid var(--secondary);
  transition: all 0.3s ease;
  position: relative;
}

.area-card:hover {
  transform: translateX(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.area-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-potential {
  background: var(--success);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1rem;
}

.investment-calculator {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  margin: 3rem 0;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.calc-group {
  display: flex;
  flex-direction: column;
}

.calc-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.calc-group input,
.calc-group select {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.calc-result {
  background: white;
  color: var(--dark);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}

.result-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--land);
  margin: 1rem 0;
}

.development-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.option-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--success);
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.option-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--success);
}

.option-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
}

.timeline {
  position: relative;
  margin: 3rem 0;
  padding-right: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--land);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-right: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  right: -2.3rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--land);
}

.timeline-year {
  background: var(--land);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.timeline-content {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
  border-right: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.success-stories {
  background: linear-gradient(135deg, #faf0e6 0%, #f5deb3 100%);
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
}

.story-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-right: 4px solid var(--land);
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.story-return {
  background: var(--success);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #654321 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 8s infinite linear;
}

@keyframes pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: #b8860b;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

footer {
  text-align: center;
  padding: 3rem 0;
  color: var(--dark);
  opacity: 0.9;
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  position: relative;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--light);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #f5deb3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .advantages-grid,
  .areas-container,
  .development-options {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 2rem 1.5rem;
  }

  .timeline {
    padding-right: 1.5rem;
  }

  .timeline-item {
    padding-right: 2rem;
  }
}
