@charset "euc-jp";

/* Base */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    line-height: 2.0;
    color: var(--text);
    background: var(--bg-deep);
}

main {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-weight: 600;
}

.pc-br {
    display: block;
}

.sp-br {
    display: none;
}

.container {
    width: min(1080px, 92%);
    margin-inline: auto;
}

img {
    max-width: 100%;
    display: block;
}

footer {
    background: #ffffff;
}

.food a {
    color: unset;
    text-decoration: none;
}

article.food {
    padding: 100px 0 0 !important;
    margin: 0 !important;
    font-family: var(--font-jp);
}

.food section {
    margin: 0 auto;
    padding: 100px 0;
}

.food .breadcrumb-wrap {
    margin: 0 auto;
    width: 1200px;
}

.food .breadcrumbs-item a {
    color: var(--complementary-color-grey-30) !important;
    text-decoration: underline;
}

/* ===== CSS VARIABLES ===== */
:root {
    --color-dark-blue: #084D84;
    --color-main: #2389CA;
    --color-black: #1A1A1C;
    --color-red: #F05A25;
    --color-white: #FFFFFF;
    --color-grey-80: #484849;
    --color-blue-10: #E9F3FA;
    --color-blue-5: #F4F9FC;
    --font-jp: 'articulat-cf', 'Noto Sans JP', sans-serif, '¥á¥¤¥ê¥ª', 'Meiryo';
    --bg-deep: #F4F9FF;
}

body {
    color: var(--color-black);
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
section.hero {
    background: var(--color-blue-5);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    background: url(../images/bg.svg);
    background-repeat: no-repeat;
}

.hero-bg-wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
}

.hero-inner {
    max-width: 1200px;
    margin: 16px auto 56px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 540px;
}

.hero-content {
    flex: 0 0 540px;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 16px;
}

.hero-heading {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--color-black);
    margin-bottom: 16px;
}

.hero-heading span {
    font-family: "articulat-cf", sans-serif;
    font-weight: 800;
}

.hero-subtext {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: var(--color-grey-80);
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: var(--color-red);
    color: #fff;
    border: none;
    padding: 16px 64px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-jp);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-5px);
}

.btn-secondary {
    background: #fff !important;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
    transform: translateY(-5px);
}

/* Hero visual area */
section.hero {
    margin: 0 auto 0;
}

.hero-visual {
    flex: 1;
    position: relative;
}



/* ===== LOGO STRIP ===== */
.logo-strip {
    background: var(--color-white);
    border-top: 1px solid rgba(35, 137, 202, 0.1);
    border-bottom: 1px solid rgba(35, 137, 202, 0.1);
    padding: 24px 0;
    overflow: hidden;
}

.logo-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-strip-label {
    font-size: 12px;
    color: var(--color-grey-80);
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.logo-strip-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.strip-logo {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-grey-80);
    opacity: 0.6;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* ===== CONCERNS SECTION ===== */
section.concerns {
    margin: 0 auto;
}

.concerns {
    padding: 100px 0;
}

.concerns-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-blue);
    text-align: center;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 16px;
}

.section-heading span {
    color: var(--color-red);
}

.section-heading .brand {
    color: var(--color-red);
}

.section-subtext {
    font-size: 16px;
    color: var(--color-grey-80);
    font-weight: 500;
    text-align: center;
    margin-bottom: 56px;
}

.concern-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.concern-card {
    background: var(--color-white);
    border: 1px solid rgba(35, 137, 202, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 18px;
    width: 350px;
}

.concern-icon-wrap {
    background: var(--color-blue-10);
    border-radius: 14px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.concern-icon {
    width: 22px;
    height: 22px;
}

.concern-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-grey-80);
    line-height: 1.5;
}

/* ===== ANCHOR SECTION ===== */
.anchor-section {
    background: var(--color-main);
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.anchor-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
}

.anchor-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.anchor-link {
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-blue);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.anchor-link:hover {
    background: var(--color-dark-blue);
    transform: translateY(-1px);
    color: #fff;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--color-white);
    padding: 0;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0 28px;
    height: 50px;
    font-family: var(--font-jp);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    color: var(--color-black);
    border-radius: 30px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--color-blue-10);
    border-color: rgba(35, 137, 202, 0.3);
}

.tab-btn.active {
    background: var(--color-main);
    color: #fff;
    border-color: var(--color-main);
    box-shadow: 0 4px 14px rgba(35, 137, 202, 0.35);
}

/* Tab panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.features-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 48px 64px;
    border: 1px solid rgba(35, 137, 202, 0.1);
    box-shadow: 0 8px 26px rgba(45, 30, 22, 0.05);
    max-width: 1080px;
    margin: 0 auto;
}

.features-card-label {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 40px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 74px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon-wrap {
    width: 100px;
    height: 100px;
    background: var(--color-blue-10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap img {
    width: 60px;
    height: 60px;
}

.feature-icon-wrap .fi-emoji {
    font-size: 38px;
    line-height: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-desc {
    font-size: 14px;
    color: var(--color-grey-80);
    line-height: 1.8;
    font-weight: 350;
}

/* ===== CTA MID ===== */
.cta-mid {
    background: #1568A6;
    padding: 64px 24px;
    text-align: center;
    margin: 0 auto;
}

.cta-mid-heading {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.4;
}

.cta-mid-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.cta-phone {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid;
    display: inline-block;
    padding: 12px 80px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-phone p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}


.phone-number {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    gap: 6px;
    line-height: 1.25;
}

/* ===== USER VOICE SECTION ===== */
.user-voices {
    background: var(--color-blue-5);
    padding: 100px 0;
    margin: 0 auto;

}

.user-voices-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.voice-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.voice-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.voice-item.reverse {
    direction: rtl;
}

.voice-item.reverse>* {
    direction: ltr;
}

.voice-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-main);

    margin-bottom: 8px;
}

.voice-heading {
    font-size: 30px;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 24px;
    line-height: 1.35;
}

.voice-quote {
    border-radius: 0 12px 12px 0;
    font-size: 16px;
    color: var(--color-grey-80);
    line-height: 2;
    margin-bottom: 20px;
}

.voice-source {
    display: flex;
    align-items: center;
    gap: 12px;
}

.voice-source-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--color-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.voice-source-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.25;
}

.voice-source-link {
    font-size: 14px;
    color: var(--color-main) !important;
    font-weight: 500;
}

.voice-source-link:hover {
    text-decoration: underline !important;
}

.voice-image {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4eaf7 0%, #b3d4ea 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 12px 40px rgba(8, 77, 132, 0.15);
    position: relative;
}

.voice-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(8, 77, 132, 0.8), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* ===== MORE SERVICES ===== */
.more-services {
    background: #fff;
}

.more-services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(8, 77, 132, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 570px
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(8, 77, 132, 0.14);
}

.service-card-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--color-blue-10), var(--color-blue-5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 350px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-card-desc {
    font-size: 14px;
    color: var(--color-grey-80);
    line-height: 2;
}

.service-card-cta {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-main);
    display: inline-block;
}

/* ===== PLAN SECTION ===== */
.plan-section {
    background: var(--color-white);
    padding: 100px 0;
}

.plan-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.plan-heading {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--color-black);
    margin-bottom: 20px;
}

.plan-subtext {
    font-size: 15px;
    color: var(--color-grey-80);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 36px;
}

.plan-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 2px solid rgba(35, 137, 202, 0.18);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-dark-blue);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
}

.plan-link:hover {
    background: var(--color-blue-5);
    border-color: var(--color-main);
}

.plan-link-arrow {
    font-size: 16px;
}

.plan-image {
    background: linear-gradient(135deg, var(--color-blue-10), #dff0fa);
    border-radius: 20px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    box-shadow: 0 8px 32px rgba(8, 77, 132, 0.12);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.7s ease both;
}

.hero-visual {
    animation: fadeInUp 0.7s 0.2s ease both;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
}

.reveal.visible {
    opacity: 1;
}


/* logo */
:root {
    --row-gap: 16px;
    --item-gap: 32px;
    --pad-x: 16px;
    --fade-size: clamp(12px, 6vw, 64px);
    --duration: 40s
}

section.logo-container {
    margin: 0 auto;
}

.alternating-slider {
    display: grid;
    gap: var(--row-gap);
    padding: 24px var(--pad-x);
    background: #fff;
}

.slider-row {
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

.slider-row .track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: var(--item-gap);
    will-change: transform
}

.slider-row .item {
    flex: 0 0 auto
}

.slider-row .item img {
    display: block;
    width: 160px;
    height: auto
}

.slider-row[dir="ltr"] .track {
    animation: alt-left var(--duration) linear infinite
}

.slider-row[dir="rtl"] .track {
    animation: alt-right var(--duration) linear infinite
}

.slider-row::before,
.slider-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--fade-size);
    pointer-events: none;
    z-index: 1
}

.slider-row::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0))
}

.slider-row::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0))
}

@keyframes alt-left {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(-50%, 0, 0)
    }
}

@keyframes alt-right {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(50%, 0, 0)
    }
}

/* ===============================
   Responsive: Tablet (769?1024)
   =============================== */
@media (max-width: 1024px) and (min-width: 769px) {

    /* Typography */
    .section-heading {
        font-size: 32px;
    }

    .anchor-heading {
        font-size: 22px;
    }

    .food .breadcrumb-wrap {
        margin: 0 32px;
    }

    /* Hero */
    .hero-inner {
        gap: 32px;
        min-height: 380px;
        padding: 0 24px;
    }

    .hero-content {
        flex: 0 0 540px;
    }

    .hero-heading {
        font-size: 44px;
    }

    .hero-subtext {
        font-size: 15px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 14px 48px;
    }

    .btn-secondary {
        font-size: 13px;
        padding: 10px 24px;
    }

    /* Concerns */
    .concerns {
        padding: 80px 0;
    }

    .concern-cards {
        gap: 20px;
    }

    .concern-card {
        width: min(100%, 360px);
        padding: 18px;
    }

    .concern-text {
        font-size: 14px;
    }

    /* Tabs / Features */
    .features-card {
        padding: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .feature-item {
        gap: 18px;
    }

    .feature-icon-wrap {
        width: 80px;
        height: 80px;
    }

    .feature-icon-wrap img {
        width: 48px;
        height: 48px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-desc {
        font-size: 14px;
    }

    /* User voices */
    .voice-item {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .voice-heading {
        font-size: 26px;
    }

    .voice-quote {
        font-size: 15px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card-img {
        height: 200px;
    }

    /* Plan */
    .plan-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .plan-heading {
        font-size: 32px;
    }

    .plan-image {
        height: 240px;
    }

    /* CTA */
    .cta-mid-heading {
        font-size: 30px;
    }

    /* Logos slider */
    .alternating-slider {
        padding: 20px var(--pad-x);
    }

    .slider-row .item img {
        width: 140px;
    }
}

/* ===============================
   Responsive: Mobile (?768)
   =============================== */
@media (max-width: 768px) {

    /* Utility line breaks */
    .pc-br {
        display: none;
    }

    .sp-br {
        display: block;
    }


    .food .breadcrumb-wrap {
        padding: 0 15px;
    }

    /* Typography */
    .section-eyebrow {
        font-size: 14px;
    }

    .section-heading {
        font-size: 24px;
    }

    .section-subtext {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .anchor-heading {
        font-size: 18px;
    }

    /* Hero */
    .hero-bg {
        background: url(../images/sp-bg.svg);
        background-repeat: no-repeat;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        min-height: auto;
        margin: 8px auto 40px;
        padding: 0 16px;
    }

    .hero-content {
        flex: 1 1 auto;
        width: 100%;
    }

    .hero-eyebrow {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-heading {
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .hero-subtext {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        display: block;
        text-align: center;
    }

    .btn-secondary {
        width: 100%;
        padding: 10px 18px;
        font-size: 14px;
        display: block;
        text-align: center;
    }

    /* Concerns */
    .concerns {
        padding: 64px 0;
    }

    .concerns-inner {
        padding: 0 16px;
    }

    .concern-cards {
        gap: 12px;
    }

    .concern-card {
        width: 48%;
        padding: 16px;
        gap: 12px;
        flex-direction: column;
    }

    .concern-icon-wrap {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .concern-text {
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
    }

    /* Anchor */
    .anchor-section {
        padding: 32px 16px;
        gap: 16px;
    }

    .anchor-links {
        gap: 12px;
    }

    .anchor-link {
        width: 48%;
        padding: 10px;
        font-size: 14px;
        text-align: center;
        display: block;
    }

    /* Tabs / Features */
    .features-inner {
        padding: 0 16px;
    }

    .features-tabs {
        gap: 12px;
    }

    .tab-btn {
        height: 44px;
        padding: 0 18px;
        font-size: 14px;
    }

    .features-card {
        padding: 24px;
    }

    .features-card-label {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item {
        gap: 14px;
    }

    .feature-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .feature-icon-wrap img {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 14px;
        margin-bottom: 0;
    }

    .feature-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    /* User voices */
    .user-voices {
        padding: 64px 0;
    }

    .user-voices-inner {
        padding: 0 16px;
    }

    .voice-item {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 64px;
    }

    .voice-item.reverse {
        direction: ltr;
    }

    .voice-heading {
        font-size: 22px;
    }

    .voice-quote {
        font-size: 14px;
    }

    .voice-source-name {
        font-size: 16px;
    }

    .voice-source-link {
        font-size: 13px;
    }

    .voice-image {
        aspect-ratio: 13.5/10;
    }

    /* Services */
    .more-services-inner {
        padding: 0 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .service-card {
        min-height: auto;
    }

    .service-card-img {
        height: 180px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-desc {
        font-size: 13px;
    }

    .service-card-body {
        min-height: auto;
    }

    /* Plan */
    .plan-section {
        padding: 64px 0;
    }

    .plan-inner {
        padding: 0 16px;
    }

    .plan-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-heading {
        font-size: 24px;
    }

    .plan-subtext {
        font-size: 14px;
    }

    .plan-image {
        height: 200px;
    }

    /* CTA */
    section.cta-mid {
        padding: 40px 16px;
    }

    .cta-mid-heading {
        font-size: 24px;
    }

    .cta-mid-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .phone-number {
        font-size: 24px;
    }

    .cta-phone {
        padding: 12px 20px;
        border-radius: 12px;
    }


    /* Logos slider */
    .alternating-slider {
        padding: 16px var(--pad-x);
    }

    .slider-row .item img {
        width: 110px;
    }
}