.gcs-wrap,
.gcs-wrap * {
    box-sizing: border-box;
}

.gcs-wrap {
    --gcs-green: #168a58;
    --gcs-green-dark: #0f6f46;
    --gcs-green-deep: #0b5738;
    --gcs-green-soft: #eaf8f1;
    --gcs-mint: #f4fbf7;
    --gcs-text: #17352a;
    --gcs-muted: #64786f;
    width: 100%;
    max-width: 1080px;
    margin: 32px auto;
    padding: 0 16px;
    font-family: inherit;
}

.gcs-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(22,138,88,.12);
    border-radius: 28px;
    background: linear-gradient(180deg,#fff 0%,#fbfefc 100%);
    box-shadow: 0 22px 70px rgba(5,57,36,.13), 0 5px 18px rgba(0,0,0,.04);
}

.gcs-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 28px 38px;
    text-align: center;
    background: linear-gradient(135deg,var(--gcs-green-deep),#1ca968 62%,#5ed59d);
    color: #fff;
}

.gcs-hero::before,
.gcs-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gcs-hero::before {
    width: 260px;
    height: 260px;
    top: -150px;
    right: -75px;
    background: rgba(255,255,255,.08);
}

.gcs-hero::after {
    width: 170px;
    height: 170px;
    bottom: -105px;
    left: -45px;
    background: rgba(255,255,255,.07);
}

.gcs-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border: 7px solid rgba(255,255,255,.95);
    border-radius: 50%;
    background: linear-gradient(145deg,#eafff4,#d8f7e9);
    box-shadow: 0 12px 30px rgba(3,65,39,.22);
    color: var(--gcs-green);
}

.gcs-icon svg { width: 43px; height: 43px; display:block; }

.gcs-eyebrow {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 850;
    color: rgba(255,255,255,.82);
}

.gcs-title {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(24px,3.4vw,34px) !important;
    font-weight: 950 !important;
    line-height: 1.55 !important;
}

.gcs-subtitle {
    max-width: 650px;
    margin: 0 auto !important;
    color: rgba(255,255,255,.84) !important;
    font-size: 14px;
    line-height: 2;
}

.gcs-body { padding: 30px; }

.gcs-search { margin: -4px 0 26px; }

.gcs-search-box {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    padding: 6px 7px 6px 15px;
    border: 1px solid #d8ede3;
    border-radius: 18px;
    background: var(--gcs-mint);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 6px 22px rgba(13,95,59,.06);
}

.gcs-search-box > svg {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    color: var(--gcs-green);
}

.gcs-search-box input[type="search"] {
    min-width: 0;
    flex: 1;
    height: 44px;
    padding: 0 4px;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: var(--gcs-text) !important;
    font-family: inherit;
    font-size: 14px;
}

.gcs-search-box input::placeholder { color:#91a59c; }

.gcs-search-box button {
    min-width: 94px;
    height: 44px;
    padding: 0 18px;
    border: 0 !important;
    border-radius: 13px !important;
    background: linear-gradient(135deg,#1daf63,#15884f) !important;
    color: #fff !important;
    box-shadow: 0 7px 18px rgba(22,138,88,.22);
    font-family: inherit;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.gcs-search-box button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 10px 24px rgba(22,138,88,.28);
}

.gcs-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.gcs-car {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid #dceee5;
    border-radius: 18px;
    background: #fff;
    color: var(--gcs-text) !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(13,95,59,.055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.gcs-car:hover,
.gcs-car:focus-visible {
    transform: translateY(-3px);
    border-color: #b9dfcc;
    background: var(--gcs-mint);
    box-shadow: 0 13px 28px rgba(13,95,59,.12);
    text-decoration: none !important;
    outline: none;
}

.gcs-car-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--gcs-green-soft);
    color: var(--gcs-green);
    transition: transform .2s ease, background .2s ease;
}

.gcs-car:hover .gcs-car-icon { transform: scale(1.05); background:#dbf4e8; }
.gcs-car-icon svg { width:27px; height:27px; display:block; }

.gcs-car-text {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gcs-car-text strong {
    color: var(--gcs-text);
    font-size: 15.5px;
    font-weight: 900;
    line-height: 1.55;
}

.gcs-car-text small {
    color: var(--gcs-muted);
    font-size: 11.5px;
}

.gcs-arrow {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f0faf5;
    color: var(--gcs-green-dark);
    font-size: 17px;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease;
}

.gcs-car:hover .gcs-arrow { transform: translateX(-2px); background:#dff5ea; }

.gcs-empty {
    padding: 24px;
    border: 1px dashed #cde5d9;
    border-radius: 16px;
    background: var(--gcs-mint);
    color: var(--gcs-muted);
    text-align: center;
    line-height: 1.9;
}

@media (max-width: 850px) {
    .gcs-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 560px) {
    .gcs-wrap { margin: 18px auto; padding: 0 10px; }
    .gcs-card { border-radius: 22px; }
    .gcs-hero { padding: 34px 18px 29px; }
    .gcs-icon { width:72px; height:72px; border-width:6px; }
    .gcs-icon svg { width:37px; height:37px; }
    .gcs-body { padding: 19px 14px 20px; }
    .gcs-grid { grid-template-columns: 1fr; gap: 10px; }
    .gcs-car { min-height: 78px; border-radius: 16px; }
    .gcs-search-box { min-height:54px; border-radius:16px; padding:5px 6px 5px 11px; }
    .gcs-search-box button { min-width:78px; padding:0 12px; }
}
