@import url("variables.css");
@import url("base.css");
@import url("components.css");

/* =========================================================
   Layout & Pages (Remaining)
========================================================= */
/* =========================================================
   Layout
========================================================= */

.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid #EEEEEE;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: var(--header-height-sp);
}

.sidebar-main {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.sidebar-logo {
    display: flex;
    align-items: center;
}

.logo-img-pc {
    display: none;
}

.logo-img-sp {
    width: 100%;
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

.sidebar-catchphrase, .sidebar-footer {
    display: none;
}

.sidebar-cta {
    display: none;
}

.main-content {
    flex: 1;
    width: 100%;
}

/* Sections Common */
section {
    padding: 60px 20px;
    background-color: var(--color-bg-white);
}

section:nth-child(even) {
    background-color: var(--color-bg-light);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--color-purple);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-lead {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* =========================================================
   Specific Sections
========================================================= */

/* ① FV */
.section-fv {
    position: relative;
    padding: 0;
    height: calc(100vh - var(--header-height-sp));
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}

.fv-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.fv-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-text-white);
    padding: 0 20px;
}

.fv-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.fv-desc {
    font-size: 16px;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    font-weight: 500;
}

/* ② Creators */
.creator-card {
    text-align: center;
}

.creator-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    margin: 0 auto;
    background-color: var(--color-pink);
    border: 2px solid var(--color-bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
}

.creator-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.creator-id {
    font-size: 12px;
    color: var(--color-text-sub);
}

.creators-slider-1 .swiper-wrapper,
.creators-slider-2 .swiper-wrapper {
    transition-timing-function: linear; /* for smooth infinite scroll */
}

/* ③ Worries */
.worries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.worry-item {
    background: var(--color-bg-white);
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    padding: 24px 16px;
    width: calc(50% - 10px);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.worry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: block;
    object-fit: contain;
}

.worry-item p {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.worries-solution {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    padding: 24px 12px;
    background: rgba(178, 130, 255, 0.05);
    border-radius: 16px;
    border: 2px solid var(--color-purple);
}

/* ④ About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.about-item {
    background: var(--color-bg-white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.about-icon {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto 16px;
    display: block;
    object-fit: contain;
}

.about-item-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--color-purple);
    margin-bottom: 8px;
}

.about-item p:last-child {
    font-size: 14px;
    font-weight: 600;
}

/* ⑤ Support */
.support-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-card {
    background: linear-gradient(135deg, rgba(178, 130, 255, 0.1), rgba(121, 237, 255, 0.1));
    border: 2px solid var(--color-purple);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(178, 130, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: block;
    object-fit: contain;
    mix-blend-mode: darken;
}



.support-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.support-card p {
    font-size: 14px;
    color: var(--color-text-sub);
    text-align: left;
}

/* ⑥ Videos */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.video-item {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 16px;
    background: #333;
}

/* ⑦ Voices */
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.voice-card {
    background: var(--color-bg-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.voice-creator {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.voice-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-pink);
    background: var(--color-yellow);
    margin-right: 16px;
    object-fit: cover;
}

.voice-name {
    font-weight: 700;
    font-size: 16px;
}

.voice-comment {
    background: var(--color-bg-light);
    padding: 16px;
    border-radius: 8px;
}

.voice-text {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.6;
}

.voice-hash {
    font-size: 12px;
    color: var(--color-blue);
    font-weight: 700;
}

/* ⑧ Flow */
.flow-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px; /* Space for the top badge */
}

.flow-card {
    background: var(--color-bg-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
    border: 2px solid rgba(178, 130, 255, 0.1);
}

.flow-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 44px;
    height: 44px;
    background: var(--gradient-brand);
    color: var(--color-text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(178, 130, 255, 0.3);
    z-index: 2;
}

.flow-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.flow-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 8px;
}

.flow-text p {
    font-size: 13px;
    color: var(--color-text-sub);
    line-height: 1.5;
    text-align: left;
}

/* Arrow between cards on mobile */
.flow-arrow {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--color-purple);
    z-index: 1;
}

/* Hide arrow on the last card */
.flow-card:last-child .flow-arrow {
    display: none;
}

/* ⑨ FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-q {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    list-style: none;
    font-size: 15px;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-purple);
}

.faq-item[open] .faq-q::after {
    content: '-';
}

.faq-a {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--color-text-sub);
    line-height: 1.6;
    border-top: 1px dashed #EEEEEE;
    margin-top: 10px;
    padding-top: 20px;
}

/* ⑩ CTA */
.section-cta {
    background: var(--gradient-brand);
    text-align: center;
    color: var(--color-text-white);
    padding: 80px 20px;
}

.cta-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.4;
}

.cta-box {
    background: var(--color-bg-white);
    border-radius: 24px;
    padding: 40px 20px;
    color: var(--color-text-main);
    max-width: 500px;
    margin: 0 auto;
}

.cta-lead {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-sub {
    font-size: 14px;
    color: var(--color-text-sub);
    margin-top: 16px;
}

/* SP Header Button */
.btn-header-sp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(178, 130, 255, 0.4);
    margin-left: auto; /* Push it to the right */
}

.btn-header-sp i {
    margin-right: 4px;
    font-size: 14px;
}

/* =========================================================
   Media Queries (PC)
========================================================= */

@media screen and (min-width: 1024px) {
    :root {
        --sidebar-width: 50%;
    }

    body {
        background: linear-gradient(-45deg, #E8FAFF, #F4ECFF, #FFEBF6, #FFFCEB);
        background-size: 400% 400%;
        animation: bgGradientPC 15s ease infinite;
        display: block;
    }

    @keyframes bgGradientPC {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .layout-wrapper {
        display: block;
    }

    /* Sidebar PC */
    .sidebar {
        width: calc(75% - 200px);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        padding: 40px 0;
        position: fixed;
        left: 0;
        top: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .sidebar-main {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .logo-img-pc {
        display: block;
        width: 100%;
        max-width: 160px;
        height: auto;
        margin: 0 auto 24px auto;
        object-fit: contain;
    }

    .logo-img-sp {
        display: none;
    }

    .sidebar-catchphrase {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: var(--color-text);
        margin-bottom: 40px;
        text-align: center;
    }

    .sidebar-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 40px;
    }

    .sidebar-cta-text {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--color-text);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .sidebar-cta-text::before,
    .sidebar-cta-text::after {
        content: '';
        width: 20px;
        height: 1px;
        background-color: var(--color-text);
    }
    
    .sidebar-cta .btn-primary {
        width: 100%;
        border: 2px solid var(--color-text);
        box-shadow: none;
    }

    .sidebar-footer {
        display: block;
        width: 100%;
        text-align: center;
        position: relative;
    }

    .sns-links {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .sns-icon {
        width: 48px;
        height: 48px;
        background: #222222;
        color: #FFFFFF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .sns-icon:hover {
        background: var(--color-purple);
        color: #FFFFFF;
    }

    .footer-links {
        list-style: none;
        margin-bottom: 24px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 13px;
        color: var(--color-text-sub);
    }

    .copyright {
        font-size: 12px;
        color: #999999;
    }

    /* Main Content PC */
    .main-content {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        background-color: transparent;
        display: flex;
        justify-content: center;
        padding: 40px 0;
    }

    .smartphone-frame {
        width: 400px;
        min-width: 400px;
        background-color: var(--color-bg-white);
        border: 2px solid #333;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        display: block;
    }

    .smartphone-frame > section {
        width: 100%;
        max-width: none;
        box-shadow: none;
    }

    .btn-header-sp {
        display: none;
    }

    /* Adjust Sections for PC */
    section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 40px;
    }
    
    .section-fv {
        height: 100vh;
        max-height: 900px;
    }

    .fv-title {
        font-size: 48px;
    }

    .fv-desc {
        font-size: 20px;
    }


    .creator-name {
        font-size: 16px;
    }

    .worries-grid {
        gap: 24px;
    }

    .worry-item {
        width: calc(50% - 12px);
        padding: 30px 16px;
    }

    .worry-item p {
        font-size: 14px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .voice-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }


    
    .faq-list {
        max-width: 100%;
    }
}

/* =========================================
   Privacy Policy Page
========================================= */
.page-privacy {
    background-color: transparent;
}

.privacy-container {
    padding: 40px 24px;
}

/* =========================================
   Company Page
========================================= */
.page-company {
    background-color: transparent;
}

.company-container {
    padding: 40px 24px;
}

.company-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(178, 130, 255, 0.1);
    padding-bottom: 24px;
}

.company-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.company-subtitle {
    font-size: 14px;
    color: var(--color-purple);
    font-weight: 700;
    letter-spacing: 2px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.company-table th {
    width: 35%;
    font-weight: 700;
    color: var(--color-text-main);
    font-size: 15px;
}

.company-table td {
    width: 65%;
    color: var(--color-text-sub);
    font-size: 15px;
}

/* 最後のボーダーを消す場合は以下（デザイン次第） */
.company-table tr:last-child th,
.company-table tr:last-child td {
    /* border-bottom: none; */
}

@media (max-width: 768px) {
    .company-container {
        padding: 32px 20px;
    }
    
    .company-title {
        font-size: 24px;
    }
    
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: none;
    }
    
    .company-table th {
        padding-top: 24px;
        font-size: 14px;
    }
    
    .company-table td {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        font-size: 14px;
    }
}

/* =========================================
   Contact Form Page
========================================= */
.page-contact {
    background-color: transparent;
}

.contact-container {
    padding: 40px 24px;
}

.contact-header {
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(178, 130, 255, 0.1);
    padding-bottom: 24px;
}

.contact-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 14px;
    color: var(--color-purple);
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-notice {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-sub);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.form-group-radio,
.form-group-textarea {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.form-label {
    flex: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-required {
    background-color: #61DACB;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.form-input {
    flex: 1;
    width: 100%;
}

.form-input input[type="text"],
.form-input input[type="tel"],
.form-input input[type="email"],
.form-input textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input input:focus,
.form-input textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(178, 130, 255, 0.1);
}

.form-input input::placeholder,
.form-input textarea::placeholder {
    color: #BDBDBD;
}

.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--color-text-main);
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-label input[type="radio"]:checked {
    border-color: #61DACB;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #61DACB;
    border-radius: 50%;
}

.form-agreement {
    margin-top: 16px;
    text-align: center;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-main);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.link-privacy {
    text-decoration: underline;
    color: var(--color-text-main);
}

.link-privacy:hover {
    color: var(--color-purple);
}

.form-submit {
    margin-top: 24px;
    text-align: center;
}

.btn-submit {
    background-color: #FFC107;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 48px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.contact-success {
    text-align: center;
    padding: 40px 20px;
    background: #F4FBF9;
    border-radius: 16px;
    border: 1px solid #E2F5F2;
    animation: fadeIn 0.5s ease;
}

.contact-success i {
    font-size: 48px;
    color: #61DACB;
    margin-bottom: 16px;
}

.contact-success h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.contact-success p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-sub);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Mobile Footer (Used in smartphone-frame)
========================================= */
.mobile-footer {
    display: block;
    background-color: var(--color-bg-white);
    padding: 40px 20px;
    text-align: center;
}

.mobile-footer .sns-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.mobile-footer .sns-icon {
    width: 48px;
    height: 48px;
    background: #222222;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
}

.mobile-footer .footer-content-wrapper {
    display: inline-block;
    text-align: left;
}

.mobile-footer .footer-links {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.mobile-footer .footer-links li {
    margin-bottom: 16px;
}

.mobile-footer .footer-links a {
    font-size: 14px;
    color: var(--color-text-sub);
    text-decoration: none;
}

.mobile-footer .copyright {
    font-size: 12px;
    color: #999999;
}

@media (max-width: 1023px) {
    .main-content {
        display: flex;
        flex-direction: column;
    }
    .smartphone-frame {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .mobile-footer {
        padding-bottom: 40px; /* padding adjusted to remove extra space */
        margin-top: auto;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 32px 20px;
    }
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(178, 130, 255, 0.1);
    padding-bottom: 24px;
}

.privacy-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.privacy-subtitle {
    font-size: 14px;
    color: var(--color-purple);
    font-weight: 700;
    letter-spacing: 2px;
}

.privacy-content section {
    margin-bottom: 32px;
}

.privacy-content section:last-child {
    margin-bottom: 0;
}

.privacy-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-content h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--gradient-brand);
    border-radius: 4px;
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-sub);
    margin-bottom: 12px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-sub);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.privacy-content li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-purple);
}

@media (max-width: 768px) {
    .page-privacy {
        padding: 40px 16px;
    }
    
    .privacy-container {
        padding: 32px 20px;
        border-radius: 16px;
    }
    
    .privacy-title {
        font-size: 24px;
    }
    
    .privacy-content h2 {
        font-size: 16px;
    }
    
    .privacy-content p, .privacy-content li {
        font-size: 14px;
    }
}
