/*=========================================================
#
# SMART ABSENSI NFC
# Landing Page
#
# Author  : Smart
# Framework : Bootstrap 5
# Version : 1.0
#
=========================================================*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap");

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #38bdf8;

  --white: #ffffff;
  --background: #f8fafc;

  --text: #0f172a;
  --text-light: #64748b;

  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;

  --radius: 18px;

  --shadow: 0 20px 50px rgba(37, 99, 235, 0.15);

  --transition: 0.35s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;

  background: var(--background);

  color: var(--text);

  overflow-x: hidden;

  line-height: 1.7;
}
section {
  padding: 100px 0;

  position: relative;
}
.container {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding-left: 15px;

  padding-right: 15px;
}
a {
  text-decoration: none;

  transition: var(--transition);
}
img {
  max-width: 100%;

  display: block;
}
.btn {
  border-radius: 50px;

  padding: 14px 28px;

  font-weight: 600;
}

/*==================================================
#
# NAVBAR
#
==================================================*/

.landing-navbar {
  padding: 18px 0;

  transition: 0.35s;

  background: transparent;
}

.landing-navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(18px);

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);

  padding: 12px 0;
}

.logo {
  width: 52px;

  transition: 0.35s;
}

.logo-title {
  font-size: 18px;

  font-weight: 800;

  color: var(--text);
}

.logo-subtitle {
  color: var(--text-light);

  font-size: 12px;
}

.nav-link {
  color: var(--text);

  font-weight: 600;

  margin: 0 14px;

  position: relative;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 0;

  height: 3px;

  background: var(--primary);

  border-radius: 50px;

  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-login {
  padding: 12px 26px;

  border-radius: 50px;

  border: 1px solid #dbeafe;

  margin-right: 12px;

  font-weight: 600;
}

.btn-login:hover {
  background: #eff6ff;
}

.btn-register {
  padding: 12px 28px;

  border-radius: 50px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;

  font-weight: 700;

  box-shadow: var(--shadow);
}

.btn-register:hover {
  transform: translateY(-3px);

  color: #fff;
}
.navbar-action{
    display:flex;
    align-items:center;
    gap:12px;
}
/*==================================================
#
# HERO
#
==================================================*/

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: visible;
}

.hero-title {
  font-size: 64px;

  font-weight: 800;

  line-height: 1.15;

  margin: 25px 0;
}

.hero-description {
  color: var(--text-light);

  font-size: 18px;

  max-width: 520px;
}

.hero-badge {
  display: inline-block;

  background: #dbeafe;

  color: var(--primary);

  padding: 10px 22px;

  border-radius: 50px;

  font-weight: 700;
}

.hero-button {
  margin-top: 40px;
}

.btn-demo {
 

  border: 1px solid #ddd;
}

.hero-list {
  margin-top: 40px;

  display: flex;

  flex-wrap: wrap;

  gap: 25px;

  font-weight: 600;
}
.hero-circle {
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);
}

.hero-circle-1 {
  width: 420px;

  height: 420px;

  background: #93c5fd;

  top: -120px;

  right: -80px;
}

.hero-circle-2 {
  width: 300px;

  height: 300px;

  background: #bfdbfe;

  bottom: -120px;

  left: -100px;
}

.hero-image {
  position: relative;

  width: 100%;

  height: 700px;
}

.hero-wrapper {
  display: grid;

  grid-template-columns: 55% 45%;

  align-items: center;

  min-height: 100vh;

  gap: 30px;
}

.hero-content {
  position: relative;

  z-index: 10;
}

.hero-visual {
  position: relative;

  min-height: 700px;
}

.hero-image::before {
  content: "";

  position: absolute;

  width: 620px;

  height: 620px;

  right: -60px;

  top: 20px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.18),
    rgba(56, 189, 248, 0.08)
  );

  filter: blur(130px);

  z-index: 0;
}

.dashboard-preview {
  position: absolute;

  width: 650px;

  top: 20px;

  right: -80px;

  z-index: 1;

  border-radius: 22px;

  transform: rotate(-4deg);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.18);
}

.hero-image:hover .dashboard-preview {
  transform: rotate(-4deg) scale(1.02);
}
.founder {
  position: absolute;

  width: 380px;

  bottom: 15px;

  right: 60px;

  z-index: 10;
}

.hero-image:hover .founder {
  transform: translateY(-8px);
}

/*==================================================
#
# FEATURE
#
==================================================*/

.feature {
  padding: 120px 0;

  background: #fff;
}

.section-title {
  text-align: center;

  max-width: 760px;

  margin: auto auto 70px;
}

.section-badge {
  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  background: #dbeafe;

  color: var(--primary);

  font-weight: 700;
}

.section-title h2 {
  font-size: 48px;

  font-weight: 800;

  margin: 25px 0;
}

.section-title p {
  color: var(--text-light);

  font-size: 18px;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.feature-card {
  background: #fff;

  border-radius: 25px;

  padding: 40px;

  border: 1px solid #edf2f7;

  transition: 0.35s;

  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);

  border-color: #2563eb;
}
.feature-icon {
  width: 72px;

  height: 72px;

  border-radius: 20px;

  background: #eff6ff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 30px;

  color: var(--primary);

  margin-bottom: 25px;

  transition: 0.35s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);

  background: var(--primary);

  color: #fff;
}

.feature-card h4 {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
}

/*==================================================
#
# WORKFLOW
#
==================================================*/

.workflow {
  background: #f8fbff;

  padding: 120px 0;
}

.workflow-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  position: relative;

  margin-top: 70px;
}

.workflow-line {
  position: absolute;

  left: 0;

  right: 0;

  height: 4px;

  background: #dbeafe;

  margin-top: 110px;
}

.workflow-card {
  position: relative;

  background: #fff;

  border-radius: 24px;

  padding: 40px 30px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);

  transition: 0.35s;
}

.workflow-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
}

.workflow-number {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  font-weight: 700;

  margin: 0 auto 25px;
}
/*==================================================
#
# DASHBOARD PREVIEW
#
==================================================*/

.dashboard-section {
  padding: 140px 0;

  background: #fff;
}

.dashboard-wrapper {
  display: grid;

  grid-template-columns: 42% 58%;

  gap: 60px;

  align-items: center;
}

.dashboard-content h2 {
  font-size: 48px;

  font-weight: 800;

  margin: 25px 0;
}

.dashboard-content p {
  color: var(--text-light);

  margin-bottom: 35px;
}

.dashboard-list {
  list-style: none;

  padding: 0;
}

.dashboard-list li {
  margin-bottom: 18px;

  font-size: 18px;
}
.dashboard-browser {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
}

.browser-top {
  height: 48px;

  background: #f8fafc;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 0 20px;
}

.browser-top span {
  width: 12px;

  height: 12px;

  border-radius: 50%;
}

.browser-top span:nth-child(1) {
  background: #ff5f57;
}

.browser-top span:nth-child(2) {
  background: #ffbd2f;
}

.browser-top span:nth-child(3) {
  background: #28ca42;
}

.dashboard-browser img {
  width: 100%;

  display: block;
}
/*==================================================
#
# STATISTIC
#
==================================================*/

.statistic {
  padding: 140px 0;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  color: #fff;
}

.statistic .section-title {
  color: #fff;
}

.statistic .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.statistic-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;

  margin-top: 70px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  border-radius: 24px;

  padding: 40px;

  text-align: center;

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
  font-size: 48px;

  font-weight: 800;

  margin-bottom: 10px;
}

.stat-card span {
  font-size: 17px;
}

/*==================================================
#
# ADVANTAGE
#
==================================================*/

.advantage {
  padding: 140px 0;

  background: #fff;
}

.advantage-wrapper {
  display: grid;

  grid-template-columns: 50% 50%;

  gap: 60px;

  align-items: center;
}

.advantage-content h2 {
  font-size: 48px;

  font-weight: 800;

  margin: 25px 0;
}

.advantage-content p {
  color: var(--text-light);
}

.advantage-list {
  margin-top: 50px;
}

.advantage-item {
  display: flex;

  gap: 20px;

  margin-bottom: 35px;
}

.advantage-item i {
  width: 60px;

  height: 60px;

  border-radius: 18px;

  background: #dbeafe;

  color: var(--primary);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 24px;

  flex-shrink: 0;
}

.advantage-item h5 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 8px;
}
.advantage-image {
  text-align: center;
}

.advantage-image img {
  width: 420px;

  margin: auto;
}
/*==================================================
#
# FAQ
#
==================================================*/

.faq {
  padding: 140px 0;

  background: #f8fbff;
}

.accordion {
  max-width: 900px;

  margin: 70px auto 0;
}

.accordion-item {
  border: none;

  border-radius: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.accordion-button {
  font-size: 18px;

  font-weight: 700;

  padding: 28px;
}

.accordion-button:not(.collapsed) {
  background: #2563eb;

  color: #fff;
}

.accordion-body {
  padding: 28px;

  color: #64748b;
}
/*==================================================
#
# CTA
#
==================================================*/

.cta {
  padding: 140px 0;

  background: #fff;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb, #38bdf8);

  border-radius: 40px;

  padding: 90px;

  text-align: center;

  color: #fff;

  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.25);
}

.cta-box h2 {
  font-size: 52px;

  font-weight: 800;

  margin: 25px 0;
}

.cta-box p {
  max-width: 700px;

  margin: auto;

  color: rgba(255, 255, 255, 0.85);
}

.cta-button {
  margin-top: 45px;
}

/*==================================================
#
# FOOTER
#
==================================================*/

.footer {
  background: #0f172a;

  color: #fff;

  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 50px;
}

.footer h5 {
  margin-bottom: 20px;

  font-weight: 700;
}

.footer a {
  display: block;

  color: #cbd5e1;

  margin-bottom: 12px;
}

.footer a:hover {
  color: #fff;
}

.footer hr {
  margin: 50px 0;

  border-color: rgba(255, 255, 255, 0.1);
}

.copyright {
  text-align: center;

  color: #94a3b8;
}

/*==================================================
#
# RESPONSIVE
#
==================================================*/
/*==================================================
#
# RESPONSIVE
#
==================================================*/

/* ==============================
   TABLET
================================*/
@media (max-width: 991px) {

    .landing-navbar{
        background:#fff;
        box-shadow:0 10px 30px rgba(0,0,0,.05);
    }

    .navbar-collapse{
        margin-top:20px;
        padding:20px;
        border-radius:20px;
        background:#fff;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    .nav-link{
        margin:12px 0;
    }

    .navbar-action{
        display:flex;
        gap:12px;
        margin-top:20px;
    }

    .navbar-action .btn{
        flex:1;
        margin:0;
        padding:14px 20px;
        text-align:center;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .workflow-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .statistic-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .dashboard-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .dashboard-content{
        text-align:center;
    }

    .dashboard-list{
        display:inline-flex;
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
        margin:auto;
    }

    .advantage-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .advantage-content{
        text-align:center;
    }

    .advantage-item{
        text-align:left;
    }

}


/* ==============================
   MOBILE
================================*/
@media (max-width:768px){

    section{
        padding:80px 0;
    }
    .btn-register{
        margin-bottom:5px;
    }

    .hero{

        padding-top:120px;
        padding-bottom:60px;
        min-height:auto;
        overflow:hidden;

    }

    .hero-wrapper{

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:40px;
        min-height:auto;

    }

    .hero-content{

        width:100%;
        max-width:100%;
        text-align:center;

    }

    .hero-title{

        font-size:clamp(2.4rem,8vw,3.6rem);
        line-height:1.15;

    }

    .hero-description{

        max-width:100%;
        font-size:clamp(.95rem,3vw,1.05rem);
        padding:0;

    }

    .hero-button{

        display:flex;
        flex-direction:column;
        gap:15px;

    }

    .hero-button .btn{

        width:100%;

    }

    .hero-list{

        justify-content:center;
        gap:12px;
        font-size:15px;

    }

    .hero-visual{

        width:100%;
        min-height:auto;

    }

    .hero-image{

        position:relative;
        width:100%;
        height:clamp(340px,70vw,500px);

    }

    .hero-image::before{

        width:320px;
        height:320px;
        left:50%;
        right:auto;
        transform:translateX(-50%);

    }

    .dashboard-preview{

        position:absolute;

        width:min(160%,700px);

        left:50%;
        top:0;

        transform:translateX(-50%) rotate(-4deg);

    }

    .founder{

        position:absolute;

        width:clamp(190px,45vw,280px);

        left:50%;
        right:auto;
        bottom:0;

        transform:translateX(-50%);

    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .workflow-grid{
        grid-template-columns:1fr;
    }

    .workflow-line{
        display:none;
    }

    .statistic-grid{
        grid-template-columns:1fr;
    }

    .dashboard-wrapper{
        gap:40px;
    }

    .section-title{

        margin-bottom:50px;

    }

    .section-title h2{

        font-size:clamp(2rem,6vw,2.8rem);

    }

    .feature-card,
    .workflow-card,
    .stat-card,
    .accordion-item{

        border-radius:20px;

    }

    .feature-card{

        padding:28px;

    }

    .workflow-card{

        padding:30px 24px;

    }

    .stat-card{

        padding:30px;

    }

    .cta-box{

        padding:45px 25px;

        border-radius:28px;

    }

    .cta-box h2{

        font-size:clamp(2rem,7vw,3rem);

    }

    .footer-grid{

        grid-template-columns:1fr;
        gap:35px;
        text-align:center;

    }

}


/* ==============================
   SMALL MOBILE
================================*/
@media (max-width:480px){
     .navbar-action{
        flex-direction:column;
    }

    .navbar-action .btn{
        width:100%;
    }

    .hero-image{

        height:340px;

    }

    .dashboard-preview{

        width:175%;

    }

    .founder{

        width:200px;

    }

    .hero-list{

        flex-direction:column;
        gap:10px;

    }

    .section-title{

        margin-bottom:40px;

    }

    .feature-card,
    .workflow-card,
    .stat-card{

        padding:24px;

    }

}