/* Midpass Landing Page Styles */

:root {
  --primary-color: #00a0e4;
  --secondary-color: #1a2b47;
  --text-color: #333333;
  --light-color: #ffffff;
  --gray-color: #f5f5f5;
  --dark-gray: #666666;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
}

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

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

h3 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn:hover {
  background-color: #0088c3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 160, 228, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #263c5f;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Header */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-text {
  flex: 1;
  padding-right: 50px;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
section {
  padding: 100px 0;
}

section:nth-child(even) {
  background-color: var(--gray-color);
}

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

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-gray);
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.problem-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Solution Section */
.solution-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.feature {
  flex-basis: calc(50% - 20px);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  background-color: rgba(0, 160, 228, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.feature-content h3 {
  margin-bottom: 10px;
}

/* How It Works */
.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  text-align: center;
}

.step {
  flex-basis: 30%;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 30px;
  right: -15%;
  width: 30%;
  height: 2px;
  background-color: var(--primary-color);
}

/* Ecosystem Section */
.ecosystem-components {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.component {
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.component-image {
  height: 250px;
  overflow: hidden;
}

.component-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.component:hover .component-image img {
  transform: scale(1.05);
}

.component-content {
  padding: 25px;
}

.component-content h3 {
  margin-bottom: 15px;
}

/* Use Cases */
.use-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.use-case {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.use-case:hover {
  transform: translateY(-5px);
}

.use-case h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.use-case ul {
  list-style-type: none;
}

.use-case ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.use-case ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Advantages */
.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.advantage {
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.advantage-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 160, 228, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.advantage-icon i {
  color: var(--primary-color);
  font-size: 32px;
}

/* Business Model */
.business-model {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.model-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.model-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.pricing-table th, .pricing-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.pricing-table th {
  background-color: rgba(0, 160, 228, 0.1);
  color: var(--secondary-color);
}

/* Market Opportunity */
.market-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--dark-gray);
  font-size: 1.1rem;
}

/* Roadmap */
.roadmap {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.roadmap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}

.roadmap-item {
  position: relative;
  margin-bottom: 50px;
}

.roadmap-content {
  position: relative;
  width: calc(50% - 30px);
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roadmap-item:nth-child(odd) .roadmap-content {
  left: calc(50% + 30px);
}

.roadmap-item:nth-child(even) .roadmap-content {
  left: 0;
}

.roadmap-content:before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--light-color);
  transform: rotate(45deg);
}

.roadmap-item:nth-child(odd) .roadmap-content:before {
  left: -10px;
}

.roadmap-item:nth-child(even) .roadmap-content:before {
  right: -10px;
}

.roadmap-date {
  position: absolute;
  top: 12px;
  width: 120px;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
}

.roadmap-item:nth-child(odd) .roadmap-date {
  left: calc(50% - 60px - 30px);
}

.roadmap-item:nth-child(even) .roadmap-date {
  right: calc(50% - 60px - 30px);
}

/* Investment */
.investment-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.investment-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.investment-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.investment-card ul {
  list-style-type: none;
}

.investment-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.investment-card ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  padding-right: 30px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 160, 228, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  color: var(--primary-color);
  font-size: 20px;
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-secondary);
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 60px 0 30px;
}

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

.footer-column h3 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

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

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

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  margin-top: 20px;
}

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

.social-links a:hover {
  background-color: var(--primary-color);
}

.social-links a i {
  color: var(--light-color);
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #ccc;
  font-size: 0.9rem;
}

/* App Simulator Section */
.app-simulator-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.app-simulator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.app-simulator-header h2 {
  margin-bottom: 20px;
}

.app-simulator-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.app-simulator-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-gray);
}

.phone-container {
  position: relative;
  width: 375px;
  height: 812px;
  background-color: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 10px solid #1a2a3a;
  margin-bottom: 30px;
  z-index: 10;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 30px;
  background-color: #1a2a3a;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.header {
  display: flex;
  align-items: center;
  padding: 40px 16px 12px;
  border-bottom: 1px solid #f3f4f6;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 5;
}

.back-button {
  padding: 8px;
  cursor: pointer;
}

.logo-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text {
  font-size: 18px;
  font-weight: 500;
  color: #1a2a3a;
}

.logo-underline {
  height: 2px;
  width: 60px;
  background-color: #0099cc;
  margin-top: -2px;
}

.content {
  padding: 24px;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e5e7eb;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-name {
  font-size: 24px;
  font-weight: bold;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.profile-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.profile-tag {
  background-color: #f3f4f6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #1a2a3a;
}

.info-section {
  margin-bottom: 24px;
}

.info-item {
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}

.info-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.info-value {
  font-size: 16px;
  color: #1a2a3a;
}

.action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.action-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
}

.action-button.active {
  background-color: #e1f5fe;
}

.action-button-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0099cc;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
}

.action-button-text {
  font-size: 14px;
  color: #1a2a3a;
}

.primary-button {
  background-color: #1a2a3a;
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

/* Tela de Histórico */
.search-bar {
  display: flex;
  align-items: center;
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.search-icon {
  margin-right: 8px;
  color: #6b7280;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #1a2a3a;
}

.history-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}

.history-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #e5e7eb;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.history-details {
  flex: 1;
}

.history-title {
  font-size: 16px;
  font-weight: 500;
  color: #1a2a3a;
  margin-bottom: 4px;
}

.history-date {
  font-size: 14px;
  color: #6b7280;
}

.history-arrow {
  color: #6b7280;
}

/* Tela de Compartilhamento */
.sharing-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 24px;
}

.sharing-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
}

.sharing-options {
  margin-bottom: 36px;
}

.sharing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}

.sharing-item-left {
  display: flex;
  align-items: center;
}

.sharing-item-icon {
  margin-right: 12px;
  color: #1a2a3a;
}

.sharing-item-label {
  font-size: 16px;
  color: #1a2a3a;
}

.toggle-button {
  width: 50px;
  height: 30px;
  border-radius: 15px;
  padding: 2px;
  cursor: pointer;
  position: relative;
}

.toggle-button-active {
  background-color: #0099cc;
}

.toggle-button-inactive {
  background-color: #e5e7eb;
}

.toggle-circle {
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background-color: #ffffff;
  position: absolute;
  top: 2px;
  transition: left 0.2s ease;
}

.toggle-circle-active {
  left: 22px;
}

.toggle-circle-inactive {
  left: 2px;
}

.share-button {
  background-color: #0099cc;
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

/* Tela de Sucesso */
.success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #0099cc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 36px;
}

.success-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 16px;
}

.success-message {
  font-size: 16px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 36px;
}

/* Tela de Cartão Digital */
.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
  background-color: #000000;
}

.digital-card {
  background-color: #ffffff;
  border-radius: 16px;
  width: 100%;
  height: 200px;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.digital-card.active {
  border: 2px solid #0099cc;
  box-shadow: 0 0 20px rgba(0, 153, 204, 0.5);
}

.card-user-name {
  font-size: 18px;
  font-weight: bold;
  color: #1a2a3a;
  text-align: center;
  margin-top: auto;
  margin-bottom: 20px;
}

.activate-button {
  background-color: #0099cc;
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

.active-card-status {
  background-color: rgba(0, 153, 204, 0.1);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.active-status-text {
  font-size: 18px;
  font-weight: bold;
  color: #0099cc;
  margin-bottom: 8px;
}

.active-status-subtext {
  font-size: 14px;
  color: #1a2a3a;
  margin-bottom: 16px;
}

.deactivate-button {
  background-color: #1a2a3a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}

.bottom-indicator {
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
  margin-top: auto;
}

/* Navegação do Simulador */
.nav-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.nav-button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #0088c3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 160, 228, 0.3);
}

.screen-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #1a2a3a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .ecosystem-components,
  .use-cases,
  .advantages,
  .business-model,
  .market-stats,
  .investment-details {
    grid-template-columns: 1fr;
  }
  
  .feature {
    flex-basis: 100%;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 40px;
  }
  
  .step:not(:last-child):after {
    display: none;
  }
  
  .roadmap:before {
    left: 30px;
  }
  
  .roadmap-content {
    width: calc(100% - 80px);
    left: 80px !important;
  }
  
  .roadmap-item:nth-child(odd) .roadmap-content:before,
  .roadmap-item:nth-child(even) .roadmap-content:before {
    left: -10px;
    right: auto;
  }
  
  .roadmap-date {
    left: 0 !important;
    right: auto !important;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .phone-container {
    width: 320px;
    height: 690px;
  }
}
