/* ===========================
   未瑠 / Miru Portfolio
   =========================== */

:root {
    --white:        #FFFFFF;
    --bg:           #F8F8F6;
    --accent:       #7B9EAD;
    --accent-light: #B8CDD5;
    --accent-dark:  #5A7D8C;
    --dark:         #1A1A1A;
    --greige:       #707070;
    --text:         #4A4A4A;
    --text-light:   #999999;
    --border:       #E2E2E2;
    --shadow:       rgba(0, 0, 0, 0.07);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --transition:   0.4s ease;
    --radius:       4px;
    --font-en:      'Montserrat', sans-serif;
    --font-ja:      'Noto Sans JP', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-ja);
    color: var(--text);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Container ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 28px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 18px 0;
    box-shadow: 0 1px 24px var(--shadow);
}
.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo-ja {
    font-family: var(--font-ja);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
}
.logo-slash {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 300;
    color: var(--accent);
}
.logo-en {
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 0.08em;
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--dark);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-ja {
    display: block;
    font-family: var(--font-ja);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-transform: none;
    margin-top: 3px;
}
.nav-links a:hover { color: var(--accent); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    height: 100svh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: heroImgFadeIn 4s ease forwards;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.30) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
}
.hero-label {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--accent-dark);
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(26px, 4.5vw, 50px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.hero-name {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--text-light);
    margin-bottom: 52px;
}
.hero-btn {
    display: inline-block;
    padding: 15px 44px;
    border: 1px solid var(--dark);
    color: var(--dark);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.hero-btn:hover {
    background: var(--dark);
    color: var(--white);
}
.hero-scroll {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 1;
}
.hero-scroll span {
    font-family: var(--font-en);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--text-light);
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollAnim 2.2s ease infinite;
}
@keyframes scrollAnim {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ===========================
   FADE IN ANIMATIONS
   =========================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    animation: none;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 1.0s; }
.delay-3 { animation-delay: 1.8s; }

/* カーソルが動いたら発火 */
.hero.hero-active .hero-overlay {
    opacity: 1;
}
.hero.hero-active .fade-in-up {
    animation: fadeUp 1.6s ease forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   SECTION COMMON
   =========================== */
section { padding: 110px 0; }

.section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 300;
    color: var(--dark);
    letter-spacing: 0.04em;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-desc {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 0.03em;
}

/* ===========================
   WORKS
   =========================== */
.works-section { background: var(--bg); }

.filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 26px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-light);
    background: var(--white);
    transition: all var(--transition);
    text-transform: uppercase;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 28px;
    row-gap: 180px;
}

.work-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}
.work-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px var(--shadow-hover);
}

.work-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.work-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.work-card:hover .work-img-wrap img {
    transform: scale(1.06);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 125, 140, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay span {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--white);
    text-transform: uppercase;
}

.work-info {
    padding: 18px 22px;
}
.work-info h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
}
.work-tag {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
}

.furniture-section {
    margin-top: 343px;
}
.furniture-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 240px;
    align-items: center;
    margin-left: -310px;
    margin-right: -300px;
}
.furniture-images {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-left: 140px;
}
.furniture-img {
    flex: 0 0 476px;
}
.furniture-img img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: contain;
}
.furniture-img2 {
    flex: 0 0 auto;
}
.furniture-img2 img {
    display: block;
    width: 260px;
    height: 430px;
    object-fit: cover;
}
.furniture-content {
    padding: 20px 0;
    max-width: 460px;
}
.furniture-heading {
    font-size: 25px;
    font-weight: 700;
    color: var(--greige);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    text-align: center;
}
.furniture-heading2 {
    font-size: 29px;
    font-weight: 700;
    color: var(--greige);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    text-align: center;
}
.furniture-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    color: var(--dark);
    letter-spacing: 0.05em;
    text-align: center;
}
.furniture-text strong {
    color: var(--dark);
}
@media (max-width: 768px) {
    .furniture-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
        margin-right: 0;
    }
    .furniture-text {
        font-size: 15px;
    }
    .furniture-images {
        justify-content: center;
        margin-left: 0;
        gap: 16px;
    }
    .furniture-img {
        flex: 1 1 0;
        max-width: 175px;
    }
    .furniture-img img {
        height: 140px;
    }
    .furniture-img2 {
        flex: 1 1 0;
        max-width: 130px;
    }
    .furniture-img2 img {
        width: 100%;
        height: 210px;
    }
}

.furniture-section2 {
    margin-top: 250px;
}
.furniture-grid2 {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.furniture-content2 {
    padding: 20px 0;
    max-width: 420px;
}
.furniture-text2 {
    font-size: 21px;
    font-weight: 300;
    line-height: 2;
    color: var(--dark);
    letter-spacing: 0.05em;
    text-align: center;
}
.furniture-img3 img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .furniture-grid2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .furniture-img3 { order: 1; }
    .furniture-content2 { order: 2; }
    .furniture-img3 img {
        height: auto;
    }
    .furniture-heading2 {
        font-size: 20px;
    }
    .furniture-text2 {
        font-size: 15px;
    }
}

.furniture-section3 {
    margin-top: 290px;
}
.furniture-section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--greige);
    letter-spacing: 0.1em;
    margin-bottom: 170px;
}
.furniture-grid3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 85px;
}
.furniture-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 16px;
}
.furniture-caption-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--greige);
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    text-align: center;
}
.furniture-caption-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--dark);
    letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
    .furniture-grid3 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }
}
@media (max-width: 768px) {
    .furniture-grid3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        row-gap: 32px;
    }
    .furniture-item img {
        height: 140px;
    }
    .furniture-caption-title {
        font-size: 14px;
    }
    .furniture-caption-text {
        font-size: 12px;
    }
    .furniture-section-title {
        margin-bottom: 48px;
    }
}

.works-more {
    text-align: center;
    margin-top: 300px;
}
.btn-outline {
    display: inline-block;
    padding: 15px 52px;
    border: 1px solid var(--dark);
    color: var(--dark);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-img img {
    width: 100%;
    max-width: 80%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
}
.about-content .section-label { margin-bottom: 12px; text-align: center; }
.about-content .section-title { margin-bottom: 28px; text-align: center; }

.about-catch {
    font-size: 18px;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: 0.04em;
    margin-bottom: 22px;
    font-style: italic;
    text-align: center;
}
.about-text {
    font-size: 14px;
    line-height: 2.1;
    color: var(--text);
    margin-bottom: 44px;
    text-align: center;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.service-item {
    padding-bottom: 6px;
    border: none;
    border-bottom: 1px solid var(--dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--dark);
}

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--bg); }

.contact-form {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-ja);
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    resize: vertical;
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.btn-primary {
    display: block;
    width: 100%;
    padding: 17px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.contact-img {
    width: calc(100vw - 260px);
    position: relative;
    left: 50%;
    margin-left: calc(-50vw + 130px);
    margin-top: 56px;
}
.contact-img img {
    display: block;
    width: 100%;
    aspect-ratio: 3.375 / 1;
    object-fit: fill;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 48px 0;
    background: var(--dark);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer .logo-ja { color: var(--white); font-size: 16px; }
.footer .logo-slash { color: var(--accent-light); }
.footer .logo-en { color: var(--accent-light); font-size: 14px; }

.footer-sns {
    display: flex;
    gap: 50px;
}
.footer-sns a {
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
    transition: color var(--transition);
}
.footer-sns a:hover { color: var(--accent-light); }

.footer-copy {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}
.footer-legal a {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent-light); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .works-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-img { max-width: 380px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-container { padding: 0 24px; }
    section { padding: 80px 0; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 24px 24px;
        gap: 20px;
        box-shadow: 0 8px 24px var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    .works-grid { grid-template-columns: 1fr; row-gap: 64px; }
    .pc-only { display: none; }
    .furniture-heading { font-size: 20px; }

    .furniture-section { margin-top: 100px; }
    .furniture-section2 { margin-top: 80px; }
    .furniture-section3 { margin-top: 80px; }
    .works-more { margin-top: 80px; }

    .about-grid {
        display: grid;
        grid-template-columns: 50% 1fr;
        grid-template-areas:
            "img label"
            "img title"
            "img tags"
            "catch catch"
            "text text";
        column-gap: 16px;
        row-gap: 8px;
    }
    .about-content { display: contents; }
    .about-img { grid-area: img; max-width: 100%; }
    .about-img img { max-width: 100%; }
    .about-content .section-label { grid-area: label; }
    .about-content .section-title { grid-area: title; }
    .services-list { grid-area: tags; }
    .about-catch { grid-area: catch; margin-top: 24px; }
    .about-text { grid-area: text; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-sns { justify-content: center; }
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    cursor: zoom-out;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.94);
    transition: transform 0.35s ease;
    cursor: default;
}
.lightbox.active .lightbox-img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
    cursor: pointer;
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .lightbox { padding: 6px; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-img { max-width: 99%; max-height: 96%; }
    .contact-img {
        width: 100vw;
        margin-left: calc(-50vw);
    }
    .contact { padding-bottom: 0; }
    .footer { padding: 24px 0; }
}

/* ===========================
   PRICE PAGE
   =========================== */
.price-section { padding-top: 180px; }
.price-intro {
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
}
.delivery-badge {
    max-width: 480px;
    margin: -32px auto 56px;
    padding: 20px 32px;
    text-align: center;
    background: rgba(123, 158, 173, 0.08);
    border: 1px solid var(--accent-light);
    border-radius: var(--radius);
}
.delivery-badge-label {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.delivery-badge-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark);
}
.delivery-badge-text strong { color: var(--accent-dark); }

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-hover);
}
.price-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.price-row:first-of-type { border-top: none; }
.price-row-label {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.05em;
}
.price-row-value {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-dark);
    letter-spacing: 0.03em;
}
.price-card-desc {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-light);
}
.price-note {
    max-width: 640px;
    margin: 56px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
}
.price-note a {
    color: var(--accent-dark);
    text-decoration: underline;
}
.price-note a:hover { color: var(--accent); }
.price-cta {
    text-align: center;
    margin-top: 56px;
}

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

@media (max-width: 768px) {
    .price-section { padding-top: 140px; }
    .price-grid { grid-template-columns: 1fr; gap: 20px; }
    .price-intro { margin-bottom: 40px; }
}

/* ===========================
   THANKS PAGE
   =========================== */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
}
.thanks-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 20px;
}
.thanks-text {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ===========================
   TERMS PAGE
   =========================== */
.terms-section { padding-top: 180px; }
.terms-list {
    max-width: 720px;
    margin: 0 auto;
}
.terms-block {
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.terms-block:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.terms-heading {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.terms-text {
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .terms-section { padding-top: 140px; }
}
