* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.template-homepage #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    box-shadow: none;
}

.template-homepage .nav-icon svg {
    fill: #ffffff;
}

.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.home-hero-overlay {
    display: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 32px;
}

.home-hero-content::before {
    content: '';
    display: block;
    width: 38px;
    height: 2px;
    background: #16a34a;
    border-radius: 99px;
    margin: 0 auto 30px;
    animation: heroFadeUp 0.55s ease 0.05s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.home-hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: #000000;
    margin: 0 0 22px;
    letter-spacing: -1.5px;
    animation: heroFadeUp 0.65s ease 0.18s both;
}

.home-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #4a6356;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 48px;
    animation: heroFadeUp 0.65s ease 0.32s both;
}

.home-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.65s ease 0.46s both;
}

.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    letter-spacing: 0.2px;
}

.hero-btn-primary {
    background: #16a34a;
    color: #ffffff;
    border: 1.5px solid #16a34a;
    animation: btnPing 2.8s ease-out 2s infinite;
}

@keyframes btnPing {
    0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35); }
    70%  { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.hero-btn-primary:hover {
    background: #15803d;
    border-color: #15803d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(22, 163, 74, 0.35);
    animation: none;
}

.hero-btn-secondary {
    background: transparent;
    color: #000000;
    border: 1.5px solid rgba(0, 0, 0, 0.28);
}

.hero-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.55);
    color: #000000;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .home-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.hero-scroll-btn-wrap {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
    animation: heroFadeUp 0.65s ease 0.7s both;
}

.hero-scroll-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #16a34a;
    border: 1.5px solid #16a34a;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: heroBob 2s ease-in-out 1.4s infinite;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hero-scroll-btn:hover {
    background: #15803d;
    border-color: #15803d;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    animation-play-state: paused;
}

@keyframes heroBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

.text-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 40px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.text-image-section.tinted {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.04), rgba(22, 163, 74, 0.02));
    border-top: 1px solid rgba(22, 163, 74, 0.1);
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
}

.text-image-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-image-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.text-image-text {
    font-size: 1.05rem;
    color: #374a3f;
    line-height: 1.8;
    margin: 0;
    max-width: 500px;
}

.text-image-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(22, 163, 74, 0.15);
}

.text-image-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 960px) {
    .text-image-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 30px;
    }

    .text-image-section.image-left .text-image-image {
        order: 2;
    }
    .text-image-section.image-left .text-image-content {
        order: 1;
    }
}

@media (max-width: 680px) {
    .text-image-section {
        padding: 60px 24px;
        gap: 30px;
    }

    .text-image-title {
        font-size: 1.6rem;
    }

    .text-image-text {
        font-size: 0.95rem;
    }
}

.cs-section {
    background: #fff;
    padding: 80px 0 0;
}

.cs-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 24px;
    text-align: center;
}

.cs-intro-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    line-height: 1.15;
}

.cs-intro-sub {
    font-size: 1.05rem;
    color: #6b7a72;
    line-height: 1.7;
    margin: 0;
}

.cs-carousel {
    position: relative;
    height: 72vh;
    min-height: 520px;
    overflow: hidden;
}

.cs-track {
    position: relative;
    height: 100%;
}

.cs-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    will-change: transform, opacity;
}

.cs-slide.is-active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

.cs-slide.cs-from-right  { transform: translateX(100%);  opacity: 0; }
.cs-slide.cs-from-left   { transform: translateX(-100%); opacity: 0; }
.cs-slide.cs-to-left     { transform: translateX(-100%); opacity: 0; z-index: 1; }
.cs-slide.cs-to-right    { transform: translateX(100%);  opacity: 0; z-index: 1; }

/* Background images */
.cs-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.cs-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

.cs-slide-bg--placeholder {
    background-color: #1a3a26;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 12px
    );
}

.cs-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.60) 60%,
        rgba(0, 0, 0, 0.40) 100%
    );
}

.cs-watermark {
    position: absolute;
    right: 6%;
    bottom: -4%;
    font-size: clamp(160px, 22vw, 280px);
    font-weight: 900;
    color: #ffffff;
    opacity: 0.04;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
}

.cs-slide-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 0 8% 0 8%;
}

.cs-step-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 18px;
}

.cs-step-of {
    opacity: 0.55;
    font-weight: 500;
}

.cs-step-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
}

.cs-step-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}

.cs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(6px);
}

.cs-arrow:hover {
    background: rgba(22, 163, 74, 0.5);
    border-color: rgba(22, 163, 74, 0.7);
}

.cs-prev { left: 28px; }
.cs-next { right: 28px; }

/* Dot indicators */
.cs-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.cs-dot.is-active {
    background: #16a34a;
    width: 28px;
    border-radius: 4px;
    transform: none;
}

@media (max-width: 768px) {
    .cs-section {
        padding: 60px 0 0;
    }

    .cs-carousel {
        height: 88vmax;
        min-height: 480px;
    }

    .cs-slide-content {
        padding: 0 24px 60px;
    }

    .cs-watermark {
        font-size: 38vw;
        right: -4%;
        bottom: 0;
    }

    .cs-prev { left: 12px; }
    .cs-next { right: 12px; }

    .cs-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ─── Hero Carousel ──────────────────────────────────────────────── */

.hc-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: #0a0a0a;
}

.hc-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hc-brand {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 65%;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 0 5% 0 9%;
    pointer-events: none;
}

.hc-brand > * { pointer-events: auto; }

.hc-brand-inner {
    max-width: 540px;
    animation: hcFadeIn 0.65s ease 0.15s both;
}

@keyframes hcFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hc-accent-bar {
    display: block;
    width: 306px;
    height: 2px;
    background: rgba(255, 255, 255, 0.40);
    border-radius: 99px;
    margin-bottom: 28px;
}

.hc-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.06;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
}

.hc-subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin: 0 0 40px;
    max-width: 380px;
}

.hc-section-title {
    font-size: clamp(1.8rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.hc-section-subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 12px;
}

.hc-section-description {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin: 0;
}

.hc-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hc-section .hero-scroll-btn-wrap {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 20;
    animation: heroFadeUp 0.65s ease 0.7s both;
    pointer-events: none;
}

.hc-section .hero-scroll-btn-wrap .hero-scroll-btn {
    pointer-events: auto;
}

.hc-track {
    position: relative;
    height: 100%;
}

.hc-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    will-change: transform, opacity;
}

.hc-slide.is-active        { transform: translateX(0);     opacity: 1; z-index: 2; }
.hc-slide.hc-from-right    { transform: translateX(100%);  opacity: 0; }
.hc-slide.hc-from-left     { transform: translateX(-100%); opacity: 0; }
.hc-slide.hc-to-left       { transform: translateX(-100%); opacity: 0; z-index: 1; }
.hc-slide.hc-to-right      { transform: translateX(100%);  opacity: 0; z-index: 1; }

.hc-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.hc-slide-bg-placeholder {
    position: absolute;
    inset: 0;
    background-color: #0a0a0a;
}

.hc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.85) 48%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.hc-watermark {
    position: absolute;
    bottom: -8%;
    right: 3%;
    font-size: clamp(160px, 20vw, 280px);
    font-weight: 900;
    color: #ffffff;
    opacity: 0.04;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.hc-slide-content {
    position: relative;
    z-index: 3;
    padding: 0 8% 0 2%;
    max-width: 46%;
}

.hc-step-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 16px;
}

.hc-step-of {
    opacity: 0.55;
    font-weight: 500;
}

.hc-step-title {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}

.hc-step-desc {
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin: 0;
}

.hc-slide-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.22s ease, opacity 0.22s ease;
}

.hc-slide-link:hover {
    color: #ffffff;
    opacity: 0.95;
}

/* Arrows — bottom-right of carousel panel */
.hc-arrow {
    position: absolute;
    bottom: 32px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.70);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    backdrop-filter: blur(6px);
}

.hc-arrow:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.hc-prev { right: 88px; }
.hc-next { right: 32px; }

/* Dots — vertically centred with the arrow buttons */
.hc-dots {
    position: absolute;
    bottom: 51px;
    right: 148px;
    left: auto;
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, width 0.25s ease;
}

.hc-dot.is-active {
    background: rgba(255, 255, 255, 0.88);
    width: 24px;
    border-radius: 4px;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hc-section {
        height: 100svh;
    }

    .hc-brand {
        width: 100%;
        align-items: flex-start;
        padding: 80px 24px 0;
    }

    .hc-brand-inner {
        max-width: 100%;
    }

    .hc-slide {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .hc-slide-content {
        max-width: 100%;
        padding: 0 24px 120px;
    }

    .hc-section .hero-scroll-btn-wrap {
        display: none;
    }

    .hc-watermark {
        font-size: 38vw;
        right: -2%;
    }

    .hc-prev { right: 72px; }
    .hc-dots { right: 124px; bottom: 51px; }
}

/* ─── Customisable Services Section ────────────────────────────────── */

/* ─── Feature / Services Section ─────────────────────────────────────── */

.feat-section {
    background: #ffffff;
    padding: 100px 80px;
    box-sizing: border-box;
}

.feat-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: stretch;
}

.feat-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.feat-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.38);
}

.feat-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.feat-title {
    font-size: clamp(1.9rem, 3.2vw, 1rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.04em;
}

.feat-desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.50);
    line-height: 1.82;
    margin: 0;
}

/* 2x3 card grid */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 48px;
}

.feat-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.22s ease;
}

.feat-card:hover {
    transform: none;
}

.feat-num {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.22);
    font-variant-numeric: tabular-nums;
}

.feat-item-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feat-item-desc {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    margin: 0 0 4px;
    font-weight: 500;
}

.feat-item-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feat-item-list li {
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.65;
    padding-left: 16px;
    position: relative;
}

.feat-item-list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.62em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 960px) {
    .feat-section {
        padding: 80px 32px;
    }

    .feat-inner {
        gap: 40px;
    }

    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .feat-section {
        padding: 60px 20px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── J P Jenkins Section ───────────────────────────────────────────── */

/* Outer section — stays white, provides breathing room around the card */
.jpj-section {
    padding: 80px 40px;
    background: #ffffff;
    overflow: hidden;
}

.jpj-carousel-wrap {
    position: relative;
    max-width: 1680px;
    margin: 0 auto;
}

.jpj-track-wrapper {
    position: relative;
    border-radius: 20px;
    margin: 0 52px;
}

.jpj-track {
    position: relative;
    width: 100%;
}

.jpj-slide {
    width: 100%;
}

/* The dark elevated card */
.jpj-inner {
    background: #111111;
    border-radius: 20px;
    padding: 72px 68px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.20),
        0 32px 72px rgba(0, 0, 0, 0.28);
}

.jpj-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    transition: opacity 0.3s ease;
}

.jpj-showcase {
    position: relative;
}

.jpj-showcase::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at 40% 55%, rgba(255, 255, 255, 0.04) 0%, transparent 68%);
    pointer-events: none;
    border-radius: 24px;
}

.jpj-coming-soon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
}

.jpj-laptop-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.venues-carousel {
    position: relative;
    width: 100%;
}

.venue-slide {
    display: none;
}

.venue-slide.is-active {
    display: block;
}

.venues-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.venue-dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.venue-dot:hover {
    background: rgba(0, 0, 0, 0.38);
    transform: scale(1.2);
}

.venue-dot.is-active {
    background: rgba(0, 0, 0, 0.70);
}

.venues-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.jpj-nav-prev,
.jpj-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.30);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    padding: 0;
}

.jpj-nav-prev { left: 8px; }
.jpj-nav-next { right: 8px; }

.jpj-nav-prev:hover,
.jpj-nav-next:hover {
    color: rgba(0, 0, 0, 0.80);
}

.jpj-img-frame {
    position: relative;
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 12%, black 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 88%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right,  transparent 0%, black 12%, black 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 88%, transparent 100%);
    mask-composite: intersect;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.jpj-img-frame.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.jpj-img {
    width: 100%;
    height: auto;
    display: block;
}

.jpj-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.venue-content {
    display: none;
}

.venue-content.is-active {
    display: flex;
    flex-direction: column;
    gap: 22px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.jpj-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.jpj-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.jpj-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.03em;
}

.jpj-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin: 0;
    max-width: 440px;
}

.jpj-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.jpj-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.jpj-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.50);
    flex-shrink: 0;
}

.jpj-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 7px;
    background: #ffffff;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
    margin-top: 8px;
}

.jpj-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.jpj-btn-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.jpj-btn-row .jpj-btn {
    margin-top: 0;
}

.jpj-see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: transparent;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.jpj-see-more-btn:hover {
    border-color: rgba(255, 255, 255, 0.50);
    color: rgba(255, 255, 255, 0.90);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .jpj-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .jpj-inner {
        padding: 52px 36px;
    }

    .jpj-section {
        padding: 60px 24px;
    }

    .jpj-track-wrapper {
        margin: 0 36px;
    }

    .jpj-showcase {
        order: -1;
    }
}

@media (max-width: 600px) {
    .jpj-section {
        padding: 48px 0;
    }

    .jpj-carousel-wrap {
        padding: 0;
    }

    .jpj-track-wrapper {
        margin: 0;
        border-radius: 0;
    }

    .jpj-inner {
        padding: 40px 24px;
        border-radius: 0;
        box-shadow: none;
    }

    .jpj-content {
        gap: 28px;
    }

    .jpj-nav-prev,
    .jpj-nav-next {
        display: none;
    }

    .jpj-title {
        font-size: 1.65rem;
    }

    .jpj-desc {
        font-size: 0.95rem;
    }

    .jpj-list li {
        font-size: 0.92rem;
    }

    .jpj-btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .jpj-btn,
    .jpj-see-more-btn {
        justify-content: center;
        width: 100%;
    }

    .venues-dots {
        margin-top: 20px;
    }
}

.te-section {
    padding: 80px 40px;
    background: #ffffff;
}

.te-section-header {
    max-width: 860px;
    margin: 0 auto 40px;
}

.te-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.38);
    margin-bottom: 14px;
}

.te-section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
}

.te-section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #111111;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.025em;
}

.te-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    background: #111111;
    border-radius: 20px;
    padding: 72px 68px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.20),
        0 32px 72px rgba(0, 0, 0, 0.28);
}

.te-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.te-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.te-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.te-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.03em;
}

.te-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin: 0;
    max-width: 440px;
}

.te-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.te-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.te-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.50);
    flex-shrink: 0;
}

.te-showcase {
    position: relative;
}

.te-img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 90%, transparent 100%);
    mask-composite: intersect;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-img-frame.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.te-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Public Market Infrastructure Section ─────────────────────── */

.pmi-section {
    padding: 100px 40px;
    background: #ffffff;
}

.pmi-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pmi-header {
    max-width: 720px;
}

.pmi-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.15;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
}

.pmi-intro {
    font-size: 1.02rem;
    color: rgba(0, 0, 0, 0.60);
    line-height: 1.8;
    margin: 0 0 16px;
}

.pmi-intro:last-of-type {
    margin-bottom: 0;
}

.pmi-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pmi-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pmi-item:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

.pmi-trigger {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 24px 32px;
    padding-left: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: background 0.22s ease;
}

.pmi-trigger:hover {
    background: #fafafa;
}

.pmi-trigger-text {
    font-size: 1.08rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.01em;
    text-align: left;
}

.pmi-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.50);
    transition: transform 0.22s ease, color 0.22s ease;
}

.pmi-item.is-open .pmi-trigger-icon {
    transform: rotate(180deg);
    color: rgba(0, 0, 0, 0.70);
}

.pmi-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease, padding 0.22s ease;
}

.pmi-item.is-open .pmi-content {
    max-height: 1500px;
    padding: 0 32px 24px;
}

.pmi-content p {
    font-size: 0.98rem;
    color: rgba(0, 0, 0, 0.60);
    line-height: 1.75;
    margin: 0 0 16px;
}

.pmi-content p:last-child {
    margin-bottom: 0;
}

.pmi-subheading {
    font-size: 0.96rem;
    font-weight: 700;
    color: #000000;
    margin: 16px 0 12px;
}

.pmi-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmi-list li {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.65;
    padding-left: 16px;
    position: relative;
}

.pmi-list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.62em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
}

.pmi-content-divider {
    margin-top: 20px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pmi-footer {
    display: none;
}

.pmi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 7px;
    background: #111111;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
}

.pmi-btn:hover {
    background: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 960px) {
    .te-inner {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 52px 36px;
    }

    .te-section {
        padding: 60px 24px;
    }

    .te-showcase {
        order: -1;
    }
}

@media (max-width: 600px) {
    .te-section {
        padding: 48px 16px;
    }

    .te-inner {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .te-title {
        font-size: 1.7rem;
    }

    .te-desc {
        font-size: 0.95rem;
    }
}


.platform-section {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
}

.platform-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.platform-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.platform-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,
            rgba(8, 13, 10, 0.97) 0%,
            rgba(8, 13, 10, 0.90) 28%,
            rgba(8, 13, 10, 0.60) 52%,
            rgba(8, 13, 10, 0.22) 72%,
            rgba(8, 13, 10, 0.06) 100%
        ),
        linear-gradient(to bottom,
            rgba(8, 13, 10, 0.55) 0%,
            transparent 14%,
            transparent 72%,
            rgba(8, 13, 10, 0.90) 100%
        );
}

.platform-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 72px;
    box-sizing: border-box;
}

.platform-upper {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.platform-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.platform-infra-list {
    margin-top: 32px;
}

.platform-infra-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}

.platform-infra-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 64px;
}

.platform-infra-list ul li {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.50);
    line-height: 1.65;
    padding-left: 14px;
    position: relative;
}

.platform-infra-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
}

.platform-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.38);
}

.platform-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.platform-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.04em;
    max-width: 800px;
}

.platform-subtitle {
    font-size: 1.02rem;
    color: rgba(0, 0, 0, 0.50);
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding-top: 36px;
    row-gap: 36px;
}


.platform-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 32px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: opacity 0.22s ease;
    cursor: default;
}

.platform-card:last-child {
    border-right: none;
    padding-right: 0;
}

.platform-card:not(:first-child) {
    padding-left: 32px;
}

.platform-card:nth-child(4) {
    grid-column: 1;
    border-right: none;
    padding-right: 0;
    padding-left: 0;
}

.platform-card-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.platform-card-body {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.50);
    line-height: 1.65;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .platform-inner {
        padding: 72px 32px;
        gap: 48px;
    }

    .platform-upper {
        flex-direction: column;
        gap: 28px;
    }

    .platform-features {
        grid-template-columns: 1fr;
        gap: 28px 0;
    }

    .platform-card {
        border-right: none;
        padding-right: 0;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .platform-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .platform-card:not(:first-child) {
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    .platform-inner {
        padding: 60px 24px;
        min-height: auto;
    }

    .platform-title {
        font-size: 2.8rem;
    }
}

.signup-section {
    background: #ffffff;
    padding: 100px 40px;
    box-sizing: border-box;
}

.signup-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.signup-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.38);
}

.signup-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.signup-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.04em;
}

.signup-subtitle {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.60);
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.signup-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.signup-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.58);
    letter-spacing: 0.04em;
}

.signup-field input,
.signup-field textarea {
    background: #f8f8f8;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #000000;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    resize: vertical;
}

.signup-field input::placeholder,
.signup-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.30);
}

.signup-field input:focus,
.signup-field textarea:focus {
    border-color: rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.signup-btn {
    align-self: flex-start;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.signup-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .signup-section {
        padding: 80px 32px;
    }

    .signup-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .signup-text {
        position: static;
    }

    .signup-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .signup-section {
        padding: 64px 20px;
    }

    .signup-title {
        font-size: 1.9rem;
    }
}

.footer {
    background: #000000;
    color: #ffffff;
    padding: 0 80px 60px;
    box-sizing: border-box;
}

.footer-header {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-socials a {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #ffffff;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 48px 0 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 4px;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.footer-phone {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.footer-phone a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-phone a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-email a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email a:hover {
    color: #ffffff;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

@media (max-width: 900px) {
    .footer {
        padding: 0 32px 48px;
    }

    .footer-header {
        padding: 48px 0 36px;
    }

    .footer-inner {
        gap: 48px;
        padding: 40px 0 48px;
    }
}

@media (max-width: 560px) {
    .footer {
        padding: 0 20px 40px;
    }

    .footer-header {
        padding: 40px 0 32px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 0 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .pmi-section {
        padding: 80px 32px;
    }

    .pmi-inner {
        gap: 44px;
    }

    .pmi-title {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
    }

    .pmi-trigger {
        padding: 20px 24px;
    }

    .pmi-trigger-text {
        font-size: 1rem;
    }

    .pmi-item.is-open .pmi-content {
        padding: 0 24px 20px;
    }
}

@media (max-width: 560px) {
    .pmi-section {
        padding: 60px 20px;
    }

    .pmi-title {
        font-size: clamp(1.4rem, 2.8vw, 1.8rem);
        margin-bottom: 20px;
    }

    .pmi-intro {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .pmi-trigger {
        padding: 18px 20px;
    }

    .pmi-trigger-text {
        font-size: 0.95rem;
    }

    .pmi-trigger-icon svg {
        width: 18px;
        height: 18px;
    }

    .pmi-item.is-open .pmi-content {
        padding: 0 20px 16px;
    }

    .pmi-list li {
        font-size: 0.9rem;
    }
}