/* =========================================================
   Homepage Production – Web Landing Page CSS
   index.html のデザイントーンに合わせた青基調・シンプル設計。
   ヘッダーは vet-* クラスで index.html と統一。
   ========================================================= */

/* ---------- Variables ---------- */
:root {
    --w-primary: #1a4ed8;
    --w-primary-dark: #1640b0;
    --w-primary-light: #e6effd;
    --w-primary-lighter: #f3f7fe;
    --w-deep: #1e3a8a;
    --w-deep-dark: #16306d;
    --w-text: #1f2937;
    --w-text-soft: #4b5563;
    --w-text-mute: #6b7280;
    --w-border: #e5e7eb;
    --w-bg: #ffffff;
    --w-bg-soft: #f5f9ff;
    --w-shadow-sm: 0 4px 14px rgba(26, 78, 216, 0.06);
    --w-shadow-md: 0 10px 30px rgba(26, 78, 216, 0.08);
    --w-shadow-lg: 0 20px 50px rgba(26, 78, 216, 0.12);
    --w-radius: 14px;
    --w-radius-lg: 20px;
    --w-ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    color: var(--w-text);
    background: var(--w-bg);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--w-ease);
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.45;
    letter-spacing: .02em;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

/* ---------- Header (index.html と統一) ---------- */
.vet-container {
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 24px;
}

.vet-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--w-border);
}

.vet-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 124px;
}

.vet-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.vet-logo img {
    height: 88px;
    width: auto;
}

.vet-logo-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
}

.vet-logo-icon svg {
    width: 100%;
    height: 100%;
}

.vet-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: .01em;
    color: var(--w-deep);
}

.vet-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.vet-nav-list {
    display: flex;
    gap: 32px;
    font-size: 15px;
    font-weight: 500;
}

.vet-nav-list a {
    color: var(--w-text);
    position: relative;
    padding: 8px 2px;
}

.vet-nav-list a:hover,
.vet-nav-list a.is-active {
    color: var(--w-primary);
}

.vet-nav-list a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--w-primary);
    border-radius: 2px;
}

.vet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    transition: all .25s var(--w-ease);
    white-space: nowrap;
    line-height: 1.2;
}

.vet-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.vet-btn-primary {
    background: var(--w-primary);
    color: #fff;
}

.vet-btn-primary:hover {
    background: var(--w-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 78, 216, 0.32);
}

.vet-btn-outline {
    background: #fff;
    color: var(--w-primary);
    border: 1.5px solid var(--w-primary);
}

.vet-btn-outline:hover {
    background: var(--w-primary-light);
}

.vet-btn-light {
    background: #fff;
    color: var(--w-primary);
}

.vet-btn-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.vet-nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}

.vet-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
}

.vet-hamburger span {
    width: 100%;
    height: 2px;
    background: var(--w-text);
    border-radius: 2px;
    transition: transform .3s var(--w-ease), opacity .3s;
}

.vet-hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.vet-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.vet-hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Nav Dropdown ---------- */
.vet-nav-has-dropdown {
    position: relative;
}

.vet-nav-caret {
    margin-left: 4px;
    vertical-align: middle;
    display: inline-block;
    transition: transform .25s var(--w-ease);
}

.vet-nav-has-dropdown:hover .vet-nav-caret {
    transform: rotate(180deg);
}

.vet-nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid var(--w-border);
    border-radius: 14px;
    padding: 12px 0;
    min-width: 240px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s, transform .2s;
    z-index: 110;
    list-style: none;
    margin: 0;
}

.vet-nav-has-dropdown:hover .vet-nav-dropdown,
.vet-nav-has-dropdown:focus-within .vet-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.vet-nav-dropdown-head {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--w-text-mute);
    padding: 8px 22px 4px;
    text-transform: uppercase;
}

.vet-nav-dropdown-head:not(:first-child) {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--w-border);
}

.vet-nav-dropdown li a {
    display: block;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--w-text);
    white-space: nowrap;
    transition: background .2s, color .2s;
}

.vet-nav-dropdown li a:hover {
    background: var(--w-primary-light);
    color: var(--w-primary);
}

@media (max-width: 768px) {
    .vet-nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 6px 0 0;
        min-width: 0;
        background: transparent;
    }

    .vet-nav-has-dropdown:hover .vet-nav-caret {
        transform: none;
    }

    .vet-nav-dropdown-head {
        padding: 10px 16px 4px;
    }

    .vet-nav-dropdown-head:not(:first-child) {
        border-top: none;
        margin-top: 4px;
        padding-top: 8px;
    }

    .vet-nav-dropdown li a {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ---------- Hero ---------- */
.web-hero {
    position: relative;
    overflow: hidden;
    background: #f7fbff;
    padding: 80px 0 90px;
}

/* Layer 1: Aurora mesh gradient — 3方向のオーロラブラー */
.web-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 58% 72% at 105% -8%, rgba(147, 197, 253, 0.32) 0%, transparent 58%),
        radial-gradient(ellipse 48% 52% at -4% 105%, rgba(199, 210, 254, 0.30) 0%, transparent 55%),
        radial-gradient(ellipse 55% 38% at 52% 90%, rgba(224, 236, 255, 0.42) 0%, transparent 62%),
        linear-gradient(162deg, #edf4ff 0%, #f7fbff 42%, #f4f9ff 100%);
    z-index: 0;
}

/* Layer 2: Large ring system — 同心3重リング（box-shadowで単一要素から生成） */
.web-hero::after {
    content: "";
    position: absolute;
    top: -230px;
    right: -230px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, rgba(219, 234, 254, 0.38) 0%, transparent 52%);
    border: 1px solid rgba(59, 130, 246, 0.06);
    box-shadow:
        0 0 0 90px rgba(219, 234, 254, 0.07),
        0 0 0 180px rgba(219, 234, 254, 0.04),
        0 0 0 270px rgba(219, 234, 254, 0.02);
    z-index: 0;
    pointer-events: none;
}

.web-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Layer 3: Diagonal light sweep — 左上から右下への細い光の筋 */
.web-hero-bg::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 130%;
    height: 55%;
    background: linear-gradient(105deg,
            transparent 0%,
            rgba(255, 255, 255, 0.45) 38%,
            rgba(255, 255, 255, 0.55) 48%,
            rgba(255, 255, 255, 0.45) 58%,
            transparent 100%);
    transform: skewY(-6deg);
    z-index: 0;
}

/* Layer 4: Bottom accent glow — セクション下部への柔らかい光だまり */
.web-hero-bg::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(199, 219, 254, 0.28) 0%, transparent 68%);
    z-index: 0;
}

.web-hero-inner {
    position: relative;
    z-index: 3;
}

.web-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.web-hero-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .24em;
    color: var(--w-primary);
    background: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--w-primary-light);
    margin-bottom: 22px;
}

.web-hero-title {
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: .02em;
    margin-bottom: 22px;
    color: var(--w-text);
}

.web-hero-text {
    font-size: 15px;

    margin-bottom: 32px;
    line-height: 1.95;
}

.web-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.web-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.web-hero-stats li {
    background: #fff;
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius);
    padding: 18px 18px;
    box-shadow: var(--w-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.web-stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--w-primary);
    line-height: 1.1;
    letter-spacing: -.01em;
}

.web-stat-num small {
    font-size: 13px;

    margin-left: 2px;
    font-weight: 600;
}

.web-stat-label {
    font-size: 12px;

    font-weight: 600;
}

.web-stat-label small {
    color: var(--w-text-mute);
    font-weight: 500;
    margin-left: 2px;
}

/* ---------- Section common ---------- */
section {
    padding: 90px 0;
}

.web-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.web-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--w-text);
    margin-bottom: 16px;
}

.web-section-bar {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--w-primary);
    margin: 0 auto;
    border-radius: 3px;
}

.web-section-lead {
    margin-top: 22px;
    font-size: 15px;

    line-height: 1.9;
}

/* ---------- Reasons ---------- */
.web-reasons {
    background: #fff;
}

.web-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.web-reason-card {
    background: #fff;
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius);
    padding: 44px 28px 36px;
    text-align: center;
    transition: transform .3s var(--w-ease), box-shadow .3s var(--w-ease);
}

.web-reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--w-shadow-md);
}

.web-reason-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: var(--w-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--w-primary);
}

.web-reason-icon svg {
    width: 34px;
    height: 34px;
}

.web-reason-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--w-text);
    margin-bottom: 14px;
}

.web-reason-text {
    font-size: 14px;

    line-height: 1.85;
}

/* ---------- Services ---------- */
.web-services {
    background: var(--w-bg-soft);
}

.web-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.web-service-card {
    background: #fff;
    border-radius: var(--w-radius);
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: var(--w-shadow-sm);
    border: 1px solid var(--w-border);
    transition: transform .3s var(--w-ease), box-shadow .3s var(--w-ease);
}

.web-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--w-shadow-md);
}

.web-service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: var(--w-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--w-primary);
}

.web-service-icon svg {
    width: 28px;
    height: 28px;
}

.web-service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--w-text);
    margin-bottom: 12px;
}

.web-service-text {
    font-size: 13px;

    line-height: 1.8;
}

/* ---------- Pricing ---------- */
.web-pricing {
    background: #fff;
}

.web-pricing .vet-container {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.web-pricing .web-section-head {
    width: 100%;
}

.web-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.web-price-card {
    background: #fff;
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-lg);
    padding: 36px 30px 32px;
    box-shadow: var(--w-shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .3s var(--w-ease), box-shadow .3s var(--w-ease);
}

.web-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--w-shadow-md);
}

.web-price-card-feature {
    border: 2px solid var(--w-primary);
    box-shadow: var(--w-shadow-md);
    position: relative;
}

.web-price-card-feature::before {
    content: "おすすめ";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--w-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 18px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(26, 78, 216, .25);
}

.web-price-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--w-primary);
    background: var(--w-primary-light);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.web-price-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--w-text);
    margin-bottom: 18px;
}

.web-price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.web-price-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--w-text);
}

.web-price-num {
    font-size: 44px;
    font-weight: 800;
    color: var(--w-primary);
    line-height: 1;
    letter-spacing: -.02em;
}

.web-price-unit {
    font-size: 14px;

    font-weight: 600;
    margin-left: 4px;
}

.web-price-sub {
    font-size: 13px;
    color: var(--w-text-mute);
    margin-bottom: 24px;
}

.web-price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
    align-self: center;
    text-align: left;
    width: fit-content;
}

.web-price-list li {
    font-size: 14px;
    color: var(--w-text);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.web-price-list li::before {
    content: "✓";
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: var(--w-primary-light);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    color: var(--w-primary);
    margin-top: 8px;
}

.web-price-list li::after {
    content: none;
}

.web-price-cta {
    width: 100%;
}

.web-price-note {
    margin-top: 32px;
    font-size: 1rem;
    color: var(--w-text-mute);
    text-align: center;
    line-height: 1.9;
}

/* ---------- Samples ---------- */
.web-samples {
    background: var(--w-bg-soft);
}

.web-sample-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 36px;
    max-width: 100%;
    margin: 0 auto;
}

.web-sample-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.web-sample-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--w-text);
    text-align: center;
}

.web-sample-desc {
    font-size: 1.2rem;
    color: var(--w-text-soft, #4b5563);
    text-align: center;
    line-height: 1.7;
    margin: 0 0 6px;
}

.web-sample-window {
    border: 1px solid var(--w-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--w-shadow-md);
    transition: transform .3s var(--w-ease), box-shadow .3s var(--w-ease);
}

.web-sample-window:hover {
    transform: translateY(-4px);
    box-shadow: var(--w-shadow-lg, 0 20px 50px rgba(26, 78, 216, .14));
}

.web-sample-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--w-border);
}

.web-sample-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cbd5e1;
}

.web-sample-bar span:nth-child(1) {
    background: #f87171;
}

.web-sample-bar span:nth-child(2) {
    background: #fbbf24;
}

.web-sample-bar span:nth-child(3) {
    background: #34d399;
}

.web-sample-scroll {
    height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.web-sample-scroll img {
    width: 100%;
    height: auto;
    display: block;
}

.web-sample-mock {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(26, 78, 216, .15);
}

.web-sample-mock-blue {
    background: linear-gradient(160deg, var(--w-primary) 0%, var(--w-deep) 100%);
}

.web-sample-mock-indigo {
    background: linear-gradient(160deg, #4f63d4 0%, #1e3a8a 100%);
}

.web-sample-mock-sky {
    background: linear-gradient(160deg, #4d8bd6 0%, #1a4ed8 100%);
}

.web-sample-mock-bar {
    height: 8px;
    background: rgba(255, 255, 255, .6);
    border-radius: 4px;
}

.web-sample-mock-bar:nth-child(1) {
    width: 50%;
    background: rgba(255, 255, 255, .9);
}

.web-sample-mock-bar:nth-child(2) {
    width: 85%;
}

.web-sample-mock-bar-short {
    width: 60% !important;
}

/* ---------- Flow ---------- */
.web-flow {
    background: #fff;
}

.web-flow-list {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    padding-left: 0;
}

.web-flow-list::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--w-primary-light);
}

.web-flow-item {
    position: relative;
    padding-left: 88px;
    padding-bottom: 24px;
}

.web-flow-item:last-child {
    padding-bottom: 0;
}

.web-flow-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--w-primary);
    border: 2px solid var(--w-primary);
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--w-shadow-sm);
    z-index: 2;
}

.web-flow-body {
    background: var(--w-bg-soft);
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius);
    padding: 22px 26px;
}

.web-flow-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--w-text);
}

.web-flow-body p {
    font-size: 14px;

    line-height: 1.8;
}

/* ---------- CTA ---------- */
.web-cta {
    background: linear-gradient(135deg, var(--w-deep) 0%, var(--w-deep-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.web-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .08;
}

.web-cta-paw {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    fill: #fff;
}

.web-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.web-cta-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    line-height: 1.55;
    margin-bottom: 20px;
}

.web-cta-text {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 30px;
    opacity: .92;
}

/* ---------- Footer ---------- */
.web-footer {
    background: var(--w-deep-dark);
    color: rgba(255, 255, 255, .85);
    padding: 40px 0 28px;
}

.web-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.web-footer-logo .vet-logo-text {
    color: #fff;
}

.web-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
}

.web-footer-nav a {
    color: rgba(255, 255, 255, .85);
}

.web-footer-nav a:hover {
    color: #fff;
}

.web-footer-copy {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    padding-top: 24px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.web-hero-title,
.web-section-title,
.web-cta-title,
.web-reason-title,
.web-service-title,
.web-sample-title,
.web-flow-body h3,
.web-price-name {
    font-size: 1.5rem;
}

.web-hero-text,
.web-reason-text,
.web-service-text,
.web-section-lead,
.web-sample-text,
.web-flow-body p,
.web-cta-text,
.web-price-list li {
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .web-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-price-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
        justify-items: center;
    }

    .web-price-card {
        width: 100%;
        max-width: 100%;
    }

    .web-sample-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 620px;
    }

    .web-sample-scroll {
        height: 500px;
    }

    .web-sample-title {
        font-size: 20px;
    }

    .web-reason-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .web-hero {
        padding: 48px 0 72px;
        background: #f7fbff;
    }

    .web-hero::before {
        background:
            radial-gradient(ellipse 80% 50% at 105% -5%, rgba(147, 197, 253, 0.25) 0%, transparent 55%),
            radial-gradient(ellipse 60% 45% at -5% 105%, rgba(199, 210, 254, 0.28) 0%, transparent 55%),
            linear-gradient(162deg, #edf4ff 0%, #f7fbff 100%);
    }

    .web-hero::after {
        top: -140px;
        right: -140px;
        width: 420px;
        height: 420px;
        box-shadow:
            0 0 0 55px rgba(219, 234, 254, 0.07),
            0 0 0 110px rgba(219, 234, 254, 0.04);
    }

    .web-hero-bg::after {
        display: none;
    }

    .vet-header-inner {
        height: 96px;
    }

    .vet-nav-list,
    .vet-nav-cta,
    .vet-nav-line {
        display: none;
    }

    .vet-nav.is-open {
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        align-items: stretch;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
    }

    .vet-nav.is-open .vet-nav-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        font-size: 16px;
    }

    .vet-nav.is-open .vet-nav-cta {
        display: inline-flex;
    }

    .vet-nav.is-open .vet-nav-line {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 10px 24px;
        background: #06c755;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .vet-hamburger {
        display: flex;
    }

    .vet-logo img {
        height: 68px;
    }

    .vet-logo-text {
        font-size: 20px;
    }

    .web-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .web-hero-buttons .vet-btn {
        width: 100%;
    }

    .web-hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .web-section-head {
        margin-bottom: 36px;
    }

    .web-reason-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .web-reason-card {
        padding: 32px 24px;
    }

    .web-service-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .web-sample-grid {
        gap: 36px;
    }

    .web-sample-scroll {
        height: 420px;
    }

    .web-sample-title {
        font-size: 18px;
    }

    .web-sample-desc {
        font-size: 1.2rem;
    }

    .web-price-card {
        padding: 32px 24px;
    }

    .web-price-num {
        font-size: 38px;
    }

    .web-flow-list::before {
        left: 22px;
    }

    .web-flow-item {
        padding-left: 64px;
    }

    .web-flow-num {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .web-flow-body {
        padding: 18px 20px;
    }

    .web-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .web-footer-nav {
        justify-content: center;
        gap: 16px 20px;
    }
}

@media (max-width: 480px) {
    .web-hero-title {
        font-size: 24px;
    }

    .web-section-title {
        font-size: 22px;
    }

    .web-hero-text,
    .web-reason-text,
    .web-service-text,
    .web-section-lead,
    .web-sample-text,
    .web-flow-body p,
    .web-cta-text,
    .web-price-list li {
        font-size: 1.2rem;
    }
}

@media (min-width: 1920px) {

    .web-hero-title,
    .web-section-title,
    .web-cta-title,
    .web-reason-title,
    .web-service-title,
    .web-sample-title,
    .web-flow-body h3,
    .web-price-name {
        font-size: 1.5rem;
    }

    .web-hero-text,
    .web-reason-text,
    .web-service-text,
    .web-section-lead,
    .web-sample-text,
    .web-flow-body p,
    .web-cta-text,
    .web-price-list li {
        font-size: 1.3rem;
    }
}