/* Global Styles */
:root {
    --purple-primary: #5E17EB;
    --purple-dark: #3A0CA3;
    --purple-light: #9D7AFF;
    --yellow-primary: #FFDE5B;
    --yellow-light: #FFF3C2;
    --dark: #1A0033;
    --light: #FAF7FF;
    --gray: #E5E0EC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-purple {
    color: var(--purple-primary);
}

.text-yellow {
    color: var(--yellow-primary);
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, var(--yellow-light) 60%);
    padding: 0 3px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
 /*   display: flex; */
 /*   align-items: center; */
    gap: 10px;
    text-decoration: none;
    font-size: 2em; /* Sesuaikan ukuran font */
    font-family: 'Arial', sans-serif;
    display: inline-flex;  /* Memastikan keduanya berada dalam satu baris */
    align-items: center;  /* Menjaga keduanya sejajar secara vertikal */
}

.kelar {
    color: #FFB800; /* Kuning */
    font-weight: bold; /* Membuat kelar tebal (bold) */
}

.dot-in {
    color: #9B1DBE; /* Ungu */
    font-weight: bold; /* Membuat kelar tebal (bold) */
}

.kelar, .dot-in {
    margin: 0;            /* Pastikan tidak ada margin yang memisahkan */
    padding: 0;
    right: 0;
    left: 0;           /* Pastikan tidak ada padding tambahan */
}
.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--purple-primary);
}

.logo-domain {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--yellow-primary);
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

nav a:hover {
    color: var(--purple-primary);
}

.cta-button {
    display: inline-block;
    background-color: var(--yellow-primary);
    color: var(--purple-dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(94, 23, 235, 0.2);
}

.cta-button:hover {
    background-color: #fff;
    color: var(--purple-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(94, 23, 235, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--purple-primary);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background-color: var(--light);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #FAF7FF 0%, #FFFFFF 100%);
}

.dashboard-preview {
    position: relative;
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.1);
}

.dashboard-svg {
    width: 100%;
    height: auto;
    max-width: 800px;
}

.dashboard-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.dashboard-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 222, 91, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.dashboard-features .icon {
    font-size: 1.2rem;
}

/* Animasi untuk dashboard */
.dashboard-svg path,
.dashboard-svg rect:not(:first-child),
.dashboard-svg circle:not(:first-child) {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.dashboard-svg path {
    animation-delay: 0.3s;
}

.dashboard-svg rect:nth-child(2) {
    animation-delay: 0.5s;
}

.dashboard-svg rect:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-preview {
        padding: 15px;
    }
    
    .dashboard-features {
        flex-wrap: wrap;
    }
}

.secondary-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--purple-primary);
    border-radius: 8px;
    font-weight: 600;
    color: var(--purple-primary);
    transition: all 0.3s;
    text-decoration: none;
}

.secondary-button:hover {
    background-color: var(--purple-primary);
    color: white;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.stars {
    color: var(--yellow-primary);
    font-size: 1.2rem;
}

.trust-badge span {
    font-size: 0.9rem;
    color: #555;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(94, 23, 235, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--purple-primary);
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 70px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--yellow-primary);
    color: var(--purple-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-content {
    padding-top: 5px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--purple-primary);
}

.step p {
    color: #555;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}
.pricing h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.price-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(94, 23, 235, 0.1);
}

.price-card.popular {
    border: 2px solid var(--yellow-primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--yellow-primary);
    color: var(--purple-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--purple-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li:before {
    content: "✓";
    color: var(--yellow-primary);
    font-weight: bold;
}

.price-card .cta-button {
    display: block;
    text-align: center;
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light);
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.contact-container {
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--purple-primary);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info p strong {
    color: var(--purple-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--purple-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 250px;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--yellow-primary);
}

.link-group a {
    display: block;
    color: white;
    margin-bottom: 10px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.link-group a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .trust-badge {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .features-grid,
    .steps,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .step {
        padding-left: 60px;
    }
}
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}