@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/fonts/InstrumentSans-VariableFont_wdth\,wght.ttf')
    format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Body */
body {
  font-family: 'Instrument Sans', sans-serif;
  background: #f8f9fb;
  color: #111;
}

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

/* ========================= */
/* 🔝 NAVBAR */
/* ========================= */

.navbar {
  background: #f8f9fb;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 28px;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 15px;
  color: #111;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #1e88e5;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Layout */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Content */
.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 110%;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #1e88e5;
}

.hero-content p {
  font-size: 18px;
  color: #666;
  line-height: 130%;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #1e88e5;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #1669c1;
}

/* Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  width: 450px;
}

/* ========================= */
/* 🔽 Responsive Design */
/* ========================= */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 40px;
    line-height: 110%;
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 110%;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-image img {
    width: 320px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .btn-primary {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* Section */
.about {
  background: #f8f9fd;
  padding: 100px 20px;
  text-align: center;
}

/* Badge */
.about-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e88e5;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Title */
.about-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  color: #111;
  margin-bottom: 20px;
}

/* Paragraph */
.about-text {
  font-size: 18px;
  line-height: 26px;
  color: #565656;
  max-width: 620px;
  margin: 0 auto;
}

/* ========================= */
/* 📱 Responsive */
/* ========================= */

@media (max-width: 992px) {
  .about-title {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
  }

  .about-title {
    font-size: 28px;
    line-height: 36px;
  }

  .about-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }

  .about-title {
    font-size: 24px;
    line-height: 32px;
  }

  .about-text {
    font-size: 15px;
    line-height: 22px;
  }
}

/* Section */
.problem-solution {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

/* Badge */
.ps-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e88e5;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Title */
.ps-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 60px;
}

/* Grid */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

/* Card */
.ps-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* Labels */
.ps-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px 14px 6px 6px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.ps-label.problem {
  background: #fee2e2;
  color: #dc2626;
}

.ps-label.solution {
  background: #dcfce7;
  color: #16a34a;
}

/* Icon */
.ps-label .icon {
  font-size: 12px;
}

/* Main Text */
.ps-main-text {
  font-size: 20px;
  line-height: 24px;
  color: #111;
  margin-bottom: 16px;
}

/* Sub Text */
.ps-sub-text {
  font-size: 16px;
  line-height: 130%;
  color: #565656;
}

/* Highlights */
.highlight-red {
  color: #dc2626;
}

.highlight-green {
  color: #16a34a;
}

/* ========================= */
/* 📱 Responsive */
/* ========================= */

@media (max-width: 992px) {
  .ps-title {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 768px) {
  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ps-title {
    font-size: 28px;
    line-height: 36px;
  }

  .ps-main-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .problem-solution {
    padding: 60px 15px;
  }

  .ps-title {
    font-size: 24px;
    line-height: 32px;
  }

  .ps-card {
    padding: 20px;
  }
}

/* Section */
.modules {
  background: #f8f9fd;
  padding: 100px 20px;
  text-align: center;
}

/* Badge */
.modules-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e88e5;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Title */
.modules-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 15px;
}

/* Subtitle */
.modules-subtitle {
  font-size: 18px;
  line-height: 130%;
  color: #565656;
  max-width: 650px;
  margin: 0 auto 60px;
}

/* Grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

/* Card */
.module-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s ease;
}

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

/* Icon */
.module-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Title */
.module-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Text */
.module-card p {
  font-size: 16px;
  line-height: 20px;
  color: #565656;
}

/* ========================= */
/* 📱 Responsive */
/* ========================= */

@media (max-width: 992px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-title {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .modules-title {
    font-size: 28px;
    line-height: 36px;
  }

  .modules-subtitle {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .modules {
    padding: 60px 15px;
  }

  .modules-title {
    font-size: 24px;
    line-height: 32px;
  }

  .module-card {
    padding: 20px;
  }
}

/* Section */
.why {
  background: #f8f9fb;
  padding: 100px 20px;
}

/* Layout */
.why-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* Left */
.why-left {
  flex: 1;
}

.why-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e88e5;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.why-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 30px;
}

.why-image img {
  max-width: 100%;
  width: 350px;
}

/* Right */
.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* Items */
.why-item h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 16px;
  line-height: 20px;
  color: #565656;
  max-width: 400px;
}

/* ========================= */
/* 📱 Responsive */
/* ========================= */

@media (max-width: 992px) {
  .why-wrapper {
    gap: 40px;
  }

  .why-title {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 768px) {
  .why-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why-left {
    align-items: center;
  }

  .why-image img {
    width: 280px;
    margin: 0 auto;
  }

  .why-right {
    align-items: center;
  }

  .why-item p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .why {
    padding: 60px 15px;
  }

  .why-title {
    font-size: 26px;
    line-height: 34px;
  }

  .why-item h3 {
    font-size: 18px;
  }
}

/* Footer */
.footer {
  background: #ffffff;
  padding: 60px 20px 30px;
  color: #111;
}

/* Top Layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* Left */
.footer-left {
  max-width: 300px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 15px;
  line-height: 130%;
  color: #565656;
  margin-bottom: 20px;
}

/* Socials */
.socials {
  display: flex;
  gap: 12px;
}

/* Columns */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 400;
}

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

.footer-col li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #565656;
}

.footer-col a {
  text-decoration: none;
  color: #565656;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #565656;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 14px;
  color: #565656;
  text-decoration: none;
}

/* ========================= */
/* 📱 Responsive */
/* ========================= */

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 20px;
  }
}

/* ========================= */
/* 🔄 HOW IT WORKS SECTION */
/* ========================= */

.how {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

/* Title */
.how-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #111;
}
.how-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e88e5;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Rows wrapper */
.how-rows {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.how-img {
  display: grid;
  place-content: center;
}
/* Each row */
.how-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  text-align: left;
}

/* Image */
.how-img img {
  width: 160px;
  max-width: 100%;
}

/* Content */
.how-content {
  max-width: 500px;
  display: grid;
  place-content: center;
  align-content: center;
  border-left: 2px solid #b3b3b3;
  padding-left: 1rem;
}

/* Step number */
.step-number {
  display: block;
  font-size: 24px;
  color: #1e88e5;
  margin-bottom: 6px;
}

/* Heading */
.how-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #111;
}

/* Paragraph */
.how-content p {
  font-size: 16px;
  line-height: 130%;
  color: #6b7280;
  width: 65%;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .how-title {
    font-size: 34px;
    line-height: 42px;
  }

  .how-row {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .how-content p {
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .how-row {
    flex-direction: column;
    text-align: center;
  }
  .how-content {
    border: none;
  }
  .how-img img {
    width: 120px;
  }

  .how-rows {
    gap: 40px;
  }

  .how-title {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .how {
    padding: 60px 15px;
  }

  .how-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;
  }

  .how-content h3 {
    font-size: 18px;
  }

  .how-content p {
    font-size: 14px;
    line-height: 20px;
    width: 80%;
    margin: auto;
  }
}
