.website-dev-main {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 18%, rgba(104, 156, 255, 0.18), transparent 28%),
        radial-gradient(circle at 86% 44%, rgba(104, 156, 255, 0.12), transparent 22%),
        linear-gradient(180deg, #f9fbff 0%, #ffffff 54%, #ffffff 100%);
}

.website-dev-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 20%, rgba(255, 255, 255, 0.95), transparent 32%),
        radial-gradient(circle at 82% 36%, rgba(255, 255, 255, 0.68), transparent 24%);
    pointer-events: none;
}

.website-dev-wrap {
    width: min(1520px, calc(100vw - 20px));
}

.website-dev-hero {
    position: relative;
    padding: 34px 0 20px;
}

.website-dev-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(460px, 0.94fr) minmax(620px, 1.06fr);
    align-items: center;
    gap: 34px;
    min-height: 592px;
}

.website-dev-hero-copy {
    max-width: 640px;
    padding: 22px 0 10px 6px;
}

.website-dev-title {
    display: grid;
    gap: 14px;
    margin: 0;
}

.website-dev-title-top {
    color: #0b172c;
    font-size: clamp(28px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0.01em;
}

.website-dev-title-bottom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ff7e14;
    font-size: clamp(58px, 5vw, 74px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.website-dev-title-bottom i {
    width: 58px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff8b18 0%, #ff6514 100%);
    flex: 0 0 auto;
}

.website-dev-summary {
    margin: 18px 0 0;
    color: #7a859b;
    font-size: 18px;
    line-height: 1.78;
    letter-spacing: 0.01em;
}

.website-dev-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}

.website-dev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 182px;
    height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.website-dev-btn:hover {
    transform: translateY(-1px);
}

.website-dev-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #ff9a1f 0%, #ff7c14 52%, #ff6817 100%);
    box-shadow: 0 18px 34px rgba(255, 127, 22, 0.24);
}

.website-dev-btn-primary::after {
    content: "→";
    margin-left: 10px;
    font-size: 18px;
}

.website-dev-btn-secondary {
    color: #2e63ff;
    background: #ffffff;
    border: 2px solid rgba(62, 108, 255, 0.32);
    box-shadow: 0 14px 32px rgba(56, 103, 255, 0.08);
}

.website-dev-btn-secondary::after {
    content: "→";
    margin-left: 10px;
    font-size: 18px;
}

.website-dev-feature-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 38px;
}

.website-dev-feature-item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1 1 0;
}

.website-dev-feature-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(244, 248, 255, 0.98) 0%, rgba(228, 239, 255, 0.98) 100%);
    border: 1px solid rgba(86, 128, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.website-dev-feature-icon::before,
.website-dev-feature-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 4px;
}

.website-dev-feature-icon.is-shield::before {
    width: 14px;
    height: 16px;
    background: linear-gradient(180deg, #4a86ff 0%, #2d62ff 100%);
    clip-path: polygon(50% 0, 100% 18%, 100% 52%, 50% 100%, 0 52%, 0 18%);
}

.website-dev-feature-icon.is-tools::before {
    width: 16px;
    height: 4px;
    background: #2f68ff;
    transform: rotate(45deg);
}

.website-dev-feature-icon.is-tools::after {
    width: 16px;
    height: 4px;
    background: #2f68ff;
    transform: rotate(-45deg);
}

.website-dev-feature-icon.is-code::before {
    width: 16px;
    height: 14px;
    border: 2px solid #2f68ff;
    border-top: 0;
    border-right: 0;
    transform: rotate(45deg);
    background: transparent;
    border-radius: 2px;
}

.website-dev-feature-icon.is-code::after {
    width: 4px;
    height: 16px;
    background: #2f68ff;
    transform: rotate(20deg);
}

.website-dev-feature-icon.is-support::before {
    width: 14px;
    height: 12px;
    border: 2px solid #2f68ff;
    border-radius: 50%;
    background: transparent;
    top: -3px;
}

.website-dev-feature-icon.is-support::after {
    width: 14px;
    height: 6px;
    border: 2px solid #2f68ff;
    border-top: 0;
    background: transparent;
    border-radius: 0 0 10px 10px;
    top: 11px;
}

.website-dev-feature-copy strong {
    display: block;
    color: #2d4476;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
}

.website-dev-feature-copy small {
    display: block;
    margin-top: 2px;
    color: #97a2b7;
    font-size: 10px;
    line-height: 1.45;
    white-space: nowrap;
}

.website-dev-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 548px;
    padding: 0;
}

.website-dev-hero-visual::before {
    content: none;
}

.website-dev-hero-visual::after {
    content: none;
}

.website-dev-visual-image-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    height: 520px;
}

.website-dev-visual-image-slot {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.website-dev-visual-image-slot::before {
    content: none;
}

.website-dev-visual-image-slot img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.website-dev-visual-tag {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(80, 121, 228, 0.16);
    color: #536d9f;
    font-size: 16px;
    font-weight: 700;
}

.website-dev-visual-tag::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid #4c7bff;
    box-shadow: inset 0 0 0 4px rgba(76, 123, 255, 0.12);
}

.website-dev-visual-tag.is-top-right {
    top: 28px;
    right: 24px;
}

.website-dev-visual-tag.is-left-middle {
    top: 212px;
    left: -8px;
}

.website-dev-visual-tag.is-right-middle {
    top: 220px;
    right: -6px;
}

.website-dev-visual-tag.is-bottom-right {
    right: 18px;
    bottom: 34px;
}

.website-dev-cube {
    position: absolute;
    z-index: 1;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(171, 204, 255, 0.96) 0%, rgba(98, 154, 255, 0.78) 100%);
    box-shadow: 0 20px 36px rgba(90, 132, 255, 0.18);
    transform: rotate(18deg);
}

.website-dev-cube::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.28);
}

.website-dev-cube.is-left {
    left: 86px;
    bottom: 82px;
}

.website-dev-cube.is-top {
    top: 66px;
    left: 190px;
}

.website-dev-cube.is-right {
    top: 118px;
    right: 66px;
    width: 62px;
    height: 62px;
}

.website-dev-services {
    position: relative;
    z-index: 1;
    padding: 10px 0 52px;
}

.website-dev-service-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.website-dev-service-card {
    min-height: 242px;
    padding: 30px 26px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 16px 40px rgba(73, 108, 184, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.website-dev-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 98px;
    height: 98px;
    margin: 0 auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.website-dev-service-icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.website-dev-service-icon-slot img {
    display: block;
    width: 96%;
    height: 96%;
    object-fit: contain;
    object-position: center;
}

.website-dev-service-card.is-blue .website-dev-service-icon {
    color: #5a8fff;
    background: linear-gradient(180deg, rgba(237, 244, 255, 0.98) 0%, rgba(216, 230, 255, 0.98) 100%);
}

.website-dev-service-card.is-orange .website-dev-service-icon {
    color: #ff9d26;
    background: linear-gradient(180deg, rgba(255, 245, 228, 0.98) 0%, rgba(255, 228, 181, 0.98) 100%);
}

.website-dev-service-card.is-green .website-dev-service-icon {
    color: #49c56f;
    background: linear-gradient(180deg, rgba(235, 253, 239, 0.98) 0%, rgba(209, 245, 216, 0.98) 100%);
}

.website-dev-service-card.is-purple .website-dev-service-icon {
    color: #9561ff;
    background: linear-gradient(180deg, rgba(244, 236, 255, 0.98) 0%, rgba(229, 213, 255, 0.98) 100%);
}

.website-dev-service-card.is-cyan .website-dev-service-icon {
    color: #5f97ff;
    background: linear-gradient(180deg, rgba(236, 246, 255, 0.98) 0%, rgba(214, 230, 255, 0.98) 100%);
}

.website-dev-service-card.is-amber .website-dev-service-icon {
    color: #ff9653;
    background: linear-gradient(180deg, rgba(255, 242, 232, 0.98) 0%, rgba(255, 225, 194, 0.98) 100%);
}

.website-dev-service-card.is-blue .website-dev-service-icon,
.website-dev-service-card.is-orange .website-dev-service-icon,
.website-dev-service-card.is-green .website-dev-service-icon,
.website-dev-service-card.is-purple .website-dev-service-icon,
.website-dev-service-card.is-cyan .website-dev-service-icon,
.website-dev-service-card.is-amber .website-dev-service-icon {
    color: inherit;
    background: transparent;
}

.website-dev-service-card h2 {
    margin: 22px 0 10px;
    color: #1d2b49;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.website-dev-service-card p {
    margin: 0;
    color: #7c889d;
    font-size: 14px;
    line-height: 1.8;
}

.website-dev-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #3567ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.website-dev-service-card a::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
}

.website-dev-section {
    position: relative;
    z-index: 1;
    padding: 18px 0 0;
}

.website-dev-section-head {
    margin-bottom: 28px;
    text-align: center;
}

.website-dev-section-head h2 {
    margin: 0;
    color: #111a2c;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.website-dev-section-head p {
    margin: 10px 0 0;
    color: #98a1b3;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.website-dev-section-advantages {
    padding-top: 34px;
}

.website-dev-advantage-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.website-dev-advantage-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 122px;
    padding: 22px 22px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 228, 245, 0.72);
    box-shadow: 0 12px 34px rgba(83, 112, 181, 0.07);
}

.website-dev-advantage-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 0;
    flex: 0 0 auto;
    background: transparent;
}

.website-dev-advantage-icon::before,
.website-dev-advantage-icon::after {
    content: none;
}

.website-dev-advantage-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.website-dev-advantage-icon.is-speed {
    background: linear-gradient(180deg, #eef5ff 0%, #e0ecff 100%);
}

.website-dev-advantage-icon.is-speed::before {
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, #4690ff 0%, #2765ff 100%);
    clip-path: polygon(48% 0, 100% 0, 66% 42%, 100% 42%, 28% 100%, 44% 58%, 8% 58%);
}

.website-dev-advantage-icon.is-cost {
    background: linear-gradient(180deg, #fff4dd 0%, #ffe7b3 100%);
}

.website-dev-advantage-icon.is-cost::before {
    content: "¥";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #ff9a15;
    font-size: 30px;
    font-weight: 800;
}

.website-dev-advantage-icon.is-cost::after {
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255, 154, 21, 0.9);
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(-24deg);
}

.website-dev-advantage-icon.is-custom {
    background: linear-gradient(180deg, #edf5ff 0%, #e0edff 100%);
}

.website-dev-advantage-icon.is-custom::before {
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #55a1ff 0%, #2b6eff 100%);
    clip-path: polygon(0 36%, 18% 36%, 18% 18%, 36% 18%, 36% 0, 64% 0, 64% 18%, 82% 18%, 82% 36%, 100% 36%, 100% 64%, 82% 64%, 82% 82%, 64% 82%, 64% 100%, 36% 100%, 36% 82%, 18% 82%, 18% 64%, 0 64%);
}

.website-dev-advantage-icon.is-responsive {
    background: linear-gradient(180deg, #edf4ff 0%, #e3eeff 100%);
}

.website-dev-advantage-icon.is-responsive::before {
    width: 26px;
    height: 18px;
    border: 3px solid #3a74ff;
    border-radius: 4px;
    top: -6px;
}

.website-dev-advantage-icon.is-responsive::after {
    width: 12px;
    height: 20px;
    border: 3px solid #3a74ff;
    border-radius: 4px;
    left: 20px;
    top: 10px;
    background: transparent;
}

.website-dev-advantage-icon.is-service {
    background: linear-gradient(180deg, #f0efff 0%, #e5e3ff 100%);
}

.website-dev-advantage-icon.is-service::before {
    width: 28px;
    height: 24px;
    border: 3px solid #6370ff;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    top: -2px;
    background: transparent;
}

.website-dev-advantage-icon.is-service::after {
    width: 34px;
    height: 24px;
    border-left: 3px solid #6370ff;
    border-right: 3px solid #6370ff;
    border-bottom: 3px solid #6370ff;
    border-radius: 0 0 16px 16px;
    top: 10px;
    background: transparent;
}

.website-dev-advantage-icon.is-speed,
.website-dev-advantage-icon.is-cost,
.website-dev-advantage-icon.is-custom,
.website-dev-advantage-icon.is-responsive,
.website-dev-advantage-icon.is-service {
    background: transparent;
}

.website-dev-advantage-icon.is-speed::before,
.website-dev-advantage-icon.is-speed::after,
.website-dev-advantage-icon.is-cost::before,
.website-dev-advantage-icon.is-cost::after,
.website-dev-advantage-icon.is-custom::before,
.website-dev-advantage-icon.is-custom::after,
.website-dev-advantage-icon.is-responsive::before,
.website-dev-advantage-icon.is-responsive::after,
.website-dev-advantage-icon.is-service::before,
.website-dev-advantage-icon.is-service::after {
    content: none;
}

.website-dev-advantage-copy h3 {
    margin: 0;
    color: #161f32;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.website-dev-advantage-copy p {
    margin: 8px 0 0;
    color: #7f899c;
    font-size: 13px;
    line-height: 1.68;
}

.website-dev-section-capabilities {
    padding-top: 26px;
}

.website-dev-capability-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.website-dev-capability-card {
    min-height: 176px;
    padding: 26px 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 228, 245, 0.72);
    box-shadow: 0 12px 34px rgba(83, 112, 181, 0.07);
    text-align: center;
}

.website-dev-capability-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 0;
    margin-bottom: 18px;
    background: transparent;
}

.website-dev-capability-icon::before,
.website-dev-capability-icon::after {
    content: none;
}

.website-dev-capability-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.website-dev-capability-icon.is-ui {
    background: linear-gradient(180deg, #eef4ff 0%, #dfeaff 100%);
}

.website-dev-capability-icon.is-ui::before {
    width: 34px;
    height: 6px;
    background: #2e6dff;
    border-radius: 999px;
    transform: rotate(-34deg);
}

.website-dev-capability-icon.is-ui::after {
    width: 20px;
    height: 20px;
    border: 3px solid #2e6dff;
    border-radius: 8px;
    background: transparent;
    transform: rotate(-34deg) translate(10px, -8px);
}

.website-dev-capability-icon.is-front {
    background: linear-gradient(180deg, #eef4ff 0%, #dbe7ff 100%);
}

.website-dev-capability-icon.is-front::before {
    content: "</>";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #2d68ff;
    font-size: 26px;
    font-weight: 800;
}

.website-dev-capability-icon.is-back {
    background: linear-gradient(180deg, #f0f3ff 0%, #e1e6ff 100%);
}

.website-dev-capability-icon.is-back::before {
    width: 32px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #6d78ff 0%, #4f60ff 100%);
    box-shadow: 0 -11px 0 #6d78ff, 0 11px 0 #6d78ff;
}

.website-dev-capability-icon.is-cms {
    background: linear-gradient(180deg, #eef4ff 0%, #dce8ff 100%);
}

.website-dev-capability-icon.is-cms::before {
    content: "CMS";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #2c6eff;
    font-size: 22px;
    font-weight: 800;
}

.website-dev-capability-icon.is-payment {
    background: linear-gradient(180deg, #eef4ff 0%, #dce8ff 100%);
}

.website-dev-capability-icon.is-payment::before {
    width: 34px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(180deg, #5a8fff 0%, #3f74ff 100%);
}

.website-dev-capability-icon.is-payment::after {
    width: 22px;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 8px 0 #ffffff;
}

.website-dev-capability-icon.is-seo {
    background: linear-gradient(180deg, #eef4ff 0%, #dce8ff 100%);
}

.website-dev-capability-icon.is-seo::before {
    content: "SEO";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #2c6eff;
    font-size: 22px;
    font-weight: 800;
}

.website-dev-capability-icon.is-ui,
.website-dev-capability-icon.is-front,
.website-dev-capability-icon.is-back,
.website-dev-capability-icon.is-cms,
.website-dev-capability-icon.is-payment,
.website-dev-capability-icon.is-seo {
    background: transparent;
}

.website-dev-capability-icon.is-ui::before,
.website-dev-capability-icon.is-ui::after,
.website-dev-capability-icon.is-front::before,
.website-dev-capability-icon.is-front::after,
.website-dev-capability-icon.is-back::before,
.website-dev-capability-icon.is-back::after,
.website-dev-capability-icon.is-cms::before,
.website-dev-capability-icon.is-cms::after,
.website-dev-capability-icon.is-payment::before,
.website-dev-capability-icon.is-payment::after,
.website-dev-capability-icon.is-seo::before,
.website-dev-capability-icon.is-seo::after {
    content: none;
}

.website-dev-capability-card h3 {
    margin: 0;
    color: #161f32;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.website-dev-capability-card p {
    margin: 10px 0 0;
    color: #7f899c;
    font-size: 13px;
    line-height: 1.68;
}

.website-dev-section-packages {
    padding-top: 28px;
    padding-bottom: 24px;
}

.website-dev-package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.website-dev-package-card {
    position: relative;
    min-height: 0;
    padding: 18px 22px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(218, 228, 245, 0.78);
    box-shadow: 0 14px 38px rgba(76, 105, 170, 0.07);
}

.website-dev-package-card.is-featured {
    border: 2px solid rgba(255, 131, 30, 0.78);
    box-shadow: 0 20px 42px rgba(255, 139, 41, 0.14);
}

.website-dev-package-badge {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 22px 0 18px 0;
    background: linear-gradient(135deg, #ffad2a 0%, #ff6f12 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.website-dev-package-head {
    text-align: center;
}

.website-dev-package-head h3 {
    margin: 0;
    color: #1a2236;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.website-dev-package-head p {
    margin: 8px 0 0;
    color: #8f97a7;
    font-size: 13px;
    line-height: 1.55;
}

.website-dev-package-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-top: 14px;
}

.website-dev-package-price strong {
    color: #2f67ff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.website-dev-package-card.is-featured .website-dev-package-price strong {
    color: #ff6f12;
}

.website-dev-package-price span {
    margin-bottom: 2px;
    color: #2f67ff;
    font-size: 13px;
    font-weight: 700;
}

.website-dev-package-card.is-featured .website-dev-package-price span {
    color: #ff6f12;
}

.website-dev-package-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.website-dev-package-list li {
    position: relative;
    padding-left: 20px;
    color: #4f596c;
    font-size: 14px;
    line-height: 1.75;
}

.website-dev-package-list li + li {
    margin-top: 3px;
}

.website-dev-package-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #2f67ff;
    border-bottom: 2px solid #2f67ff;
    transform: rotate(-45deg);
}

.website-dev-package-card.is-featured .website-dev-package-list li::before {
    border-left-color: #ff7b19;
    border-bottom-color: #ff7b19;
}

.website-dev-package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin-top: 18px;
    border-radius: 999px;
    border: 2px solid rgba(64, 108, 255, 0.34);
    color: #2f67ff;
    background: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.website-dev-package-card.is-featured .website-dev-package-btn {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9618 0%, #ff6b15 100%);
    box-shadow: 0 16px 32px rgba(255, 123, 29, 0.22);
}

.website-dev-section-head.is-decorated h2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.website-dev-section-head.is-decorated h2::before,
.website-dev-section-head.is-decorated h2::after {
    content: "";
    width: 28px;
    height: 10px;
    background:
        radial-gradient(circle, #2f67ff 0 2px, transparent 3px) left center / 10px 10px repeat-x;
    opacity: 0.96;
}

.website-dev-section-scenes {
    padding-top: 20px;
}

.website-dev-scene-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.website-dev-scene-card {
    min-height: 166px;
    padding: 18px 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(221, 229, 245, 0.76);
    box-shadow: 0 12px 34px rgba(78, 104, 171, 0.07);
    text-align: center;
}

.website-dev-scene-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 0;
    margin-bottom: 16px;
    background: transparent;
}

.website-dev-scene-icon::before,
.website-dev-scene-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
}

.website-dev-scene-icon.is-office,
.website-dev-scene-icon.is-join,
.website-dev-scene-icon.is-product,
.website-dev-scene-icon.is-store {
    background: linear-gradient(180deg, #eef4ff 0%, #dde9ff 100%);
}

.website-dev-scene-icon.is-miniapp {
    background: linear-gradient(180deg, #e9fbf2 0%, #d5f7e6 100%);
}

.website-dev-scene-icon.is-member {
    background: linear-gradient(180deg, #fff4e8 0%, #ffe4c8 100%);
}

.website-dev-scene-icon.is-office::before {
    width: 22px;
    height: 28px;
    background: linear-gradient(180deg, #4a8fff 0%, #2e69ff 100%);
    clip-path: polygon(0 100%, 0 18%, 32% 18%, 32% 0, 100% 0, 100% 100%);
}

.website-dev-scene-icon.is-join::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #5a66ff;
    box-shadow: -12px 8px 0 #7f87ff, 12px 8px 0 #7f87ff;
}

.website-dev-scene-icon.is-join::after {
    width: 30px;
    height: 14px;
    border-radius: 999px;
    background: #5a66ff;
    top: 18px;
    box-shadow: -18px 10px 0 -4px #7f87ff, 18px 10px 0 -4px #7f87ff;
}

.website-dev-scene-icon.is-product::before {
    width: 24px;
    height: 30px;
    border-radius: 6px 6px 10px 10px;
    background: linear-gradient(180deg, #488dff 0%, #2d68ff 100%);
}

.website-dev-scene-icon.is-product::after {
    width: 12px;
    height: 8px;
    border: 3px solid #ffffff;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    top: -6px;
}

.website-dev-scene-icon.is-store::before {
    width: 28px;
    height: 20px;
    border-radius: 4px 4px 8px 8px;
    background: linear-gradient(180deg, #4990ff 0%, #2d68ff 100%);
    top: 8px;
}

.website-dev-scene-icon.is-store::after {
    width: 32px;
    height: 10px;
    border-radius: 8px 8px 4px 4px;
    background: #89b6ff;
    top: -12px;
}

.website-dev-scene-icon.is-miniapp::before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid #16b86a;
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(45deg);
}

.website-dev-scene-icon.is-miniapp::after {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #16b86a;
}

.website-dev-scene-icon.is-member::before {
    width: 28px;
    height: 20px;
    border-radius: 5px;
    background: linear-gradient(180deg, #ffa23d 0%, #ff7d1e 100%);
}

.website-dev-scene-icon.is-member::after {
    width: 18px;
    height: 3px;
    background: #ffffff;
    box-shadow: 0 7px 0 #ffffff;
}

.website-dev-scene-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.website-dev-scene-icon.is-office,
.website-dev-scene-icon.is-join,
.website-dev-scene-icon.is-product,
.website-dev-scene-icon.is-store,
.website-dev-scene-icon.is-miniapp,
.website-dev-scene-icon.is-member {
    background: transparent;
}

.website-dev-scene-icon.is-office::before,
.website-dev-scene-icon.is-office::after,
.website-dev-scene-icon.is-join::before,
.website-dev-scene-icon.is-join::after,
.website-dev-scene-icon.is-product::before,
.website-dev-scene-icon.is-product::after,
.website-dev-scene-icon.is-store::before,
.website-dev-scene-icon.is-store::after,
.website-dev-scene-icon.is-miniapp::before,
.website-dev-scene-icon.is-miniapp::after,
.website-dev-scene-icon.is-member::before,
.website-dev-scene-icon.is-member::after {
    content: none;
}

.website-dev-scene-card h3 {
    margin: 0;
    color: #182034;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.website-dev-scene-card p {
    margin: 10px 0 0;
    color: #7f899d;
    font-size: 13px;
    line-height: 1.7;
}

.website-dev-section-process {
    padding-top: 30px;
}

.website-dev-process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.website-dev-process-card {
    position: relative;
    min-height: 128px;
    padding: 18px 16px 16px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 100%);
    border: 1px solid rgba(215, 228, 250, 0.88);
    box-shadow: 0 10px 28px rgba(78, 104, 171, 0.06);
}

.website-dev-process-card:not(:last-child)::after {
    content: none;
}

.website-dev-process-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.website-dev-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, #3f82ff 0%, #2e67ff 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.website-dev-process-icon {
    display: none;
}

.website-dev-process-icon::before,
.website-dev-process-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
}

.website-dev-process-icon.is-chat::before {
    width: 18px;
    height: 13px;
    border-radius: 7px;
    background: #3b78ff;
}

.website-dev-process-icon.is-chat::after {
    width: 8px;
    height: 8px;
    background: #3b78ff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    left: 4px;
    top: 18px;
}

.website-dev-process-icon.is-plan::before {
    width: 18px;
    height: 20px;
    border-radius: 4px;
    background: #3b78ff;
}

.website-dev-process-icon.is-plan::after {
    width: 10px;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 -5px 0 #ffffff, 0 5px 0 #ffffff;
}

.website-dev-process-icon.is-design::before {
    width: 20px;
    height: 4px;
    border-radius: 999px;
    background: #3b78ff;
    transform: rotate(-40deg);
}

.website-dev-process-icon.is-design::after {
    width: 6px;
    height: 6px;
    border: 3px solid #3b78ff;
    border-radius: 2px;
    transform: rotate(-40deg) translate(8px, -8px);
    background: transparent;
}

.website-dev-process-icon.is-dev::before {
    content: "</>";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #3b78ff;
    font-size: 18px;
    font-weight: 800;
}

.website-dev-process-icon.is-delivery::before {
    width: 22px;
    height: 12px;
    border-radius: 6px;
    background: #3b78ff;
    top: 8px;
}

.website-dev-process-icon.is-delivery::after {
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 12px solid #3b78ff;
    top: -10px;
}

.website-dev-process-icon.is-support::before {
    width: 18px;
    height: 14px;
    border: 3px solid #3b78ff;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    background: transparent;
    top: -2px;
}

.website-dev-process-icon.is-support::after {
    width: 24px;
    height: 14px;
    border-left: 3px solid #3b78ff;
    border-right: 3px solid #3b78ff;
    border-bottom: 3px solid #3b78ff;
    border-radius: 0 0 12px 12px;
    background: transparent;
    top: 8px;
}

.website-dev-process-card h3 {
    margin: 0;
    color: #172034;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.website-dev-process-card p {
    margin: 12px 0 0;
    color: #7f899d;
    font-size: 13px;
    line-height: 1.72;
}

.website-dev-section-cases {
    padding-top: 26px;
}

.website-dev-data-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
}

.website-dev-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.website-dev-stat-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 100px;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(221, 229, 245, 0.76);
    box-shadow: 0 12px 32px rgba(78, 104, 171, 0.07);
}

.website-dev-stat-icon {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(180deg, #eef4ff 0%, #dce8ff 100%);
}

.website-dev-stat-icon::before,
.website-dev-stat-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
}

.website-dev-stat-icon.is-building::before {
    width: 18px;
    height: 24px;
    background: #3976ff;
    clip-path: polygon(0 100%, 0 24%, 36% 24%, 36% 0, 100% 0, 100% 100%);
}

.website-dev-stat-icon.is-shield::before {
    width: 18px;
    height: 20px;
    background: #3976ff;
    clip-path: polygon(50% 0, 100% 16%, 100% 54%, 50% 100%, 0 54%, 0 16%);
}

.website-dev-stat-icon.is-clock::before {
    width: 22px;
    height: 22px;
    border: 3px solid #3976ff;
    border-radius: 50%;
    background: transparent;
}

.website-dev-stat-icon.is-clock::after {
    width: 2px;
    height: 10px;
    background: #3976ff;
    box-shadow: 4px -2px 0 #3976ff;
    transform: translate(2px, -2px);
}

.website-dev-stat-icon.is-group::before {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3976ff;
    box-shadow: -12px 8px 0 #5f8fff, 12px 8px 0 #5f8fff;
}

.website-dev-stat-icon.is-group::after {
    width: 24px;
    height: 10px;
    border-radius: 999px;
    background: #3976ff;
    top: 14px;
}

.website-dev-stat-copy strong {
    display: block;
    color: #2d68ff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.website-dev-stat-copy p {
    margin: 6px 0 0;
    color: #6d778c;
    font-size: 13px;
    font-weight: 700;
}

.website-dev-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.website-dev-case-card {
    min-height: 286px;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(221, 229, 245, 0.76);
    box-shadow: 0 12px 34px rgba(78, 104, 171, 0.07);
}

.website-dev-case-image-slot {
    display: grid;
    place-items: center;
    height: 112px;
    border-radius: 14px;
    border: 1px solid rgba(218, 229, 255, 0.72);
    background: linear-gradient(145deg, rgba(235, 243, 255, 0.96) 0%, rgba(220, 233, 255, 0.94) 100%);
    overflow: hidden;
}

.website-dev-case-image-slot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.website-dev-case-card h3 {
    margin: 14px 0 0;
    color: #182034;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.website-dev-case-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 10px;
}

.website-dev-case-metrics span {
    color: #7a86a0;
    font-size: 12px;
    line-height: 1.5;
}

.website-dev-case-metrics strong {
    color: #2e67ff;
    font-weight: 800;
}

.website-dev-case-card p {
    margin: 10px 0 0;
    color: #6f7890;
    font-size: 13px;
    line-height: 1.7;
}

.website-dev-case-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #526fa8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.website-dev-case-card a::after {
    content: "→";
    font-size: 14px;
}

.website-dev-section-cta {
    padding: 28px 0 60px;
}

.website-dev-cta-banner {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 320px;
    align-items: center;
    gap: 20px;
    min-height: 136px;
    padding: 20px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2169ff 0%, #2f7dff 48%, #3d8cff 100%);
    box-shadow: 0 24px 44px rgba(55, 110, 255, 0.2);
}

.website-dev-cta-visual {
    display: flex;
    justify-content: flex-start;
}

.website-dev-cta-visual-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 174px;
    height: 96px;
}

.website-dev-cta-visual-slot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.website-dev-cta-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

.website-dev-cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.website-dev-cta-points li {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.website-dev-cta-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffd162;
}

.website-dev-cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.website-dev-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 146px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.website-dev-cta-btn.is-light {
    color: #2f67ff;
    background: #ffffff;
}

.website-dev-cta-btn.is-orange {
    color: #ffffff;
    background: linear-gradient(135deg, #ffae22 0%, #ff7b15 100%);
    box-shadow: 0 16px 30px rgba(255, 143, 39, 0.28);
}

@media (max-width: 1240px) {
    .website-dev-hero-layout {
        grid-template-columns: minmax(430px, 0.92fr) minmax(520px, 1.08fr);
        gap: 20px;
    }

    .website-dev-feature-row {
        gap: 10px;
    }

    .website-dev-feature-item {
        min-width: 0;
    }

    .website-dev-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .website-dev-advantage-grid,
    .website-dev-capability-grid,
    .website-dev-package-grid,
    .website-dev-scene-grid,
    .website-dev-process-grid,
    .website-dev-case-grid {
        gap: 14px;
    }

    .website-dev-advantage-card {
        padding: 18px;
        gap: 14px;
    }

    .website-dev-capability-card {
        padding-inline: 14px;
    }

    .website-dev-package-card {
        padding-inline: 18px;
    }

    .website-dev-data-layout {
        grid-template-columns: 232px minmax(0, 1fr);
    }

    .website-dev-cta-banner {
        grid-template-columns: 176px minmax(0, 1fr) 284px;
        gap: 16px;
        padding-inline: 22px;
    }
}

@media (max-width: 1024px) {
    .website-dev-wrap {
        width: min(100vw - 28px, 1180px);
    }

    .website-dev-hero {
        padding-top: 24px;
    }

    .website-dev-hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 20px;
    }

    .website-dev-hero-copy {
        padding-top: 8px;
    }

    .website-dev-title-top {
        font-size: 26px;
    }

    .website-dev-title-bottom {
        font-size: 58px;
    }

    .website-dev-summary {
        font-size: 16px;
    }

    .website-dev-hero-visual {
        min-height: 470px;
    }

    .website-dev-visual-image-frame {
        position: relative;
        inset: 0;
        max-width: none;
        height: 430px;
    }

    .website-dev-visual-tag.is-left-middle {
        left: 12px;
    }

    .website-dev-visual-tag.is-right-middle {
        right: 12px;
    }

    .website-dev-visual-tag.is-top-right {
        right: 22px;
    }

    .website-dev-visual-tag.is-bottom-right {
        right: 18px;
        bottom: 24px;
    }

    .website-dev-section {
        padding-top: 16px;
    }

    .website-dev-section-head {
        margin-bottom: 22px;
    }

    .website-dev-section-head h2 {
        font-size: 24px;
    }

    .website-dev-section-head p {
        font-size: 15px;
    }

    .website-dev-advantage-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
    }

    .website-dev-advantage-card {
        grid-template-columns: 56px minmax(0, 1fr);
        min-height: 108px;
        padding: 16px 14px;
        gap: 12px;
    }

    .website-dev-advantage-icon {
        width: 56px;
        height: 56px;
    }

    .website-dev-advantage-copy h3 {
        font-size: 15px;
    }

    .website-dev-advantage-copy p {
        font-size: 12px;
    }

    .website-dev-capability-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
    }

    .website-dev-capability-card {
        min-height: 164px;
        padding: 22px 12px 18px;
    }

    .website-dev-capability-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 14px;
    }

    .website-dev-capability-card h3 {
        font-size: 15px;
    }

    .website-dev-capability-card p {
        font-size: 12px;
    }

    .website-dev-package-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .website-dev-package-card {
        min-height: 0;
        padding: 16px 16px 18px;
    }

    .website-dev-package-head h3 {
        font-size: 17px;
    }

    .website-dev-package-head p,
    .website-dev-package-list li {
        font-size: 13px;
    }

    .website-dev-package-price strong {
        font-size: 22px;
    }

    .website-dev-package-btn {
        height: 44px;
        font-size: 15px;
    }

    .website-dev-scene-grid,
    .website-dev-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .website-dev-process-card:not(:last-child)::after {
        display: none;
    }

    .website-dev-data-layout {
        grid-template-columns: 1fr;
    }

    .website-dev-stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .website-dev-case-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .website-dev-cta-banner {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .website-dev-cta-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .website-dev-advantage-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .website-dev-capability-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .website-dev-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .website-dev-scene-grid,
    .website-dev-process-grid,
    .website-dev-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .website-dev-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .website-dev-wrap {
        width: min(100%, calc(100% - 28px));
    }

    .website-dev-hero {
        padding: 18px 0 18px;
    }

    .website-dev-title {
        gap: 10px;
    }

    .website-dev-title-top {
        font-size: 22px;
        line-height: 1.35;
    }

    .website-dev-title-bottom {
        gap: 8px;
        font-size: 44px;
    }

    .website-dev-title-bottom i {
        width: 36px;
        height: 8px;
    }

    .website-dev-summary {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.75;
    }

    .website-dev-actions {
        gap: 12px;
        margin-top: 24px;
    }

    .website-dev-btn {
        width: 100%;
        min-width: 0;
        height: 50px;
        font-size: 16px;
    }

    .website-dev-feature-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
        margin-top: 26px;
    }

    .website-dev-feature-item {
        min-width: 0;
    }

    .website-dev-hero-visual {
        min-height: 330px;
        padding: 0 0 4px;
    }

    .website-dev-hero-visual::before,
    .website-dev-hero-visual::after,
    .website-dev-cube {
        display: none;
    }

    .website-dev-visual-image-frame {
        height: 300px;
    }

    .website-dev-visual-image-slot {
        padding: 0;
        border-radius: 0;
    }

    .website-dev-visual-image-slot::before {
        content: none;
    }

    .website-dev-visual-image-slot span {
        font-size: 22px;
    }

    .website-dev-visual-image-slot small {
        font-size: 14px;
        line-height: 1.7;
    }

    .website-dev-visual-tag {
        height: 40px;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 13px;
    }

    .website-dev-visual-tag::before {
        width: 14px;
        height: 14px;
        border-radius: 4px;
    }

    .website-dev-visual-tag.is-top-right {
        top: 12px;
        right: 8px;
    }

    .website-dev-visual-tag.is-left-middle {
        top: 128px;
        left: 6px;
    }

    .website-dev-visual-tag.is-right-middle {
        top: 130px;
        right: 8px;
    }

    .website-dev-visual-tag.is-bottom-right {
        right: 10px;
        bottom: 10px;
    }

    .website-dev-services {
        padding: 10px 0 34px;
    }

    .website-dev-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .website-dev-service-card {
        min-height: 198px;
        padding: 20px 16px 18px;
        border-radius: 22px;
    }

    .website-dev-service-icon {
        width: 76px;
        height: 76px;
        border-radius: 0;
    }

    .website-dev-service-card h2 {
        margin-top: 16px;
        font-size: 16px;
    }

    .website-dev-service-card p,
    .website-dev-service-card a {
        font-size: 13px;
    }

    .website-dev-section {
        padding-top: 14px;
    }

    .website-dev-section-head {
        margin-bottom: 18px;
    }

    .website-dev-section-head h2 {
        font-size: 22px;
        line-height: 1.28;
    }

    .website-dev-section-head p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.65;
    }

    .website-dev-advantage-grid,
    .website-dev-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .website-dev-advantage-card {
        grid-template-columns: 48px minmax(0, 1fr);
        min-height: 96px;
        padding: 14px 12px;
        gap: 10px;
        border-radius: 16px;
    }

    .website-dev-advantage-icon {
        width: 48px;
        height: 48px;
    }

    .website-dev-advantage-copy h3,
    .website-dev-capability-card h3 {
        font-size: 14px;
    }

    .website-dev-advantage-copy p,
    .website-dev-capability-card p {
        font-size: 12px;
    }

    .website-dev-capability-card {
        min-height: 156px;
        padding: 18px 10px 16px;
        border-radius: 16px;
    }

    .website-dev-capability-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
        border-radius: 16px;
    }

    .website-dev-package-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .website-dev-package-card {
        min-height: 0;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .website-dev-package-badge {
        height: 30px;
        padding: 0 14px;
        font-size: 13px;
    }

    .website-dev-package-price strong {
        font-size: 24px;
    }

    .website-dev-package-list li {
        font-size: 13px;
    }

    .website-dev-section-packages {
        padding-bottom: 22px;
    }

    .website-dev-section-head.is-decorated h2 {
        gap: 10px;
    }

    .website-dev-section-head.is-decorated h2::before,
    .website-dev-section-head.is-decorated h2::after {
        width: 18px;
        height: 8px;
        background-size: 8px 8px;
    }

    .website-dev-scene-grid,
    .website-dev-process-grid,
    .website-dev-case-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .website-dev-scene-card,
    .website-dev-process-card,
    .website-dev-case-card {
        min-height: 0;
        border-radius: 16px;
    }

    .website-dev-scene-card {
        padding: 16px 14px 18px;
    }

    .website-dev-scene-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 12px;
    }

    .website-dev-scene-card h3,
    .website-dev-process-card h3,
    .website-dev-case-card h3 {
        font-size: 15px;
    }

    .website-dev-scene-card p,
    .website-dev-process-card p,
    .website-dev-case-card p {
        font-size: 12px;
    }

    .website-dev-process-card {
        padding: 14px;
    }

    .website-dev-process-head {
        gap: 12px;
        justify-content: flex-start;
    }

    .website-dev-process-step {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 16px;
    }

    .website-dev-process-icon {
        display: none;
    }

    .website-dev-process-card h3 {
        margin-top: 0;
    }

    .website-dev-data-layout,
    .website-dev-stat-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .website-dev-stat-card {
        min-height: 88px;
        padding: 14px;
    }

    .website-dev-case-card {
        padding: 12px;
    }

    .website-dev-case-image-slot {
        height: 100px;
        font-size: 13px;
    }

    .website-dev-section-cta {
        padding: 22px 0 36px;
    }

    .website-dev-cta-banner {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: 0;
        padding: 18px 16px;
        border-radius: 20px;
    }

    .website-dev-cta-visual {
        justify-content: center;
    }

    .website-dev-cta-visual-slot {
        width: 150px;
        height: 82px;
        border-radius: 18px;
    }

    .website-dev-cta-copy {
        text-align: center;
    }

    .website-dev-cta-copy h2 {
        font-size: 20px;
    }

    .website-dev-cta-points {
        justify-content: center;
        gap: 8px 14px;
        margin-top: 12px;
    }

    .website-dev-cta-points li {
        font-size: 12px;
    }

    .website-dev-cta-actions {
        grid-column: auto;
        flex-direction: column;
        justify-content: center;
    }

    .website-dev-cta-btn {
        width: 100%;
        min-width: 0;
        height: 48px;
        font-size: 15px;
    }
}
