/* 
  てきぱきLP Design System & Styles
  Font: Noto Sans JP, Outfit (English Headings)
  Colors: Blue/Grey tones, Clean, Professional
*/

:root {
    /* Colors */
    --c-text-main: #333333;
    --c-text-sub: #666666;
    --c-bg-body: #f9fafb;
    --c-bg-white: #ffffff;

    --c-primary: #0f4c81;
    /* Classic Blue - Trustworthy */
    --c-primary-light: #e6f0fa;
    --c-accent: #2c3e50;
    /* Dark Slate */

    --c-border: #e2e8f0;

    /* Fonts */
    --f-base: "Noto Sans JP", sans-serif;
    --f-head: "Outfit", "Noto Sans JP", sans-serif;

    /* Layout */
    --max-width: 1000px;
    --header-height: 80px;
    /* Unified Visuals */
    --shadow-card-std: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    /* Quiet Richness */
    --shadow-card-hover: 0 25px 50px -10px rgba(0, 0, 0, 0.08);
    --radius-lg: 16px;
    /* Outer Container */
    --radius-md: 8px;
    /* Inner */
    --radius-sm: 4px;
    /* Small */
    --padding-card: 30px 30px 30px 50px;
    /* Top Right Bottom Left */

}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-base);
    color: var(--c-text-main);
    background-color: var(--c-bg-body);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.u-sp-only {
    display: none;
}

@media (max-width: 768px) {
    .u-sp-only {
        display: block;
    }
}

/* Components */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background-color: var(--c-primary);
    color: #fff;
    box-shadow: 0 4px 6px rgba(15, 76, 129, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(15, 76, 129, 0.3);
    opacity: 1;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    background-color: var(--c-primary);
    color: #fff;
}

.btn--white {
    background-color: #fff;
    color: var(--c-primary);
}

.btn--lg {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--c-border);
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header__logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-primary);
}

.header__nav ul {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header__nav a {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
        /* Simple MVP: Hide nav on mobile for now or implement burger */
    }
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--f-base);
}

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

    .section__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
}

/* FV */
/* FV */
.fv {
    position: relative;
    width: 100%;
    min-height: 85vh;
    /* Taller */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/hero.png') no-repeat center right / cover;
    /* Image has people on right, so center right alignment ensures they are visible. 
       "Full width background" */
    margin-top: 0;
}

.fv__bg {
    display: none;
    /* Image is on .fv */
}

/* Overlay gradient for text readability if needed, focusing on left side */
.fv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Gradient on left side */
    height: 100%;
    background: linear-gradient(to right, rgba(230, 245, 255, 0.95), rgba(230, 245, 255, 0.4) 80%, transparent);
    z-index: 1;
}

.fv__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.fv__content {
    max-width: 600px;
    /* Limit width to keep text on left */
    text-align: left;
}

.fv__sub-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.fv__title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--c-primary);
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
    font-feature-settings: "palt";
}

.fv__lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--c-text-main);
    margin-bottom: 48px;
    font-weight: 500;
}

.fv__btn {
    min-width: 280px;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    /* More rounded */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fv {
        min-height: 600px;
        background-position: center;
        align-items: flex-end;
        /* Text at bottom or center? Reference said text left. Mobile usually stack. 
          Let's put text at top/center over image with heavy overlay */
        align-items: center;
    }

    .fv::before {
        width: 100%;
        background: rgba(240, 248, 255, 0.85);
        /* Full overlay on mobile */
    }

    .fv__title {
        font-size: 2.8rem;
    }

    .fv__container {
        padding: 0 24px;
    }

    .fv__content {
        text-align: center;
        margin: 0 auto;
    }

    .fv__btn {
        width: 100%;
    }
}

/* Previous .fv__visual etc are removed */

/* About (Overview) */
.about {
    background-color: var(--c-bg-body);
    /* AliceBlue */
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    /* Increased gap */
}

.card {
    padding: 40px 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--c-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Minimal shadow */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    /* Soft hover shadow */
    border-color: var(--c-accent);
}

.card__icon-box {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* img dimensions handled in HTML or by nice inheritance, but let's be safe */
.card__icon-box img {
    width: 100%;
    height: auto;
}

.card__title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--c-primary);
    font-weight: 700;
}

.card__text {
    font-size: 0.9rem;
    color: var(--c-text-sub);
    line-height: 1.8;
}

/* Target */
.target {
    background-color: var(--c-bg-white);
    /* Changed to white to match clean look, or keep light grey if needed */
    padding-top: 50px;
}

.target__header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 16px;
}

.target__icon {
    font-size: 2rem;
    color: var(--c-primary);
}

.target__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-primary);
    font-family: var(--f-base);
    margin-bottom: 0;
    /* Override section title margin */
}

.target__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.target-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.target-card__content {
    flex: 1;
}

.target-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}

.target-card__img-wrapper {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.target-card__img {
    width: 100%;
    height: auto;
}

.target-card__action {
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

.target-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--c-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.target-btn:hover {
    background-color: var(--c-accent);
}

@media (max-width: 768px) {
    .target__header {
        flex-direction: column;
        gap: 8px;
    }

    .target__title {
        font-size: 1.5rem;
    }

    .target-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .target-card__action {
        width: 100%;
        margin-top: 16px;
    }

    .target-btn {
        width: 100%;
        border-radius: 8px;
    }
}

/* Stance & Profile Combined Section */
.stance-profile {
    background-color: #F7F9FC;
    /* Light Gray Base */
    padding: 60px 20px;
    /* Padding to show floating effect */
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.sp-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* 6:4 Ratio */
    gap: 20px;
    /* Independence gap */
    width: 100%;
    max-width: 100%;
    /* Ensure full width usage but respect padding */
    margin: 0;
    box-shadow: none;
    /* Shadow moves to cards */
    position: relative;
    z-index: 10;
}

/* Common Card Styles */
.sp-col-stance,
.sp-col-profile {
    background-color: #FFFFFF;
    /* Pure White Cards */
    border-radius: var(--radius-lg);
    /* Friendly rounded corners */
    box-shadow: var(--shadow-card-std);
    /* Soft floating shadow */
    overflow: hidden;
    /* clean corners */
}

/* Left: Stance */
.sp-col-stance {
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: none;
}

/* Constrain content width for readability */
.sp-col-stance>* {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

.stance__header {
    margin-bottom: 32px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.stance__label {
    font-family: var(--f-head);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 12px;
    color: #1A365D;
    opacity: 0.5;
}

.stance__title {
    font-size: 2.8rem;
    /* Larger */
    color: #1A365D;
    font-weight: 700;
    line-height: 1.3;
}

.stance__body {
    font-size: 1.1rem;
    line-height: 2.2;
    color: #2D3748;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.stance__body p {
    margin-bottom: 24px;
}

.stance__body strong {
    font-weight: 700;
    color: #1A365D;
    background: linear-gradient(transparent 60%, #BAE6FD 60%);
    padding: 0 4px;
}

/* Magazine Index Spot Menu */
.spot-index-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--c-border);
}

.spot-index-item {
    display: flex;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--c-border);
    transition: background 0.2s;
}

.spot-index-item:hover {
    background: linear-gradient(to right, transparent, rgba(248, 250, 252, 0.5), transparent);
}

/* Abstract Art Icon */
.spot-art {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 32px;
    opacity: 0.9;
}

.spot-svg {
    width: 100%;
    height: 100%;
}

/* Info Section */
.spot-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.spot-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.spot-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-text-main);
    font-family: var(--f-serif);
    /* Premium feel */
    margin: 0;
    letter-spacing: 0.05em;
}

.u-text-sub {
    font-size: 0.85rem;
    font-weight: normal;
    font-family: var(--f-base);
    margin-left: 8px;
    color: var(--c-text-sub);
}

.spot-line {
    flex-grow: 1;
    height: 1px;
    background: var(--c-border);
    /* Dotted or solid line */
    margin: 0 24px;
    opacity: 0.5;
}

.spot-price {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--c-text-main);
    white-space: nowrap;
}

.spot-price .unit {
    font-size: 0.8rem;
    margin-left: 2px;
    font-weight: normal;
}

/* Details & Meta */
.spot-details {
    padding-left: 0;
}

.spot-desc {
    font-size: 0.95rem;
    color: var(--c-text-main);
    margin-bottom: 8px;
    line-height: 1.6;
}

.spot-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.spot-meta .label {
    background: #F1F5F9;
    color: var(--c-text-sub);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.spot-meta .text {
    color: var(--c-text-sub);
}

/* Special Human Note */
.spot-note-human {
    font-size: 0.9rem;
    color: var(--c-text-sub);
    line-height: 1.6;
    background: #F8FAFC;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid #CBD5E1;
    display: inline-block;
}

/* Criteria Footer Note */
.spot-criteria-note {
    margin-top: 32px;
    padding: 16px 24px;
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.criteria-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-text-sub);
    border: 1px solid var(--c-border);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.criteria-text {
    font-size: 0.85rem;
    color: var(--c-text-sub);
    line-height: 1.5;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .spot-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .spot-line {
        display: none;
    }

    .spot-price {
        margin-top: 8px;
        color: var(--c-primary);
        /* Highlight price on mobile */
    }

    .spot-index-item {
        flex-direction: column;
    }

    .spot-art {
        margin-bottom: 16px;
    }

    .spot-criteria-note {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Right: Profile */
.sp-col-profile {
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-left: none;
}

.sp-col-profile>* {
    max-width: 400px;
    /* Keep profile compact */
    width: 100%;
}

/* SVGs */
.svg-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* End SVGs */

.profile__img-wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
    position: relative;
    /* Decorative ring or just shadow */
}

.profile__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile__text {
    width: 100%;
}

.profile__role {
    font-size: 0.85rem;
    color: #1A365D;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
    opacity: 0.7;
}

.profile__name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1A365D;
}

.profile__name .en {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 8px;
    opacity: 0.6;
}

.profile__bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 32px;
    text-align: left;
}

/* Mini Media Links within Profile */
.profile__media {
    width: 100%;
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}

.profile__media-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #718096;
    margin-bottom: 12px;
    text-align: center;
}

.profile__media-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mini-media-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #2b6cb0;
    text-decoration: none;
    padding: 8px 12px;
    background: #F0F8FF;
    border-radius: 20px;
    transition: all 0.3s;
}

.mini-media-link:hover {
    background: #EBF8FF;
    transform: translateY(-2px);
}

.mini-media-icon {
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sp-grid {
        grid-template-columns: 1fr;
    }

    .sp-col-stance,
    .sp-col-profile {
        padding: 40px 24px;
        border-left: none;
        border-right: none;
    }

    .stance__title {
        font-size: 1.8rem;
    }
}



.media-card__body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.media-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--c-primary);
}

.media-card__desc {
    font-size: 0.9rem;
    color: var(--c-text-sub);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.media-card__link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.media-card__link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s;
}

.media-card:hover .media-card__link::after {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    /* Mobile styles handled by grid defaults, no specific override needed mostly */
}

/* Flow */
.flow {
    background-color: var(--c-bg-body);
}

.flow__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.step {
    background: #fff;
    padding: 32px 24px;
    border-radius: 8px;
    border-top: 4px solid var(--c-primary);
    position: relative;
}

.step__num {
    font-family: var(--f-head);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--c-primary-light);
    line-height: 1;
    margin-bottom: 16px;
}

.step__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step__text {
    font-size: 0.9rem;
    color: var(--c-text-sub);
}

/* Pricing */
.pricing {
    background-color: var(--c-bg-white);
}

.pricing-category {
    margin-bottom: 60px;
}

.pricing-category__title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--c-primary);
    margin-bottom: 32px;
    font-weight: 700;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: flex-start;
    /* Ensure cards align top */
}

.pricing-card {
    position: relative;
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--c-border);
    text-align: center;
    height: 100%;
}

.pricing-card.highlight {
    border: 2px solid var(--c-primary);
    background: var(--c-primary-light);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pricing-card.highlight {
        transform: none;
    }
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card__title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--c-text-sub);
    line-height: 1.4;
}

.highlight .pricing-card__title {
    color: var(--c-primary);
    font-weight: 700;
}

.pricing-card__sub {
    font-size: 0.9rem;
    color: var(--c-text-sub);
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.pricing-card__price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--c-primary);
}

.pricing-card__price .unit {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 4px;
    color: var(--c-text-sub);
}

.pricing-card__desc {
    font-size: 0.9rem;
    color: var(--c-text-sub);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Pricing List inside Card */
.pricing-list {
    text-align: left;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--c-border);
}

.pricing-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.pricing-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--c-primary);
    font-weight: bold;
}

/* Section Lead */
.section__lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-text-sub);
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Support Section */
.support {
    background-color: var(--c-bg-body);
}

.support__header {
    margin-bottom: 60px;
    text-align: center;
}

.support__step {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid var(--c-border);
}

.support__step:last-child {
    margin-bottom: 0;
}

.support__step-label {
    display: inline-block;
    background: var(--c-primary-light);
    color: var(--c-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.support__step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-text-main);
    margin-bottom: 16px;
}

.support__step-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--c-text-sub);
}

/* Rich Design Elements */
:root {
    --f-hand: 'Zen Kurenaido', sans-serif;
    --f-serif: 'Noto Serif JP', serif;
}

.hand-font {
    font-family: var(--f-hand);
}

/* Handwritten Note */
.hand-note {
    font-family: var(--f-hand);
    font-size: 1.1rem;
    color: var(--c-primary);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    white-space: nowrap;
    background: #FFFAF0;
    padding: 4px 12px;
    border-radius: 20px 4px 20px 4px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.hand-arrow {
    font-weight: bold;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Support Map (Diagnosis Visual) */
.support__map {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

/* Step 1 Node */
.support__node-step1 {
    background: #fff;
    border: 2px solid var(--c-primary);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-badge {
    background: var(--c-primary);
    color: #fff;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.step1-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-text-main);
}

.step1-desc {
    font-size: 0.95rem;
    color: var(--c-text-sub);
    line-height: 1.6;
}

/* Connector Lines */
.support__connector {
    height: 60px;
    width: 100%;
    position: relative;
    margin-bottom: 0;
}

.connector-line-vertical {
    width: 2px;
    height: 30px;
    background: var(--c-border);
    margin: 0 auto;
}

.connector-line-horizontal {
    width: 66%;
    /* Spans roughly across the center of left/right cards */
    height: 2px;
    background: var(--c-border);
    margin: 0 auto;
    position: relative;
}

.connector-branches {
    display: flex;
    justify-content: space-between;
    width: 66%;
    margin: 0 auto;
    height: 30px;
    /* Remaining height */
}

.branch-line {
    width: 2px;
    height: 100%;
    background: var(--c-border);
}

/* Step 2 Routes (Grid) */
.support__routes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Route Cards - Base */
.route-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Thin border base */
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
}

/* Route Card Rich Updates */
.route-card__result {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px;
    border-radius: 8px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.result-label {
    display: block;
    font-size: 0.7rem;
    color: var(--c-text-sub);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.result-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--c-primary);
    line-height: 1.5;
}

/* Icons */
.route-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.route-icon {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

/* Card Content */
.route-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text-main);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 3.2em;
    /* Align textual height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-card__lead {
    font-size: 0.9rem;
    color: var(--c-text-sub);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.route-card__divider {
    border: 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin: 16px 0;
    width: 100%;
}

.route-card__list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.route-card__list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--c-text-sub);
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}

.route-card__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.u-text-sm {
    font-size: 0.75rem;
    color: #888;
}

/* Varaints - Colors */
/* Spot: Yellow */
.route-card--spot {
    background: #FFFBE6;
    /* Light Yellow */
    border-color: #FFE58F;
}

.route-card--spot .route-icon-box {
    color: #FAAD14;
}

.route-card--spot .route-card__list li::before {
    color: #FAAD14;
}

/* Diagnosis: Blue */
.route-card--diag {
    background: #E6F7FF;
    /* Light Blue */
    border-color: #91D5FF;
}

.route-card--diag .route-icon-box {
    color: #1890FF;
}

.route-card--diag .route-card__list li::before {
    color: #1890FF;
}

/* Escort: Green */
.route-card--escort {
    background: #F6FFED;
    /* Light Green */
    border-color: #B7EB8F;
}

.route-card--escort .route-icon-box {
    color: #52C41A;
}

.route-card--escort .route-card__list li::before {
    color: #52C41A;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .support__connector {
        display: none;
        /* Hide complex lines on mobile */
    }

    .support__node-step1::after {
        /* Simple downward arrow for mobile */
        content: "▼";
        display: block;
        text-align: center;
        margin-top: 16px;
        color: var(--c-border);
    }

    .support__node-step1 {
        margin-bottom: 24px;
    }

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

/* Pricing Section Updates */
.pricing {
    padding-top: 40px;
    /* Reduced from default 80px */
}

.pricing__header {
    margin-bottom: 40px;
    text-align: center;
}

.pricing-block {
    margin-bottom: 60px;
}

.pricing-block__title {
    font-size: 1.4rem;
    color: var(--c-text-main);
    border-left: 4px solid var(--c-primary);
    padding-left: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.pricing-block__note {
    font-size: 0.9rem;
    color: var(--c-text-sub);
    margin-bottom: 24px;
    margin-left: 20px;
    opacity: 0.8;
}

/* Pricing Cards Layout */
.pricing__cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: stretch;
    flex-wrap: wrap;
}

.plan-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 32px 24px;
    width: 100%;
    flex: 1;
    /* Expanded */
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.plan-card--standard {
    border: 2px solid var(--c-primary);
    background: #fff;
}

/* Pricing Cards - Premium Feel */
.plan-card--premium-look {
    background-color: #fff;
    background-image:
        linear-gradient(rgba(244, 247, 252, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 247, 252, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.plan-card--premium-look .plan-card__title {
    font-family: var(--f-serif);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

.plan-card__badge-premium {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    /* Unified with standard badge */
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    /* Rounded like standard */
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.highlight-marker {
    background: linear-gradient(transparent 60%, #FFF1B8 60%);
    padding: 0 4px;
    display: inline-block;
}

.plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    /* Accent color for emphasis */
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-card__title {
    font-size: 1.5rem;
    color: var(--c-text-main);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: var(--f-base);
}

.plan-card--standard .plan-card__title {
    color: var(--c-primary);
    font-weight: 700;
}

.plan-card__sub {
    font-size: 0.95rem;
    font-weight: normal;
    color: var(--c-text-sub);
}

.plan-card__price {
    text-align: center;
    background: #F8FAFC;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.plan-card__price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-text-main);
    font-family: var(--f-head);
}

.plan-card__price .unit {
    font-size: 0.9rem;
    margin-left: 4px;
    font-weight: 700;
}

.price-note {
    font-size: 0.8rem;
    color: var(--c-text-sub);
    margin-top: 4px;
}

.plan-card__divider {
    border: 0;
    border-top: 1px dashed var(--c-border);
    margin: 0 0 24px 0;
}

/* Plan Specs (DL) */
.plan-specs {
    font-size: 0.95rem;
}

.plan-spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

.plan-spec:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.plan-spec dt {
    color: var(--c-text-sub);
    font-weight: normal;
    width: 35%;
    flex-shrink: 0;
}

.plan-spec dd {
    text-align: right;
    font-weight: 500;
    width: 65%;
    color: var(--c-text-main);
}

.plan-spec dd strong {
    color: var(--c-primary);
    font-weight: 700;
}

.spec-note {
    font-size: 0.8rem;
    color: var(--c-text-sub);
    font-weight: normal;
}


/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 24px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
    /* Ensure readability */
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    border: 1px solid var(--c-border);
    vertical-align: middle;
}

.pricing-table thead th {
    background: #F8FAFC;
    color: var(--c-text-main);
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--c-primary);
}

.pricing-table .th-standard {
    background: #EBF8FF;
}

.pricing-table .th-premium {
    background: #E6FFFA;
}

.pricing-table .th-sub {
    font-size: 0.8rem;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.pricing-table tbody th {
    background: #F9FAFB;
    text-align: left;
    font-weight: 700;
    width: 15%;
    white-space: nowrap;
}

.pricing-table td {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    width: 42.5%;
}

.pricing-table .td-note {
    font-size: 0.8rem;
    color: var(--c-text-sub);
    display: block;
    margin-top: 4px;
}

.pricing-table .tr-price th,
.pricing-table .tr-price td {
    background: #FFFBEB;
    /* Highlight row */
    font-weight: bold;
}

.pricing-table .price-standard strong {
    font-size: 1.4rem;
    color: var(--c-primary);
}

.pricing-table .price-premium strong {
    font-size: 1.4rem;
    color: var(--c-accent);
}

.pricing-table .price-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--c-text-sub);
}

/* Spot List Updated */
.new-spot-list .spot-item {
    align-items: center;
}

.new-spot-list .spot-item__content {
    flex-grow: 1;
    margin-right: 16px;
}

.new-spot-list .spot-item__desc {
    font-size: 0.85rem;
    color: var(--c-text-sub);
    margin-top: 4px;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-table {
        min-width: 100%;
        /* Collapse to stacked if needed, or scroll */
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px;
        font-size: 0.85rem;
    }

    .support__step {
        padding: 24px;
    }

    .support__step-title {
        font-size: 1.4rem;
    }
}

/* Contact */
.contact {
    background-color: var(--c-accent);
    color: #fff;
    text-align: center;
}

.contact__title {
    font-size: 2.5rem;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact__text {
    font-size: 1.1rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.contact__note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 16px;
}

/* Clean Contact Section */
.contact--clean {
    background-color: #F7F9FC;
    /* Very pale cool gray/blue */
    color: var(--c-text-main);
    /* Dark text */
}

.contact--clean .contact__title {
    color: var(--c-primary);
    /* Primary color for title */
    margin-bottom: 24px;
}

.contact--clean .contact__text {
    color: var(--c-text-sub);
    opacity: 1;
    /* Reset opacity from previous dark theme */
    margin-bottom: 40px;
}

.contact--clean .contact__note {
    color: var(--c-text-sub);
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing__cards {
        flex-direction: column;
        align-items: center;
    }

    .plan-spec {
        font-size: 0.9rem;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Compact & Textured CTA */
.contact--compact-texture {
    padding: 80px 0;
    background-color: #1a1a1a;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        url('data:image/svg+xml,%3Csvg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cfilter id=\"noiseFilter\"%3E%3CfeTurbulence type=\"fractalNoise\" baseFrequency=\"0.65\" numOctaves=\"3\" stitchTiles=\"stitch\"/%3E%3C/filter%3E%3Crect width=\"100%25\" height=\"100%25\" filter=\"url(%23noiseFilter)\" opacity=\"0.05\"/%3E%3C/svg%3E');
    color: #fff;
    text-align: center;
}

.contact--compact-texture .contact__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    font-family: sans-serif;
}

.contact--compact-texture .contact__text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn--solid-round {
    display: inline-block;
    background: var(--c-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 48px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn--solid-round:hover {
    background: var(--c-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .contact--compact-texture {
        padding: 60px 0;
    }

    .contact--compact-texture .contact__title {
        font-size: 1.5rem;
    }
}

/* Pill Design CTA */
.contact--pill {
    padding: 60px 0;
    background-color: #F0F6FF;
    /* Pale Blue */
}

.contact__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.contact--pill .contact__content {
    flex: 1;
    text-align: left;
}

.contact--pill .contact__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--c-primary);
    font-family: var(--f-base);
    line-height: 1.2;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
    font-feature-settings: "palt";
}

.contact--pill .contact__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--c-text-main);
    margin-bottom: 0;
    font-family: var(--f-base);
}

.contact--pill .contact__action {
    flex-shrink: 0;
}

.btn--pill {
    display: inline-block;
    background-color: #1e3a8a;
    /* Dark Blue */
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px 60px;
    border-radius: 9999px;
    /* Pill shape */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    letter-spacing: 0.05em;
}

.btn--pill:hover {
    background-color: #172554;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}

@media (max-width: 768px) {
    .contact__row {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .contact--pill .contact__content {
        text-align: center;
    }

    .btn--pill {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
    }
}

/* Support Section (Tab Editorial) */
.support--tabs {
    padding-bottom: 20px;
    /* Reduced from 40px */
    background: #fff;
}

/* Premium Title Styling */
.premium-title {
    position: relative;
    display: inline-block;
}

.premium-title::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), #4A90D9);
    border-radius: 2px;
}

.premium-accent {
    color: var(--c-primary);
    position: relative;
    display: inline-block;
}

.premium-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary) 0%, #4A90D9 50%, transparent 100%);
    border-radius: 2px;
}

/* Support Header */
.support__header {
    text-align: center;
}

.support__layout {
    max-width: 1000px;
    margin: 60px auto 0;
}

/* Common Layout for Steps */
.step-fixed,
.step-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    position: relative;
}

/* Vertical Label (Index Style) */
.step-label-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--f-base);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--c-primary);
    padding-top: 60px;
    flex-shrink: 0;
    border-right: none;
    padding-right: 0;
    margin-right: 16px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-label-vertical:hover,
.step-fixed:hover .step-label-vertical,
.step-tabs:hover .step-label-vertical {
    color: var(--c-primary);
    transform: translateX(-4px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------
   Card / Container Style
   ---------------------------------- */
.editorial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    /* Subtle border all around */
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    /* Stronger Vertical Line (Hairline) */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-std);
    padding: var(--padding-card);
    position: relative;
    flex: 1;
    transition: all 0.3s ease;
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.step-01-card {
    background: #fff;
}

/* ----------------------------------
   Step 01 Content
   ---------------------------------- */
.step-content-row {
    display: flex;
    gap: 80px;
    /* Wide gap */
    align-items: flex-start;
}

.step-text-col {
    flex: 0 0 60%;
    padding-top: 10px;
    /* Optical adjustment */
}

.step-graphic-col {
    flex: 0 0 30%;
    max-width: 30%;
    overflow: hidden;
}

.step-graphic-col .editorial-graphic {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.step-graphic-col .graphic-img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.step-heading,
.panel-heading {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--c-text-main);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.step-desc {
    font-size: 1rem;
    line-height: 2.2;
    /* Relaxed for editorial feel */
    color: var(--c-text-main);
}

/* Panel Detail (DL in Step 2) */
.panel-detail dl {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.panel-detail dt {
    font-weight: 700;
    color: var(--c-text-sub);
    white-space: nowrap;
    min-width: 80px;
}

.panel-detail dd {
    flex: 1;
    margin: 0;
    min-width: 200px;
}

/* Graphic */
.editorial-graphic {
    width: 100%;
    line-height: 0;
    border-radius: 8px;
    overflow: hidden;
}

.graphic-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* ----------------------------------
   Step 02 Tabs
   ---------------------------------- */
.step-tabs {
    flex-direction: row;
    /* Fix: Label left, Wrapper right */
}

.step-tabs .step-label-vertical {
    position: static;
    /* In flow */
}

.step-tabs-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Nav */
.editorial-tabs-nav {
    display: flex;
    gap: 40px;
    padding-left: 0;
    margin-bottom: -1px;
    /* Overlap border */
    border-bottom: none;
    position: relative;
    z-index: 10;
}

.ed-tab-btn {
    background: none;
    border: 1px solid transparent;
    /* fixed width/height stability */
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    padding: 16px 32px;
    cursor: pointer;
    text-align: left;
    position: relative;
    opacity: 0.6;
    transition: all 0.3s;
}

.ed-tab-btn:hover {
    opacity: 0.8;
}

.ed-tab-btn.active {
    opacity: 1;
    background: transparent;
    /* No background */
    border: 1px solid transparent;
    /* No border */
    border-bottom: none;
    font-weight: 700;
}

.ed-tab-label {
    display: inline-block;
    /* Allow width for underline */
    font-family: var(--f-base);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--c-text-main);
    position: relative;
    padding-bottom: 4px;
}

.ed-tab-btn.active .ed-tab-label {
    color: var(--c-primary);
    /* Highlight text */
}

.ed-tab-btn.active .ed-tab-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-primary);
    /* Brand Color Underline */
}

/* Body */
.editorial-tabs-body {
    /* Inherits .editorial-card styles */
    /* border-top-left-radius removed to match Step 1 */
    padding-left: 50px;
    /* Match card padding */
    min-height: 350px;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    /* Ensure border close */
}

.editorial-tabs-body:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.editorial-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    color: var(--c-primary);
}

/* Panels */
.ed-tab-panel {
    display: none;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.ed-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Details */
.panel-detail dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px 40px;
}

.panel-detail dt {
    font-weight: 700;
    color: var(--c-primary);
}

.panel-detail dd {
    font-size: 0.95rem;
    line-height: 2.2;
    color: var(--c-text-main);
}

/* Unified Colors for Step 02 */
/* Base lines are now subtle gray */
.editorial-bg-lines {
    color: #f3f4f6;
    /* Pale Gray */
}

/* Overrides for dynamic colors - Force White Card */
[data-active-tab] .editorial-tabs-body {
    background: #fff;
}

/* Ensure lines are gray regardless of tab */
[data-active-tab] .editorial-bg-lines {
    color: #f3f4f6;
}


/* Mobile */
@media (max-width: 768px) {

    .step-fixed,
    .step-tabs {
        flex-direction: column;
        gap: 32px;
    }

    .editorial-tabs-nav {
        gap: 24px;
        overflow-x: auto;
        padding-bottom: 10px;
        /* Scrollbar space */
        margin-bottom: 0;
    }

    .step-label-vertical {
        writing-mode: horizontal-tb;
        border-right: none;
        padding: 0;
        margin-right: 0;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .editorial-card {
        padding: 30px;
    }

    .step-content-row {
        flex-direction: column;
        gap: 40px;
    }

    .step-text-col,
    .step-graphic-col {
        width: 100%;
        flex: 1 1 auto;
    }
}

.spot-card-container {
    padding: 30px 40px;
    margin-bottom: 20px;
}

.spot-card-container .pricing-block__title {
    margin-top: 0;
}

/* Spot Menu Item Styles */
.spot-index-item {
    padding: 24px 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.spot-index-item:hover {
    background: rgba(15, 76, 129, 0.03);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.spot-title {
    font-family: var(--f-base);
    font-weight: 700;
}

/* Step Title: L-Accent Style (Applied to All Step Headings) */
.step-heading {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 32px;
    border-left: 4px solid var(--c-primary);
    padding-left: 16px;
    /* Subtle shadow for depth */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 1px;
    background: var(--c-border);
    opacity: 0.7;
}

.step-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 1px;
    background: var(--c-primary);
    z-index: 1;
}

/* Step 2: Double Background & Ghost Badge */
.step-split-container {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.step-split-left {
    background-color: #F8FAFC;
    /* Pale Gray */
    width: 35%;
    padding: 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-split-right {
    background-color: #FFFFFF;
    width: 65%;
    padding: 40px;
}

/* Ghost Badge */
.ghost-badge {
    display: inline-block;
    border: 1px solid var(--c-primary);
    color: var(--c-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: transparent;
    /* Ghost */
}

/* Align Icon Vertical Center */
.step-split-right {
    display: flex;
    align-items: center;
    /* Vertical Center */
    gap: 24px;
}

/* Standard L-Accent Title */
.l-accent-title {
    font-size: 1.5rem;
    /* Adjusted for inner panels */
    font-weight: 700;
    color: var(--c-text-main);
    font-family: var(--f-serif);
    margin-bottom: 24px;
    padding-bottom: 12px;
    position: relative;
    padding-left: 16px;
    border-left: 4px solid var(--c-primary);
    line-height: 1.4;
}

.l-accent-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 1px;
    background: var(--c-border);
    opacity: 0.7;
}

.l-accent-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 1px;
    /* Accent horiz line */
    background: var(--c-primary);
    z-index: 1;
}

/* Step 2 Split Layout Refinement */
.step-split-container {
    align-items: stretch;
    /* Full height */
}

.step-split-left {
    padding: 40px;
    justify-content: flex-start;
    /* Align top */
    gap: 32px;
    /* Space between Title and Image */
}

/* Image in Left Col */
.step-split-left .editorial-graphic {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for image */
}

/* Right Col */
.step-split-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    /* Space between Explanation and DL */
    align-items: flex-start;
    /* Left align text */
}

/* Explanation Text */
.step-explanation {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--c-text-main);
    border-bottom: 1px dashed var(--c-border);
    padding-bottom: 24px;
    width: 100%;
}