@import url(style-header.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/* Главный экран */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../img/7dec9622-02a4-4de3-b19f-f7bcccb99658.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-badge {
  background: rgba(0, 210, 106, 0.15);
  border: 1px solid rgba(0, 210, 106, 0.3);
  color: #00D26A;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-green {
  color: #00D26A;
}

.subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 40px;
  max-width: 700px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.check-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  background-color: #00D26A;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 210, 106, 0.3);
}

.cta-button:hover {
  background-color: #00b35a;
  transform: translateY(-2px);
}

.disclaimer {
  font-size: 0.75rem;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }
}

/* ======= */


.market-analysis {
  background-color: #F9FAF9;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.badge_green {
  display: inline-block;
  background-color: #EDFDF2;
  color: #00D26A;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.8rem;
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-green {
  color: #00D26A;
}

.section-description {
  font-size: 1.1rem;
  color: #6B7280;
  line-height: 1.6;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* --- ЛЕВАЯ КОЛОНКА С КАРТОЧКАМИ --- */
.cards-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.market-card {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-green .icon-box {
  background-color: #EDFDF2;
}

.card-orange .icon-box {
  background-color: #FFF8EB;
}

.card-blue .icon-box {
  background-color: #EEF3FF;
}

.card-purple .icon-box {
  background-color: #F5F0FF;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.card-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.card-value_small {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  margin-top: auto;
}

.card-text {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.5;
}

/* --- ПРАВАЯ КОЛОНКА С ГРАФИКОМ --- */
.infographic-column {
  display: flex;
  flex-direction: column;
}

.chart-card {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.chart-title {
  font-size: 1.1rem;
  color: #111827;
  font-weight: 600;
  margin-bottom: 6px;
}

.chart-subtitle {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-bottom: 30px;
}

.svg-chart-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 20px 0;
}

.svg-chart-container svg {
  width: 100%;
  height: 100%;
}

.svg-placeholder {
  font-size: 1.2rem;
  color: #9CA3AF;
  background-color: #F9FAF9;
  padding: 50px;
  border-radius: 10px;
}

.infographics {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: #6B7280;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #E5E7EB;
}

.legend-item {
  display: flex;
  align-items: center;
}

.dot-green {
  width: 10px;
  height: 10px;
  background-color: #00D26A;
  border-radius: 50%;
  margin-right: 8px;
}

.dot-empty {
  width: 10px;
  height: 10px;
  border: 2px solid #00D26A;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 8px;
}

.growth-label {
  margin-left: auto;
  color: #00D26A;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .market-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .market-analysis {
    padding: 30px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section-description br {
    display: none;
  }

  .cards-column {
    grid-template-columns: 1fr;
  }
}

/* ============== */

.comparison-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.text-dark {
  color: #111827;
  font-weight: 600;
}

.comparison-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
}

.table-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.grid-header {
  padding: 30px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.param-label {
  align-items: flex-start;
  color: #6B7280;
  background: #F9FAFB;
}

.competitors {
  background: #FFF5F5;
  color: #E03131;
}

.our-offer {
  background: #00D26A;
  color: #ffffff;
}

.cross-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.check-icon-white {
  width: 32px;
  height: 32px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.check-icon-white svg {
  width: 18px;
  color: #ffffff;
}

.grid-cell {
  padding: 20px 30px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.grid-cell.param {
  font-weight: 500;
  color: #374151;
}

.grid-cell.bad {
  color: #F87171;
  justify-content: center;
  text-align: center;
  background-color: #fffafa;
}

.grid-cell.good {
  color: #059669;
  justify-content: center;
  text-align: center;
  background-color: #f0fdf4;
  font-weight: 500;
}

.goal-banner {
  background: #00A352;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #ffffff;
}

.goal-icon {
  font-size: 50px;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.goal-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.goal-text p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 30px 0;
  }

  .table-grid {
    grid-template-columns: 1fr;
  }

  .grid-header.param-label {
    display: none;
  }

  .grid-cell.param {
    background: #eee;
    justify-content: center;
    font-weight: 700;
  }

  .goal-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ======== */

.learning-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.learning-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.steps-list {
  margin: 30px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.step-number {
  width: 32px;
  height: 32px;
  background-color: #00D26A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 1rem;
  color: #111827;
  margin-bottom: 4px;
}

.step-info p {
  font-size: 0.9rem;
  color: #6B7280;
}

.learning-result-card {
  background-color: #F0FDF4;
  border: 1px solid #DCFCE7;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.result-icon {
  font-size: 24px;
}

.result-text strong {
  display: block;
  color: #166534;
  margin-bottom: 4px;
}

.result-text p {
  font-size: 0.9rem;
  color: #166534;
  line-height: 1.4;
}

.learning-image-side {
  position: relative;
}

.image-wrapper {
  position: relative;
  overflow: visible;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
  z-index: 2;
}

.badge-icon-yellow {
  width: 50px;
  height: 50px;
  background: #FFFBEB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.badge-content strong {
  display: block;
  font-size: 1rem;
  color: #111827;
}

.badge-content p {
  font-size: 0.85rem;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 1024px) {
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .learning-image-side {
    order: -1;
  }

  .floating-badge {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .learning-section {
    padding: 30px 0;
  }
}

/* =============== */

.calc-section {
  padding: 80px 0;
  background: #F9FAF9;
  font-family: 'Inter', sans-serif;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.block-title {
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: #111827;
}

.input-group {
  margin-bottom: 25px;
}

.input-group label,
.input-field label {
  display: block;
  font-size: 0.9rem;
  color: #6B7280;
  margin-bottom: 8px;
}

.triple-input {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 0.2s;
}

input:focus {
  outline: none;
  border-color: #00D26A;
  background: #F0FDF4;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input::placeholder {
  color: white;
  opacity: 0.8;
}

.calc-results {
  background: #F9FAFB;
  border-radius: 24px;
  padding: 5px;
}

.results-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.res-item {
  background: white;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}

.res-item span {
  display: block;
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 5px;
}

.res-item strong {
  font-size: 1.5rem;
  color: #111827;
}

.results-details {
  border-top: 1px solid #E5E7EB;
  padding-top: 20px;
  margin-bottom: 25px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4B5563;
}

.detail-row b {
  color: #111827;
}

.final-box {
  background: #00D26A;
  border-radius: 20px;
  padding: 25px;
  color: white;
  text-align: center;
}

.final-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

.final-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.final-sub {
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .calc-section {
    padding: 30px 0;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}

/* ============ */

.about-section {
  padding: 80px 0;
  background-color: #F9FAF9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #E5E7EB;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #00D26A;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.4;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 350px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: crop;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.gallery-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.about-footer h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 25px;
}

.docs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.docs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #4B5563;
}

.docs-list .check {
  color: #00D26A;
  font-weight: bold;
}

.site-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-card {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 10px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.site-card:hover {
  border-color: #00D26A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.site-icon {
  font-size: 24px;
  margin-right: 20px;
}

.site-info strong {
  display: block;
  color: #00D26A;
  margin-bottom: 4px;
}

.site-info span {
  font-size: 0.85rem;
  color: #6B7280;
}

.arrow-up-right {
  margin-left: auto;
  color: #9CA3AF;
}

@media (max-width: 1024px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 30px 0;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .docs-list {
    grid-template-columns: 1fr;
  }
}

/* ======= */

.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #00D26A;
  box-shadow: 0 10px 25px rgba(0, 210, 106, 0.1);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  font-size: 1.05rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #9CA3AF;
  transition: background-color 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background-color: #00D26A;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.faq-answer p {
  color: #4B5563;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 30px 0;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

/* ============ */

.white-text {
  color: white;
}

.section-description.white {
  color: white;
}

.contact-section {
  padding: 80px 0;
  background: radial-gradient(circle at center, #005a3c 0%, #003324 100%);
  color: white;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header.text-white {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.text-green-bright {
  color: #00D26A;
}

.section-description {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.contact-form-card input,
.contact-form-card select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}

select,
select option {
  cursor: pointer;
}

.contact-form-card select option {
  background-color: #ffffff !important;
  color: #111827 !important;
}

.contact-form-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

.contact-form-card input:focus,
.contact-form-card select:focus {
  border-color: #00D26A;
  background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: #00D26A;
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #00bd5f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 210, 106, 0.3);
}

.form-footer {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 20px;
  text-align: center;
  line-height: 1.4;
}

.form-footer a {
  color: white;
  text-decoration: underline;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.info-item:hover {
  background: rgba(0, 210, 106, 0.1);
  border-color: rgba(0, 210, 106, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: #00D26A;
  color: white;
  transform: scale(1.1);
}

.info-text small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-text strong {
  display: block;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

.info-item:hover strong {
  color: #00D26A;
}

.info-text span {
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-info h3 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 30px 0;
  }

  .section-header.text-white {
    margin: 30px 0;
  }
}

/* ================ */

.main-footer {
  background: #111827;
  color: white;
  padding: 80px 0 30px;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 360px;
}

.logo-footer {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.logo-footer span {
  color: #00D26A;
}

.footer-motto {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00D26A;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  width: 100%;
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.4;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.social-icon:hover {
  opacity: 1;
  color: #00D26A;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    gap: 20px;
    text-align: center;
  }
}
