*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body{
  min-height:100vh;
  background:linear-gradient(135deg, #e6f7f4, #fef6ee);
  color:#0f172a;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 48px;
}

.logo{
  display:flex;
  align-items:center;
}

.nav-btn{
  padding:10px 22px;
  border-radius:999px;
  border:1px solid #0f766e;
  background:transparent;
  cursor:pointer;
  color:#0f766e;
  font-weight:500;
}

/* HERO */
.hero{
  display:flex;
  justify-content:center;
  padding:40px;
}

.hero-card{
  background:#ffffff;
  border-radius:32px;
  max-width:1200px;
  width:100%;
  padding:64px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  box-shadow:0 40px 100px rgba(0,0,0,0.08);
}

.hero-left h1{
  font-size:52px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-left p{
  font-size:16px;
  line-height:1.6;
  color:#475569;
  max-width:460px;
}

.cta-group{
  margin-top:32px;
}

.primary-btn{
  background:#0f766e;
  color:#ffffff;
  border:none;
  padding:14px 34px;
  border-radius:999px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

.primary-btn:hover,
.nav-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(15,118,110,0.25);
}

.primary-btn:active{
  transform:translateY(0);
}


.note{
  display:block;
  margin-top:10px;
  font-size:12px;
  color:#64748b;
}

/* RIGHT CARD */
.hero-right{
  display:flex;
  align-items:center;
  justify-content:center;
}

.mock-card{
  background:#f8fafc;
  border-radius:24px;
  padding:32px;
  width:100%;
  max-width:340px;
  box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

.mock-card h4{
  color:#0f766e;
  margin-bottom:16px;
}

.mock-card li{
  list-style:none;
  margin-bottom:10px;
  color:#334155;
}

/* INFO SECTIONS */
.info-section{
  padding:80px 40px;
  max-width:1100px;
  margin:auto;
}

.info-section.light{
  background:#f8fafc;
  border-radius:32px;
}

.info-section h2{
  font-size:32px;
  margin-bottom:40px;
  text-align:center;
}

.steps,
.audience{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:32px;
}

.step,
.audience-card{
  background:#ffffff;
  border-radius:20px;
  padding:28px;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.step h3,
.audience-card h3{
  margin-bottom:10px;
}

.rate{
  margin-top:10px;
  font-size:14px;
  color:#0f766e;
}

/* WHY */
.reasons{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:16px;
  font-size:15px;
  color:#334155;
}

/* PILOT */
.pilot{
  text-align:center;
  padding:80px 40px;
  max-width:900px;
  margin:auto;
}

.pilot p{
  margin:20px auto 30px;
  max-width:600px;
  color:#475569;
}

/* FAQ */
.faq{
  max-width:900px;
  margin:80px auto;
  padding:0 40px;
}

.faq h2{
  text-align:center;
  margin-bottom:30px;
}

.faq-item{
  border-bottom:1px solid #e2e8f0;
  padding:20px 0;
}

.faq-item h4{
  font-size:16px;
  cursor:pointer;
}

.faq-item p{
  margin-top:10px;
  font-size:14px;
  color:#475569;
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease, opacity 0.3s ease;
  opacity:0;
}


/* COUNTDOWN */
.countdown{
  font-weight:600;
  color:#0f766e;
  margin-top:10px;
}


.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.modal-card{
  background:#fff;
  padding:40px;
  border-radius:20px;
  width:100%;
  max-width:420px;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.15);
}

.modal-btn{
  width:100%;
  padding:16px;
  margin-top:14px;
  border:none;
  border-radius:14px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  background:var(--primary);
  color:#fff;
}

.modal-btn:hover{
  background:var(--primary-dark);
}

.faq-item h4{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:16px;
}

.faq-icon{
  font-weight:700;
  color:#0f766e;
  transition:transform 0.3s ease;
}

.faq-item.open .faq-icon{
  transform:rotate(45deg);
}

.faq-item p{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height 0.35s ease, opacity 0.3s ease;
}

.faq-item{
  transition:background 0.2s ease;
}

.faq-item:hover{
  background:#f8fafc;
  border-radius:12px;
}



.footer {
  background: linear-gradient(135deg, #e6f7f4, #fef6ee);
  border-top: 1px solid #e2e8f0;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 14px;
  color: #64748b;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #475569;
  text-decoration: none;
}

.footer-col a:hover {
  color: #0f766e;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

/* FINTECH CONTENT PAGES */
.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #e6f7f4, #fef6ee);
  padding: 40px 20px;
}

.page-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #0f172a;
}

.page-header p {
  color: #475569;
  max-width: 600px;
  margin: auto;
}

.page-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 20px;
  color: #0f766e;
}

.page-content p,
.page-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.page-content ul {
  padding-left: 18px;
}

.back-home {
  margin-top: 50px;
  text-align: center;
}

.back-home a {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #0f766e;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.back-home a:hover {
  box-shadow: 0 10px 30px rgba(15,118,110,0.35);
  transform: translateY(-1px);
}

/* MOBILE */
@media(max-width: 600px) {
  .page-card {
    padding: 40px 24px;
  }

  .page-header h1 {
    font-size: 28px;
  }
}



/* RESPONSIVE */
@media(max-width:900px){
.hero{
    padding:20px;
  }
  
  .hero-card{
    grid-template-columns:1fr;
    padding:40px;
    text-align:center;
  }

  .hero-left p{
    margin:auto;
  }

  .logo img{
    width:100px;
    height: auto;
    margin: 0 auto; 
  }

  body {
    font-size: 14px;
  } 
  
}

@media (max-width: 600px) {

  .nav {
    padding: 16px 20px;
  }

  .hero {
    padding: 16px;
  }

  .hero-card {
    padding: 24px;
    border-radius: 20px;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 14px;
  }

  .primary-btn {
    width: 100%;
    padding: 14px;
  }

  .mock-card {
    padding: 20px;
  }

  .info-section,
  .pilot,
  .faq {
    padding: 48px 20px;
  }
}

@media (max-width: 600px) {

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}










