:root {
    --primary-color: #ff5722;
    --primary-dark: #e64a19;
    --primary-light: #ffccbc;
    --secondary-color: #2196f3;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --gray-light: #f5f5f5;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a i {
    font-size: 1.1rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    margin-left: 1rem;
}

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

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('/images/pattern.svg') repeat;
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--gray-light);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgb(156, 106, 106);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.timeline {
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 50px);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    margin-left: auto;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 5px -5px 5px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: auto;
    left: -10px;
    box-shadow: -5px 5px 5px rgba(0,0,0,0.05);
}

.timeline-content .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.timeline-content .feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Timeline Hover Effects */
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-number {
        left: 40px;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px;
        margin-right: 0;
    }

    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -10px;
        right: auto;
        box-shadow: -5px 5px 5px rgba(0,0,0,0.05);
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('/images/pattern.svg') repeat;
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .cta-button:hover {
    background-color: transparent;
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        align-items: stretch;
        margin-top: 1.2rem;
    }
    .cta-button {
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
        border-radius: 16px;
        margin: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .cta-button.secondary {
        margin-left: 0;
    }
    .cta-button i {
        font-size: 1.1em;
        margin: 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100vw;
        background: var(--white);
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 2rem 0 1.5rem 0;
        z-index: 1200;
        transition: all 0.3s cubic-bezier(.4,2,.6,1);
        border-radius: 0 0 18px 18px;
        animation: slideDownNav 0.3s;
    }
    .nav-links.active {
        display: flex;
    }
    @keyframes slideDownNav {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1300;
        margin-left: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        background: var(--gradient);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Image Slider */
.image-slider {
    margin: 2rem auto 4rem;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.slider-btn i {
    font-size: 1.2rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Slider Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .image-slider {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .slider-container {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn i {
        font-size: 1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }

    .section-label {
        font-size: 0.9rem;
    }

    .section-description {
        font-size: 1.1rem;
    }
}

/* Video Demo */
.video-demo {
    margin: 2rem auto 4rem;
    max-width: 1200px;
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .video-demo {
        margin: 1.5rem auto 3rem;
    }
}

.nav-buttons { display: flex; align-items: center; gap: 1rem; }
.mobile-only { display: none !important; }
@media (max-width: 768px) {
  .nav-buttons { display: none !important; }
  .mobile-only { display: block !important; }
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background-color: var(--gray-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

/* Footer Logo */
.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    .logo {
        margin-bottom: 0.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav-buttons {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .nav-button {
        width: auto;
        min-width: 110px;
        max-width: 160px;
        text-align: center;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .nav-links {
        display: none;
    }
    /* Hamburger menu placeholder */
    .navbar .hamburger {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 1.2rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1100;
    }

    /* Hero Section */
    .hero {
        padding: 2rem 1rem;
    }

    .hero-content {
        text-align: center;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .trust-badges {
        justify-content: center;
    }

    /* Stats Section */
    .stats {
        padding: 2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-demo {
        margin: 0 1rem;
    }

    /* Features Section */
    .features {
        padding: 2rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header {
        text-align: center;
    }

    /* Image Slider */
    .image-slider {
        margin: 1rem;
    }

    .slider-container {
        height: 300px;
    }

    .slide img {
        padding: 10px;
    }

    /* How It Works Section */
    .how-it-works {
        padding: 2rem 1rem;
    }

    .timeline {
        padding: 0 1rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-number {
        margin: 0 auto 1rem;
    }

    /* FAQ Section */
    .faq {
        padding: 2rem 1rem;
    }

    .faq-list {
        padding: 0 1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-content {
        text-align: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section ul {
        align-items: center;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Adjust AOS animations for mobile */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Tambahkan hamburger menu default hidden di desktop */
.hamburger {
    display: none;
}

.mobile-only { display: none; }
.desktop-only { display: block; }
@media (max-width: 768px) {
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }
  .hero-content { width: 100%; }
  .hero-content h1 { margin-top: 60px; }
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-button.login {
  background: none;
  color: var(--text-dark);
  border: none;
  font-weight: 500;
  border-radius: 50px;
}

.nav-button.login:hover {
  color: var(--primary-color);
  background-color: rgba(33, 150, 243, 0.1);
}

.nav-button.get-started {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s;
  text-decoration: none !important;
}

.nav-button.get-started:hover {
  background-color: var(--primary-dark);
}

.nav-button i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .trust-badge.dark {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.2rem 1rem 1rem 1rem;
    border-radius: 24px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .trust-badge.dark .count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd600;
    margin-bottom: 0.3rem;
  }
  .trust-badge.dark .rating {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .trust-badge.dark .text {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
    display: block;
  }
  .trust-badge.dark .avatar-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    max-width: 180px;
  }
  .trust-badge.dark .testimonial-image {
    height: 32px;
    object-fit: cover;
  }
  .trust-badge.dark .more-users {
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.95rem;
    border-radius: 50%;
    padding: 0.2rem 0.7rem;
    margin-left: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    border: 2px solid #fff;
  }
} 