/* ===== HERO ===== */

.hero-container {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #3f51b5 0%, #1a237e 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

/* .hero-title {
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #df2020;
} */

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 25px;
}

.hero-buttons .hero-btn {
    margin: 0 10px;
}

/* ===== CARDS ===== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.card {
    padding: 24px;
    background: var(--md-surface);
    border-radius: 16px;
    box-shadow: var(--md-shadow-z2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card ul li {
  margin: 0 !important;
}

.card img {
    /* width: 100%; */
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.cards-scroll-company {
    flex: 0 0 260px;
    background: var(--md-surface);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--md-shadow-z2);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cards-scroll-company img {
    height: 100px;
}

.card.title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;

    /* font-weight: bold; */
}

.card h2 {
    margin-top: 0;
}

.card p {
    margin-bottom: 20px;
}

.card.popular {
    border: 2px solid var(--md-primary-fg-color);
}

.card .md-button {
    width: 100%;
}

.cards-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    /* Firefox */
}

.scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cards-scroll::-webkit-scrollbar {
  height: 0; /* Chrome/Edge */
  display: none; /* Hoặc height: 0; */
}

.cards-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}



/* Nút cuộn trái/phải */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.scroll-btn.left {
    left: -10px;
}

.scroll-btn.right {
    right: -10px;
}


/* Hide footer only on home */
.md-page.home .md-footer {
    display: none;
}

/* Hide navigation & TOC better on home */
.md-page.home .md-sidebar {
    display: none !important;
}


.workflow-container {
  width: 100%;
  display: flex;
  justify-content: center; 
  margin: 40px 0;
}

.workflow {
  display: flex;
  align-items: center;
  gap: 30px;
}

.step {
    flex: 1; 
    height: 300px;
    padding: 24px;
    background: var(--md-surface);
    border-radius: 16px;
    box-shadow: var(--md-shadow-z2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.step h3 {
    margin-top: auto;            
    margin-bottom: 30px;
}
.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    background: var(--md-primary-fg-color);
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    margin: 10px 0 0;
    font-weight: bold;
}

.arrow {
  width: 40px;
  height: 2px;
  background: #888;
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -5px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #888;
}
/* 
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.pricing-card {
    background: var(--md-surface);
    border-radius: 16px;
    box-shadow: var(--md-shadow-z2);
    padding: 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--md-shadow-z4);
}


.pricing-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-price {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--md-primary-fg-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    margin: 8px 0;
}

.pricing-card .md-button {
    width: 100%;
} */