/* ===============================
   ROOT COLOR SYSTEM
================================= */
:root{
    --primary:#F0373D;
    --primary-dark:#d92f34;
    --accent:#FF8A00;
    --dark:#1F2937;
    --gray:#6B7280;
    --light:#F9FAFB;
    --border:#E5E7EB;
    --white:#ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-padding-top: 80px;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--light);
    color:var(--dark);
    line-height:1.6;
}

/* ===============================
   NAVBAR
================================= */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:var(--primary);
    color:#fff;
    position:sticky;
    top:0;
    z-index:999;
}

.logo img{
    height:42px;
}


/* ACTIVE MENU */
.nav-link {
  position: relative;
  color: #333;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.nav-link.active {
  color: #ef4444;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ef4444;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    display: none;
    padding: 20px;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.menu a{
    color:#fff;
    text-decoration:none;
    margin:0 12px;
    font-weight:500;
    transition:0.3s;
}

.menu a:hover{
    opacity:0.8;
}



/* CTA NAV */
.btn-primary{
    background:var(--accent);
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    color:#fff !important;
    transition:0.3s;
}

.btn-primary:hover{
    background:#e67600;
}

/* ===============================
   HERO
================================= */
/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    background: url('assets/img/header.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* overlay terang (bukan gelap lagi) */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.7),
        rgba(240,55,61,0.15)
    );
}

/* efek glow merah premium */
.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(240,55,61,0.2);
    filter: blur(120px);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

/* konten */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 20px;
    animation: fadeUp 1s ease;
}

/* badge kecil */
.badge {
    display: inline-block;
    background: rgba(240,55,61,0.1);
    color: #F0373D;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* headline */
.hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* subtitle */
.subtitle {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* CTA container */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* CTA utama */
.cta-primary {
    background: #F0373D;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(240,55,61,0.4);
    transition: 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    background: #d92c31;
}

/* CTA secondary */
.cta-secondary {
    border: 2px solid #F0373D;
    color: #F0373D;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-secondary:hover {
    background: #F0373D;
    color: #fff;
}

/* animasi */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive */
@media (max-width: 768px) {
    .hero {
        height: 85vh;
    }

    .hero h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }
}
/* ===============================
   TRUST
================================= */
.trust{
    background:#fff;
    text-align:center;
    padding:50px 20px;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.trust p{
    margin-bottom:20px;
    color:var(--gray);
}

.logos img{
    margin:10px;
    opacity:0.5;
    height:40px;
}

/* ===============================
   PROBLEM
================================= */
.problem{
    padding:70px 8%;
}

.problem h2{
    text-align:center;
    margin-bottom:40px;
    font-size:28px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    text-align:center;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    margin-bottom:10px;
    color:var(--primary);
}

/* ===============================
   SOLUTION
================================= */
.solution{
    display:flex;
    align-items:center;
    padding:70px 8%;
    gap:40px;
}

.solution img{
    width:420px;
    border-radius:10px;
}

.solution h2{
    margin-bottom:15px;
}

.solution ul{
    margin-top:15px;
}

.solution li{
    margin-bottom:10px;
    color:var(--gray);
}

/* ===============================
   LEAD FORM
================================= */
.lead{
    background:#fff;
    padding:70px 20px;
    text-align:center;
    border-top:1px solid var(--border);
}

.lead h2{
    margin-bottom:20px;
}

.lead input{
    width:260px;
    padding:12px;
    margin:10px;
    border:1px solid var(--border);
    border-radius:8px;
    transition:0.2s;
}

.lead input:focus{
    border-color:var(--primary);
    outline:none;
}

/* BUTTON FORM */
.lead button{
    padding:12px 28px;
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.lead button:hover{
    background:var(--primary-dark);
}

/* RESULT */
#result{
    margin-top:15px;
    font-weight:500;
}

/* ===============================
   FOOTER
================================= */
footer{
    text-align:center;
    padding:25px;
    background:var(--dark);
    color:#aaa;
    font-size:14px;
}


/* ===============================
   RESPONSIVE
================================= */
@media(max-width:768px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-text{
        max-width:100%;
    }

    .solution{
        flex-direction:column;
        text-align:center;
    }

    .menu{
        display:none;
    }
}











.problem .highlight {
    border: 2px solid #F0373D;
    background: rgba(240,55,61,0.05);
}
.section-header {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header .subtitle {
    margin-left: auto;
    margin-right: auto;
}



.solusi {
    padding: 80px 20px;
    background: #f8f9fa;
}

.solusi .container {
    max-width: 1100px;
    margin: auto;
}

.solusi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.solusi-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.solusi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.solusi-item .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.solusi-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.solusi-item p {
    font-size: 14px;
    color: #6c757d;
}

.solusi-cta {
    text-align: center;
    margin-top: 50px;
}

.solusi-cta h3 {
    margin-bottom: 15px;
}

.btn-primary {
    background: #ff6600; /* sesuaikan dengan branding kamu */
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e65c00;
}

/* responsive */
@media (max-width: 768px) {
    .solusi-grid {
        grid-template-columns: 1fr;
    }
}
















/*FITUR*/
.features-section {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

.section-header p {
  color: #6b7280;
  margin-top: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.feature-card i {
  font-size: 28px;
  color: #ef4444;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

/* Gradient Glow */
.feature-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(239,68,68,0.08), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}


.pricing-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff, #fff5f5);
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 900px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
}

.section-header p {
  color: #6b7280;
  margin-top: 10px;
}

.pricing-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 25px;
  max-width: 600px;
  margin: auto;
  text-align: left;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Badge */
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ef4444;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* Price */
.price {
  text-align: center;
  margin: 20px 0;
}

.price h1 {
  font-size: 50px;
  color: #ef4444;
}

.price .small {
  font-size: 14px;
  color: #6b7280;
}

.billing {
  text-align: center;
  color: #9ca3af;
  margin-bottom: 20px;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.feature-list li {
  margin-bottom: 18px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.feature-list strong {
  color: #111827;
}

/* Buttons */
.btn {
  display: block;
  padding: 14px;
  margin: 10px 0;
  border-radius: 40px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #ef4444;
  color: #fff;
}

.btn.secondary {
  background: #f3f4f6;
  color: #111;
}

/* Note */
.pricing-note {
  margin-top: 20px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

