* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvatica-reg, sans-serif;
}
@font-face {
  font-family: Helvatica-reg; /* set name */
  src: url(../fonts/Helvetica.ttf); /* url of the font */
}
body {
  overflow-x: hidden;
}
:root {
  --primary: #2d9be4;
  --text-main: #23254c;
  --text-light: #77788f;
  --bg-light: #ffffff;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
}
.navbar .logo {
  font-weight: 700;
  font-size: 20px;
  color: white;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links .nav-link-item {
  text-decoration: none;
  font-weight: 400;
  position: relative;
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.875rem;
}
/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--bg-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 0;
}
/* Arrow (cone shape) */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}
.dropdown-menu a {
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.dropdown-menu a:hover {
  background: #e2f8fd;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.nav-btn {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 6px;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}
/* Mobile */
.hamburger {
  display: none;
  font-size: 22px;
  color: black;
  cursor: pointer;
}
/* ----------------------------------------------
MAIN CONTENT
---------------------------------------------- */
/* General Layout */
.why-genchi {
  font-family: "Inter", sans-serif;
  color: #222;
  line-height: 1.6;
}
/* Hero */
.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 80px 10%;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.hero .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hero h1 {
  font-size: 45px;
  margin-bottom: 20px;
  color: var(--text-main);
}
.hero-text h2 {
  font-size: 20px;
  font-weight: 400;
  max-width: 400px;
  color: #333;
}
.hero-img img {
  max-width: 400px;
  width: 100%;
}
/* BLUE VERTICAL LINE SECTION */
.blue-line-section {
  width: 50%;
}
.blue-line-section .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.blue-vertical-line {
  width: 5px;
  height: 100px;
  background: linear-gradient(180deg, #36d1dc, #5b86e5);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0;
  box-shadow: 0 4px 15px rgba(54, 209, 220, 0.4);
}
.line-content {
  flex: 1;
  max-width: 700px;
}
.line-content h2 {
  font-size: 34px;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.2;
}
/* Info Sections */
.info-section {
  margin-top: -5rem;
  padding: 40px 10%;
}
.num-con {
  display: flex;
  align-items: flex-start;
}
.info-content {
  max-width: 800px;
  gap: 20px;
}
.roles-section,
.works-section,
.features-section,
.cta {
  padding: 40px 10%;
  position: relative;
}
.info-number {
  font-size: 100px;
  font-weight: bold;
  color: #cde4f7;
  line-height: 50%;
}
.info-content h3 {
  font-size: 1.8rem;
  color: var(--text-main);
}
.info-content strong{
  font-size: 20px;
  color: var(--text-main);
}
.info-number.white {
  color: rgba(255, 255, 255, 0.2);
}
/* Roles */
.roles-section {
  padding: 40px 10%;
  position: relative;
}
.roles-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
}
.role-card img {
  max-width: 100px;
  margin-bottom: 20px;
}
.role-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}
.role-card p {
  margin-bottom: 1rem;
  position: relative;
  color: var(--text-light);
}
.role-card ul {
  list-style: none;
}
.role-card li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}
.role-card li::before {
  content: "✔";
  color: #00aeef;
  font-size: 20px;
  position: absolute;
  left: 0;
}
/* How it works */
.works-section {
  padding: 40px 10%;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.175) 31.55%, rgba(51,141,248,0.08) 100%);
}
.work-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0px;
}
.work-item {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  align-items: center;
}
.work-item img {
  width: 50%;
  height: auto;
}
.work-content {
  width: 50%;
}
.work-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}
.work-content ul {
  list-style: none;
}
.work-content li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}
.work-content li::before {
  content: "•";
  color: #00aeef;
  font-size: 30px;
  position: absolute;
  left: 0;
  top: -9px;
}
.work-content li strong {
  color: var(--text-main);
}
/* Features */
.features-section {
  background: linear-gradient(135deg, #0099ff, #00ccff);
  color: #fff;
}
.features-section h3 {
  color: white;
}
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.feature-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.feature-wrapper {
  max-width: 620px;
}
.feature-card h4 {
  font-size: 24px;
}
.feature-card img {
  max-width: 125px;
  margin-bottom: 20px;
}
.feature-content {
  display: flex;
}
.feature-content-con {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 50%;
}
.feature-content-con svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0; /* Prevent shrinking */
  display: inline-block;
  stroke: #2ce6bd;
}
/* CTA */
.cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.cta h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.cta-btn {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 6px;
  transition: all 0.3s ease;
  width: fit-content;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}
/* ----------------------------------------------
FOOTER
---------------------------------------------- */
.footer {
  background-color: #0b0b19; /* Dark background */
  color: #ffffff;
  padding: 60px 40px 30px;
  margin-top: 80px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 140px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}
.copyright {
  color: #cccccc;
  font-size: 13px;
  margin-top: auto;
}
.footer-right {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-section h4 {
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 12px;
}
.footer-section a {
  color: #cccccc;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: #ffffff;
}
.footer-section p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-section p a {
  color: #cccccc;
  text-transform: none;
  font-size: 14px;
}
/* Social icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
.social-icons a {
  color: #ffffffff;
  font-size: 16px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #ffffff;
}
/* ----------------------------------------------
RESPONSIVE
---------------------------------------------- */
@media (min-width: 600px) {
  .info-section {
    padding: 40px 15%;
  }
  .hero {
    padding: 60px 15%;
  }
  .roles-section,
  .works-section,
  .features-section,
  .cta {
    padding: 40px 15%;
  }
}
@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--bg-light);
    position: absolute;
    top: 70px;
    right: 5%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    width: 90%; /* full responsive width */
  }
  .nav-links .nav-link-item,
  .nav-links .nav-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }
  .nav-links .nav-btn {
    margin-top: 6px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    border: none;
  }
  .nav-links .nav-link-item:last-child,
  .nav-links .nav-btn:last-child {
    border-bottom: none;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  /* --- Submenu always visible under More --- */
  .dropdown {
    width: 100%;
  }
  .dropdown .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .dropdown .dropdown-menu a {
    padding: 12px 30px; /* indent to show submenu visually */
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  .dropdown-toggle::after {
    display: none; /* remove arrow on mobile */
  }
  .dropdown-menu::before {
    display: none;
  }
  /*Main Content*/
  .info-number {
    line-height: 100%;
  }
  .blue-line-section {
    width: 100%;
  }
  .blue-line-section .container {
    gap: 20px;
  }
  .blue-vertical-line {
    height: 80px;
  }
  .line-content h2 {
    font-size: 24px;
    text-align: left;
  }
  .roles-grid {
    flex-direction: column;
  }
  .work-grid {
    flex-direction: column;
  }
  .work-item {
    flex-direction: column;
  }
  .work-item:nth-child(2) {
    flex-direction: column-reverse;
  }
  .work-item img {
    width: 100%;
  }
  .work-content {
    width: 100%;
  }
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }
  .feature-card {
    flex-direction: column;
    gap: 1rem;
  }
  .feature-content {
    flex-direction: column;
  }
  .feature-content-con {
    width: 100%;
  }
  .hero {
    text-align: center;
    flex-direction: column;
  }
  .info-number {
    font-size: 40px;
    left: 10px;
  }
  /*Footer*/
  .footer {
    margin-top: 0px;
  }
  .footer-left {
    min-height: 0px;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .footer-right {
    justify-content: left;
    gap: 40px;
    flex-direction: column;
    width: 100%;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    text-align: center;
  }
}