/* ========================================
   EMBRAIZ / PCBBN — Main Styles
   ======================================== */

:root {
    --brand: #a3d133;
    --brand-dark: #8ab82a;
    --brand-light: #f4f9e8;
    --dark: #1a1a1b;
    --text: #222222;
    --text-muted: #666666;
    --border: #e8e8e8;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --header-h: 76px;
    --font: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s, background 0.25s, border-color 0.25s, opacity 0.25s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2.5rem;
    position: relative;
}

.section-header {
    margin-bottom: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.btn-brand {
    background: var(--brand);
    color: var(--dark);
    border: 2px solid var(--brand);
}

.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 209, 51, 0.4);
}

.btn-outline-brand {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--brand);
}

.btn-outline-brand:hover {
    background: var(--brand);
    color: var(--dark);
}

.btn-outline-dark {
    background: var(--white);
    color: var(--dark);
    border: 2px solid #ddd;
}

.btn-outline-dark:hover {
    border-color: var(--dark);
    color: var(--dark);
    background: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.link-more {
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.link-more:hover {
    color: var(--brand);
    gap: 0.6rem;
}

.text-brand {
    color: var(--brand);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
    height: var(--header-h);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.site-header .navbar {
    padding: 0;
    height: var(--header-h);
}

.site-header .container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-img-light {
    filter: brightness(0) invert(1);
}

.navbar-brand {
    margin-right: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-dark);
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
}

.btn-consult {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.navbar-toggler {
    border: none;
    padding: 0.4rem;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,26,27,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    padding-top: var(--header-h);
    margin-bottom: 80px;
}

.hero-swiper {
    width: 100%;
}

.hero-slide {
    min-height: calc(100vh - var(--header-h) - 60px);
    max-height: 720px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 40%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 3rem 0 6rem;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.tag-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--brand);
    border-radius: 2px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-pagination {
    bottom: 100px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--brand);
    width: 28px;
    border-radius: 5px;
}

/* Floating feature bar */
.hero-features-wrap {
    position: relative;
    z-index: 10;
    margin-top: -70px;
}

.hero-features {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.75rem 1.5rem;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0 0.75rem;
    border-right: 1px solid var(--border);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--dark);
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Services ---------- */
.section-services {
    padding: 100px 0 80px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.35s, box-shadow 0.35s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 180px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-body {
    padding: 1.5rem 1.35rem 1.75rem;
    position: relative;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--brand);
    color: var(--dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: -36px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(163, 209, 51, 0.4);
}

.service-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--dark);
}

.service-body ul {
    margin-bottom: 1.25rem;
}

.service-body ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.service-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
}

/* ---------- Product ---------- */
.section-product {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0f5e8 0%, #e8f0e0 50%, #f5f7f2 100%);
}

.badge-core {
    display: inline-block;
    background: var(--brand);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.product-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.product-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.btn-demo {
    color: var(--dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-demo i {
    color: var(--brand-dark);
    font-size: 1.4rem;
}

.btn-demo:hover {
    color: var(--brand-dark);
}

.product-visual {
    text-align: center;
}

.product-visual img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* ---------- Why Choose Us ---------- */
.section-why {
    padding: 100px 0 80px;
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    border-radius: var(--radius);
    transition: background 0.3s, box-shadow 0.3s;
}

.why-item:hover {
    background: var(--brand-light);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border: 2px solid var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--brand-dark);
    transition: background 0.3s, color 0.3s;
}

.why-item:hover .why-icon {
    background: var(--brand);
    color: var(--dark);
}

.why-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ---------- Cases ---------- */
.section-cases {
    padding: 80px 0 100px;
    background: #fafafa;
}

.cases-swiper {
    padding-bottom: 40px;
}

.cases-swiper .swiper-slide {
    height: auto;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border);
    transition: transform 0.35s, box-shadow 0.35s;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.case-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-card:hover .case-img img {
    transform: scale(1.06);
}

.case-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--brand);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
}

.case-body {
    padding: 1.5rem;
}

.case-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.case-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.cases-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.cases-pagination .swiper-pagination-bullet-active {
    background: var(--brand);
    width: 28px;
    border-radius: 5px;
}

/* ---------- CTA ---------- */
.section-cta {
    background: var(--brand);
    padding: 70px 0;
}

.cta-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 70px;
}

.footer-main {
    padding-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.footer-contact i {
    color: var(--brand);
    margin-top: 0.2rem;
    width: 16px;
}

.footer-qr {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-qr img {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    background: var(--white);
    padding: 4px;
}

.footer-qr span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    background: var(--brand);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1020;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--brand-dark);
    color: var(--dark);
}

/* ========================================
   Inner Pages
   ======================================== */

.page-banner {
    margin-top: var(--header-h);
    padding: 70px 0 60px;
    background: linear-gradient(135deg, rgba(26, 26, 27, 0.78), rgba(26, 26, 27, 0.55)),
        url("../images/banner01.jpg") center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.page-banner .breadcrumb {
    justify-content: center;
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-banner .breadcrumb-item.active {
    color: var(--brand);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

.page-banner-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-banner-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    max-width: 640px;
}

.page-section {
    padding: 80px 0;
}

.page-section.bg-soft {
    background: #fafafa;
}

.page-section.bg-brand-soft {
    background: linear-gradient(135deg, #f0f5e8 0%, #e8f0e0 50%, #f5f7f2 100%);
}

.content-block h2,
.content-block h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.content-block h2 {
    font-size: 1.75rem;
}

.content-block h3 {
    font-size: 1.25rem;
}

.content-block p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.content-block .lead-text {
    font-size: 1.05rem;
    color: var(--text);
}

.side-nav {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.side-nav-title {
    background: var(--dark);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 1.25rem;
    margin: 0;
}

.side-nav-list a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.side-nav-list a:last-child {
    border-bottom: none;
}

.side-nav-list a:hover,
.side-nav-list a.active {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.side-nav-list a i {
    color: var(--brand-dark);
    width: 18px;
    text-align: center;
}

.side-contact {
    margin-top: 1.25rem;
    background: var(--brand);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: var(--dark);
}

.side-contact h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.side-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.side-contact a {
    font-weight: 700;
    font-size: 1.15rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--brand);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
}

.price-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 0.9rem 1rem;
    text-align: left;
}

.price-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: top;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover td {
    background: var(--brand-light);
}

.price-table .price {
    color: var(--brand-dark);
    font-weight: 700;
    white-space: nowrap;
}

.check-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: var(--brand-dark);
    font-size: 0.8rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1.75rem;
    height: 100%;
}

.contact-info-card .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.contact-info-card a:hover {
    color: var(--brand-dark);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border-color: var(--border);
    padding: 0.7rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.2rem rgba(163, 209, 51, 0.25);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.about-stat {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.about-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.2;
}

.about-stat .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.culture-box {
    background: var(--brand-light);
    border-left: 4px solid var(--brand);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
}

.culture-box p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.7;
}

.process-steps {
    counter-reset: step;
}

.process-step {
    position: relative;
    padding-left: 4rem;
    padding-bottom: 1.75rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-step::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-step:last-child::after {
    display: none;
}

.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
