@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #DC446C;
  --secondary: #6C63FF;
  --accent1: #FFB86C;
  --accent2: #6CE5E8;
  --accent3: #F8F9FB;
  --text-dark: #23243A;
  --text-light: #fff;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

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

.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
nav {
  display: flex;
  gap: 2rem;
}
nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}
nav a:hover, nav a:focus {
  color: var(--primary);
}
.hero,
.features,
.compliance,
.facts,
.roadmap-section,
.contact {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .container,
.features .container,
.compliance .container,
.facts .container,
.contact .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  background: linear-gradient(120deg, #FFB86C 0%, #DC446C 60%, #6C63FF 100%);
  color: var(--text-light);
  padding: 90px 0 70px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text-light);
  text-shadow: 0 2px 16px #0002;
}
.hero p {
  font-size: 1.25rem;
  color: #f8f9fb;
  margin-bottom: 2.2rem;
}
.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--text-light);
  border: none;
  border-radius: 32px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px #6C63FF22;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: scale(1.04);
}
.features {
  background: var(--accent3);
  padding: 64px 0 48px 0;
}
.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--secondary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 24px;
}
.feature-item {
  background: linear-gradient(120deg, #fff 60%, #6CE5E8 100%);
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 2px 8px #23243A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:nth-child(2n) {
  background: linear-gradient(120deg, #fff 60%, #FFB86C 100%);
}
.feature-item:nth-child(3n) {
  background: linear-gradient(120deg, #fff 60%, #DC446C22 100%);
}
.feature-item:hover {
  transform: scale(1.045);
  box-shadow: 0 8px 32px #DC446C33, 0 2px 8px #23243A0A;
  z-index: 2;
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--secondary);
}
.feature-item p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}
.compliance {
  background: linear-gradient(120deg, #F8F9FB 60%, #6CE5E8 100%);
  padding: 64px 0 48px 0;
  text-align: center;
}
.compliance h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--primary);
}
.compliance p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.licenses-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}
.licenses-list li {
  font-size: 1rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.licenses-list li:last-child {
  border-bottom: none;
}
.facts {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background: linear-gradient(120deg, #fff 60%, #FFB86C 100%);
  padding: 48px 0 32px 0;
}
.facts-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
.fact {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #23243A14;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 160px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.fact-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}
.fact-label {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: 0.5rem;
}
.contact {
  background: linear-gradient(120deg, #F8F9FB 60%, #6C63FF 100%);
  padding: 64px 0 48px 0;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--secondary);
}
.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact input, .contact textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: var(--text-dark);
  resize: none;
  width: 100%;
  max-width: 100%;
  min-width: 400px;
  box-sizing: border-box;
}
.contact input:focus, .contact textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact button {
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 32px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px #DC446C22;
}
.contact button:hover {
  background: var(--secondary);
  color: var(--text-light);
}
footer {
  background: #fff;
  color: #888;
  text-align: center;
  font-size: 1rem;
  padding: 32px 0 24px 0;
  border-top: 1px solid #eee;
  margin-top: 0;
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 24px;
    height: auto;
  }
  .hero-left {
    padding-left: 0;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
  }
  .hero-right {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #hero-graph {
    width: 100%;
    max-width: 100vw;
    height: 220px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .facts-flex {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 12px;
  }
  .fact {
    min-width: 0;
    padding: 20px 10px;
  }
  .roadmap-gantt {
    font-size: 0.85rem;
    padding: 0.2rem;
    grid-template-columns: repeat(12, 1fr);
    overflow-x: auto;
  }
  .contact form {
    max-width: 100vw;
    padding: 0 8px;
  }
  .contact input, .contact textarea {
    min-width: 0;
  }
  .hero h1, .features h2, .compliance h2, .contact h2, .roadmap-title-bar h2 {
    font-size: 1.3rem;
  }
  .fact-number {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .header-flex {
    flex-direction: column;
    height: auto;
    gap: 0.7rem;
    padding: 16px 0;
  }
  .hero {
    padding: 32px 0 24px 0;
    min-height: 60vh;
  }
  .features, .compliance, .facts, .roadmap-section, .contact {
    padding: 24px 0 16px 0;
    min-height: 60vh;
  }
  #hero-graph {
    height: 180px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .features h2, .compliance h2, .contact h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 500px) {
  .contact input, .contact textarea {
    min-width: 0;
  }
}

.roadmap-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(90deg, #6C63FF 0%, #FFB86C 100%);
  padding: 64px 0 48px 0;
  box-sizing: border-box;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roadmap-title-bar {
  max-width: 1200px;
  margin: 0 auto 32px auto;
  padding: 0 24px;
}
.roadmap-title-bar h2 {
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
}
#roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 220px;
}
.roadmap-gantt {
  display: grid;
  grid-template-rows: repeat(var(--rows), 48px);
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 2rem 1rem 1rem 1rem;
  position: relative;
  box-shadow: 0 2px 16px #23243A22;
}
.roadmap-month {
  font-size: 1rem;
  color: #6C63FF;
  text-align: center;
  font-weight: 600;
  grid-row: 1;
}
.roadmap-bar {
  position: relative;
  background: linear-gradient(90deg, #DC446C 0%, #FFB86C 100%);
  color: #fff;
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 2px 8px #DC446C33;
  z-index: 1;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.roadmap-bar:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px #FFB86C88;
}
@media (max-width: 900px) {
  .roadmap-gantt {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
  #roadmap-container {
    padding: 0 4px;
  }
}
@media (max-width: 600px) {
  .roadmap-title-bar h2 {
    font-size: 1.3rem;
  }
  .roadmap-gantt {
    font-size: 0.85rem;
    padding: 0.2rem;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 40px;
}
.hero-left {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 64px;
}
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-graph {
  width: 480px;
  height: 320px;
  background: rgba(255,255,255,0.3);
  border-radius: 18px;
  box-shadow: 0 2px 12px #23243A14;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 24px;
    height: auto;
  }
  .hero-left {
    padding-left: 0;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
  }
  .hero-right {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #hero-graph {
    width: 100%;
    max-width: 480px;
    height: 240px;
  }
} 