:root {
    --bg: #f3f8f2;
    --surface: #ffffff;
    --text: #243025;
    --muted: #5f6f61;
    --brand: #2f6b3a;
    --brand-dark: #1f4c29;
    --wood: #7b5433;
    --wood-dark: #5f3e24;
    --line: #dce7dc;
    --hero-side-width: 150px;
    --card-title-lines: 2;
    --card-desc-lines: 3;
    --card-title-lh: 1.35;
    --card-desc-lh: 1.6;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container {
    width: min(1180px, 94%);
    margin: 0 auto;
}
.header {
    background: #fffc5b;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}
.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff, #f5faf5);
    border: 1px solid #d6e3d6;
    border-radius: 14px;
    padding: 8px 12px 8px 8px;
    box-shadow: 0 8px 20px rgba(31, 76, 41, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2f6b3a 0%, #7b5433 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.42);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--wood-dark);
    letter-spacing: 0.2px;
}
.logo-sub {
    font-size: 12px;
    color: #466148;
    font-weight: 600;
    margin-top: 3px;
}
.logo-wrap:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(31, 76, 41, 0.14);
}
.menu {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.menu a,
.menu-link {
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: bold !important;
    color: #2f3e31;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
}
.menu a:hover,
.menu-link:hover { background: #ebf4ec; }
.menu-item {
    position: relative;
}
.menu-parent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
}
.menu-parent::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}
.has-dropdown.is-open .menu-parent {
    background: #f0f0f0;
    color: #123016;
}
.has-dropdown.is-open .menu-parent::after {
    transform: rotate(225deg) translateY(-1px);
}
.has-dropdown.is-open::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
    z-index: 31;
}
.menu-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(10, 20, 12, 0.12);
    padding: 8px;
    display: none;
    z-index: 30;
}
.has-dropdown.is-open .menu-dropdown {
    display: block;
}
.menu-dropdown a {
    display: block;
    width: 98%;
    padding: 9px 0px;
    border-radius: 8px;
    font-weight: 500;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 9px 8px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #374151;
    border-radius: 6px;
    margin: 4px 0;
}
.cta {
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    background: var(--brand);
    font-weight: 700;
}
.cta:hover { background: var(--brand-dark); }
.hero {
    padding: 14px 0 26px;
    overflow-x: clip;
}
.hero-carousel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 620px;
    display: grid;
    grid-template-columns: var(--hero-side-width) minmax(0, 1fr) var(--hero-side-width);
    gap: 10px;
    align-items: center;
}
.slide-indicator{
    display: none;
}
.hero-side {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #dbe3db;
    height: calc(100% - 96px);
    width: 100%;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.hero-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.42);
}
.hero-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-main {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    height: 100%;
    width: 88%;
    justify-self: center;
    touch-action: pan-y;
    cursor: grab;
}
.hero-main.is-pointer-down {
    cursor: grabbing;
}
.hero-track {
    width: 300%;
    height: 100%;
    display: flex;
    transform: translateX(-33.3333%);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.hero-track-image {
    width: 33.3333%;
    height: 100%;
    flex: 0 0 33.3333%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}
.hero-main.is-fade .hero-track {
    width: 100%;
    transform: none;
    transition: none;
}
.hero-main.is-fade .hero-track-image {
    width: 100%;
    flex: 0 0 100%;
}
.hero-main.is-fade #trackPrev,
.hero-main.is-fade #trackNext {
    display: none;
}
.hero-main.is-fade #trackCurrent {
    transition: opacity 360ms ease;
}
.hero-main.is-fade #trackCurrent.is-fading-out {
    opacity: 0;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.hero-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.hero-arrow-left { left: 10px; }
.hero-arrow-right { right: 10px; }
.hero-meta {
    padding-top: 12px;
}
.hero-meta h1 {
    margin: 0;
    font-size: 32px;
    color: #1f2f22;
}
.hero-meta p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 760px;
}
.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.btn-main,
.btn-sub {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
}
.btn-main { background: var(--wood); color: #fff; }
.btn-main:hover { background: var(--wood-dark); }
.btn-sub { background: rgba(47, 107, 58, 0.28); color: #fff; border: 1px solid rgba(255, 255, 255, 0.55); }
.hero-nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.slide-indicator { color: var(--muted); font-size: 14px; }
.slide-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-main .slide-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 6;
}
.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #c9d8ca;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.slide-dot.is-active {
    width: 24px;
    background: var(--brand);
}
.intro-seo {
    padding: 16px 0 8px;
    position: relative;
}
.intro-seo::before {
    content: "";
    display: block;
    width: min(920px, 100%);
    margin: 0 auto 12px;
    border-top: 1px solid #cfdccf;
}
.intro-seo-inner {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 22px;
}
.intro-seo-kicker {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--wood);
    font-weight: 700;
    text-align: center;
}
.intro-seo h2 {
    margin: 8px 0 12px;
    line-height: 1.35;
    font-size: 28px;
    color: #223327;
    text-align: center;
}
.intro-seo p {
    margin: 0 0 12px;
    line-height: 1.65;
    color: #33463a;
    font-size: 19px;
}
.intro-seo-list {
    margin: 0;
    padding-left: 20px;
    color: #2f4135;
    line-height: 1.6;
    font-size: 19px;
}
.intro-seo-list li + li {
    margin-top: 6px;
}
.section {
    padding: 24px 0 36px;
}
.section-services {
    position: relative;
    text-align: center;
}
.section h2 { margin: 0 0 14px; font-size: 24px; text-align: center;}
.section-services h2,
.section-news h2,
.section-why h2 {
    position: relative;
    display: inline-block;
    margin: 0 auto 14px;
    padding: 10px 24px;
    border: 1px solid #686868;
    color: #2d2d2d;
}
.section-services h2::before,
.section-services h2::after,
.section-news h2::before,
.section-news h2::after,
.section-why h2::before,
.section-why h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(30vw, 320px);
    border-top: 1px solid #474747;
}
.section-services h2::before,
.section-news h2::before,
.section-why h2::before {
    right: calc(100% + 14px);
}
.section-services h2::after,
.section-news h2::after,
.section-why h2::after {
    left: calc(100% + 14px);
}
.services-subtitle {
    margin: 0 auto 18px;
    max-width: 760px;
    text-align: center;
    color: var(--muted);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    align-items: stretch;
}
.service-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(23, 53, 29, 0.12);
}
.service-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-thumb {
    aspect-ratio: 16 / 10;
    background: #e7efe7;
    overflow: hidden;
}
.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.service-item:hover .service-thumb img {
    transform: scale(1.04);
}
.service-content {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 190px;
    text-align: left;
}
.service-item h3 {
    margin: 0;
    font-size: 19px;
    line-height: var(--card-title-lh);
    min-height: calc(var(--card-title-lines) * 1em * var(--card-title-lh));
    display: -webkit-box;
    -webkit-line-clamp: var(--card-title-lines);
    line-clamp: var(--card-title-lines);
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: var(--card-desc-lh);
    flex: 1;
    min-height: calc(var(--card-desc-lines) * 1em * var(--card-desc-lh));
    display: -webkit-box;
    -webkit-line-clamp: var(--card-desc-lines);
    line-clamp: var(--card-desc-lines);
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
}
.service-more::after {
    content: "\2192";
}
.section-news {
    position: relative;
    text-align: center;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.section-why {
    position: relative;
    text-align: center;
}
.why-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
}
.why-image-col {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}
.why-image-col img {
    width: 100%;
    height: 410px;
    display: block;
}
.why-content-col h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.35;
    color: #1f2f22;
    text-align: left;
}
.why-content-col p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #314438;
    text-align: left;
}
.why-list {
    margin: 0;
    padding-left: 18px;
    color: #314438;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}
.why-list li + li {
    margin-top: 8px;
}
.section-commitment {
    position: relative;
}
.section-commitment::before {
    content: "";
    display: block;
    width: min(920px, 100%);
    margin: 0 auto 14px;
    border-top: 1px solid #cfdccf;
}
.section-commitment h2 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
}
.commitment-text {
    max-width: 980px;
}
.commitment-text p {
    margin: 0 0 12px;
    color: #2f4135;
    font-size: 17px;
    line-height: 1.75;
}
.commitment-title {
    margin: 8px 0 10px;
    font-size: 24px;
    line-height: 1.3;
    color: #1f2f22;
}
.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 980px;
}
.commitment-list li {
    margin: 0 0 10px;
    color: #2f4135;
    font-size: 17px;
    line-height: 1.75;
    position: relative;
    padding-left: 16px;
}
.commitment-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #1f2f22;
    font-weight: 700;
}
.news-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(23, 53, 29, 0.12);
}
.news-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-thumb {
    aspect-ratio: 16 / 10;
    background: #e7efe7;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 220px;
    text-align: left;
}
.news-meta {
    margin: 0;
    font-size: 13px;
    color: #748477;
}
.news-featured-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #92400e;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 999px;
    vertical-align: middle;
}
.news-item h3 {
    margin: 0;
    font-size: 19px;
    line-height: var(--card-title-lh);
    min-height: calc(var(--card-title-lines) * 1em * var(--card-title-lh));
    display: -webkit-box;
    -webkit-line-clamp: var(--card-title-lines);
    line-clamp: var(--card-title-lines);
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: var(--card-desc-lh);
}
/* Mô tả blog trên trang chủ: ngắn gọn, tối đa 2 dòng */
.section-news .news-content > p.news-excerpt {
    flex: 0 1 auto;
    min-height: 0;
    max-height: calc(2em * var(--card-desc-lh));
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
}
.news-content > p:nth-of-type(2):not(.news-excerpt) {
    flex: 1;
    min-height: calc(var(--card-desc-lines) * 1em * var(--card-desc-lh));
    display: -webkit-box;
    -webkit-line-clamp: var(--card-desc-lines);
    line-clamp: var(--card-desc-lines);
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
}
.news-more::after {
    content: "\2192";
}
.footer {
    margin-top: 22px;
    background: linear-gradient(180deg, #173a1f 0%, #123016 100%);
    color: #e8f3e9;
    padding: 36px 0 14px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(232, 243, 233, 0.18);
}
.footer-col h3,
.footer-col h4 {
    margin: 0 0 10px;
    color: #fff;
}
.footer-col h3 {
    font-size: 23px;
}
.footer-col h4 {
    font-size: 18px;
}
.footer-col p {
    margin: 0 0 10px;
    color: #d2e5d4;
    line-height: 1.65;
}
.footer-hotline {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    margin-top: 6px;
}
.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li,
.footer-contact li {
    margin: 0 0 8px;
    color: #d2e5d4;
    line-height: 1.6;
}
.footer-links a {
    color: #d2e5d4;
}
.footer-links a:hover,
.footer-hotline:hover {
    color: #ffffff;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.social-icon i {
    font-size: 14px;
}
.social-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.22);
    opacity: 0.95;
    text-decoration: none;
}
.social-icon.facebook { background: #1877f2; }
.social-icon.zalotalk { background: #0068ff; }
.social-icon.gmail { background: #ea4335; }
.footer-bottom {
    padding-top: 12px;
    text-align: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #bdd6c0;
}
.floating-contact {
    position: fixed;
    right: 16px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: floatingShakeStrong 2.2s ease-in-out infinite, floatingPulse 2.2s ease-in-out infinite;
}
.floating-btn i {
    font-size: 20px;
}
.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
    text-decoration: none;
}
.floating-zalo { background: #0068ff; }
.floating-phone { background: #d72618; }
.floating-facebook { background: #1877f2; }
.floating-zalo { animation-delay: 0s, 0s; }
.floating-phone { animation-delay: 0.2s, 0.2s; }
.floating-facebook { animation-delay: 0.4s, 0.4s; }

@keyframes floatingShakeStrong {
    0%, 100% { transform: translateX(0) rotate(0deg) scale(1); }
    8% { transform: translateX(-2px) rotate(-6deg) scale(1.03); }
    16% { transform: translateX(2px) rotate(6deg) scale(1.03); }
    24% { transform: translateX(-2px) rotate(-5deg) scale(1.02); }
    32% { transform: translateX(2px) rotate(5deg) scale(1.02); }
    40% { transform: translateX(0) rotate(0deg) scale(1); }
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32), 0 0 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36), 0 0 0 8px rgba(255, 255, 255, 0);
    }
}
@media (max-width: 1024px) {
    :root {
        --hero-side-width: 80px;
    }
    .hero-carousel {
        height: 320px;
        gap: 6px;
    }
    .hero-side {
        height: calc(100% - 52px);
    }
    .hero-arrow {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }
    .hero-meta h1 { font-size: 24px; }
    .hero-meta p { font-size: 14px; }
    .intro-seo-inner { padding: 16px; }
    .intro-seo h2 { font-size: 22px; }
    .intro-seo p { font-size: 15px; }
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-text-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .why-content-col h3 { font-size: 21px; }
    .why-content-col p,
    .why-list { font-size: 15px; }
    .section-commitment h2 { font-size: 27px; }
    .commitment-title { font-size: 24px; }
    .commitment-text p,
    .commitment-list li { font-size: 16px; }
    .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .floating-contact { right: 12px; bottom: 14px; }
    .floating-btn { width: 44px; height: 44px; }
    .floating-btn i { font-size: 18px; }
    .header-inner { height: auto; padding: 12px 0; align-items: center; flex-wrap: wrap; }
    .menu-toggle { display: block; order: 2; }
    .cta { order: 3; width: 100%; text-align: center; }
    .menu {
        display: none;
        order: 4;
        width: 100%;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 8px;
        gap: 6px;
        margin-top: 6px;
    }
    .menu.is-open { display: flex; flex-direction: column; }
    .menu a,
    .menu-link { width: 100%; padding: 10px; }
    .menu-dropdown {
        position: static;
        display: none;
        min-width: 0;
        box-shadow: none;
        border: 0;
        border-left: 2px solid #d8e6d8;
        border-radius: 0;
        margin-left: 10px;
        padding: 4px 0 4px 8px;
    }
    .has-dropdown.is-open .menu-dropdown {
        display: block;
    }
    .menu-dropdown a {
        padding: 8px 8px;
        font-size: 14px;
    }
    .menu-parent {
        text-transform: none;
        letter-spacing: 0;
    }
    .has-dropdown.is-open::after {
        display: none;
    }
    .logo-wrap {
        padding: 6px 10px 6px 6px;
        gap: 10px;
    }
    .logo-mark {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .logo-name { font-size: 16px; }
    .logo-sub { font-size: 11px; }
}
@media (max-width: 640px) {
    .service-grid { grid-template-columns: minmax(0, 1fr); }
    .news-grid { grid-template-columns: minmax(0, 1fr); }
    .why-text-grid { grid-template-columns: minmax(0, 1fr); }
    .section-services h2,
    .section-news h2,
    .section-why h2 {
        font-size: 22px;
        padding: 8px 14px;
    }
    .section-services h2::before,
    .section-services h2::after,
    .section-news h2::before,
    .section-news h2::after,
    .section-why h2::before,
    .section-why h2::after {
        width: min(12vw, 46px);
    }
    .why-content-col h3 { font-size: 19px; }
    .why-content-col p,
    .why-list { font-size: 14px; }
    .section-commitment h2 { font-size: 23px; }
    .commitment-title { font-size: 20px; }
    .commitment-text p,
    .commitment-list li { font-size: 15px; }
    .footer-top { grid-template-columns: minmax(0, 1fr); }
    .footer-col h3 { font-size: 21px; }
    .footer-col h4 { font-size: 17px; }
}
