
/* =====================================================
   ROOT
===================================================== */

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --card: #ffffff;

    --text: #181818;
    --text-dark: #101010;

    --muted: #6f6f6f;
    --muted-light: #909090;

    --line: #e5e5e5;
    --line-soft: #eeeeee;

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff1e8;

    --container: 1240px;

    --transition: all 0.35s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(calc(100% - 48px), var(--container));

    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid var(--line-soft);
}

.nav-container {
    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 30px;
}

.logo,
.footer-logo {
    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: -0.5px;
}

.logo span,
.footer-logo span {
    color: var(--orange);
}

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.desktop-nav a {
    color: var(--muted);

    font-size: 13px;

    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--orange);
}

.talk-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: var(--text-dark);

    border: 1px solid var(--text-dark);

    color: #ffffff;

    font-size: 12px;

    transition: var(--transition);
}

.talk-btn:hover {
    background: var(--orange);

    border-color: var(--orange);
}

.menu-btn {
    display: none;

    width: 42px;

    height: 42px;

    background: #ffffff;

    border: 1px solid var(--line);

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 6px;
}

.menu-btn span {
    width: 18px;

    height: 2px;

    background: var(--text-dark);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    top: 82px;

    left: 0;

    width: 100%;

    height: 0;

    overflow: hidden;

    background: #ffffff;

    z-index: 999;

    border-bottom: 1px solid var(--line);

    transition: 0.4s ease;
}

.mobile-menu.active {
    height: calc(100vh - 82px);
}

.mobile-menu-inner {
    padding: 50px 24px;

    display: flex;

    flex-direction: column;

    gap: 25px;
}

.mobile-menu a {
    font-family: "Manrope", sans-serif;

    font-size: 24px;

    font-weight: 700;

    color: var(--text-dark);
}

.mobile-talk-btn {
    color: var(--orange) !important;
}


/* =====================================================
   HERO
===================================================== */

.legal-hero {
    padding: 120px 0 90px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 55%,
            #fff5ee 100%
        );

    border-bottom: 1px solid var(--line);
}

.hero-eyebrow,
.section-label {
    color: var(--orange);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.legal-hero h1 {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(60px, 9vw, 120px);

    line-height: 0.95;

    letter-spacing: -6px;

    color: var(--text-dark);
}

.legal-hero h1 span {
    color: var(--orange);
}

.hero-bottom {
    margin-top: 60px;

    display: grid;

    grid-template-columns: 1fr 420px;

    gap: 80px;

    align-items: end;
}

.hero-bottom > p {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}

.date-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #ffffff;

    border: 1px solid var(--line);
}

.date-info div {
    padding: 20px;
}

.date-info div:first-child {
    border-right: 1px solid var(--line);
}

.date-info span {
    display: block;

    margin-bottom: 8px;

    color: var(--muted-light);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.date-info strong {
    color: var(--text-dark);

    font-size: 12px;
}


/* =====================================================
   INTRO
===================================================== */

.intro-section {
    padding: 110px 0;

    background: #ffffff;

    border-bottom: 1px solid var(--line);
}

.intro-grid {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 80px;
}

.intro-content {
    max-width: 760px;
}

.intro-content h2 {
    margin-bottom: 40px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -3px;

    color: var(--text-dark);
}

.intro-content h2 span {
    color: var(--orange);
}

.intro-content > p {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}

.intro-content strong {
    color: var(--text-dark);
}

.notice {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 20px;

    margin-top: 45px;

    padding: 30px;

    background: var(--orange-light);

    border-left: 3px solid var(--orange);
}

.notice-number {
    color: var(--orange);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}

.notice p {
    color: #555555;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   MAIN
===================================================== */

.refund-main {
    padding: 100px 0 120px;

    background: var(--bg-soft);
}

.refund-wrapper {
    display: grid;

    grid-template-columns: 250px 1fr;

    gap: 90px;

    align-items: start;
}


/* =====================================================
   SIDEBAR
===================================================== */

.refund-sidebar {
    position: sticky;

    top: 110px;

    background: #ffffff;

    border: 1px solid var(--line);

    padding: 25px;
}

.sidebar-title {
    padding-bottom: 20px;

    border-bottom: 1px solid var(--line);

    color: var(--orange);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.refund-nav {
    display: flex;

    flex-direction: column;
}

.refund-nav a {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid var(--line-soft);

    color: var(--muted);

    font-size: 12px;

    transition: var(--transition);
}

.refund-nav a span {
    min-width: 20px;

    color: var(--muted-light);

    font-size: 10px;
}

.refund-nav a:hover,
.refund-nav a.active {
    padding-left: 5px;

    color: var(--orange);
}

.refund-nav a.active span {
    color: var(--orange);
}


/* =====================================================
   CONTENT
===================================================== */

.refund-content {
    max-width: 850px;
}

.refund-section {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 35px;

    margin-bottom: 75px;

    padding-bottom: 75px;

    border-bottom: 1px solid var(--line);
}

.refund-index {
    color: var(--orange);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 700;
}

.refund-body h2 {
    margin-bottom: 30px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.15;

    letter-spacing: -1.8px;

    color: var(--text-dark);
}

.refund-body p {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =====================================================
   HIGHLIGHT CARD
===================================================== */

.highlight-card {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    margin: 35px 0;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--line);

    border-left: 3px solid var(--orange);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.highlight-icon {
    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    background: var(--orange);

    color: #ffffff;

    font-weight: 700;
}

.highlight-card span,
.process-card > span,
.warning-card span,
.final-note span {
    color: var(--orange);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.highlight-card h3 {
    margin: 15px 0;

    font-family: "Manrope", sans-serif;

    font-size: 23px;

    line-height: 1.35;

    color: var(--text-dark);
}

.highlight-card p {
    margin-bottom: 0;
}


/* =====================================================
   PROCESS CARD
===================================================== */

.process-card {
    margin: 35px 0;

    padding: 35px;

    background: #ffffff;

    border: 1px solid var(--line);
}

.process-flow {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin: 30px 0;
}

.process-flow > div:not(.arrow) {
    flex: 1;

    padding: 18px;

    background: var(--bg-soft);

    text-align: center;
}

.process-flow strong {
    display: block;

    margin-bottom: 7px;

    color: var(--orange);

    font-size: 14px;
}

.process-flow p {
    margin: 0;

    color: var(--text-dark);

    font-size: 12px;

    line-height: 1.4;
}

.process-flow .arrow {
    color: var(--orange);

    font-size: 22px;
}

.process-note {
    margin: 0 !important;

    padding-top: 20px;

    border-top: 1px solid var(--line);

    font-size: 13px !important;
}


/* =====================================================
   INFO CARD
===================================================== */

.info-card {
    margin: 35px 0;

    padding: 35px;

    background: #ffffff;

    border: 1px solid var(--line);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.info-card ul {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px 30px;

    margin-top: 25px;

    list-style: none;
}

.info-card li {
    position: relative;

    padding-left: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}

.info-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--orange);

    font-weight: 700;
}


/* =====================================================
   WARNING CARD
===================================================== */

.warning-card {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #fff7f2;

    border: 1px solid #f6d8c5;

    border-left: 3px solid var(--orange);
}

.warning-icon {
    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border: 2px solid var(--orange);

    border-radius: 50%;

    color: var(--orange);

    font-weight: 800;
}

.warning-card h3 {
    margin: 15px 0;

    font-family: "Manrope", sans-serif;

    font-size: 24px;

    line-height: 1.35;

    color: var(--text-dark);
}

.warning-card p {
    margin-bottom: 0;
}


/* =====================================================
   CONTACT
===================================================== */

.last-section {
    margin-bottom: 45px;

    border-bottom: none;
}

.contact-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    padding-bottom: 10px;

    border-bottom: 2px solid var(--orange);

    color: var(--orange);

    font-size: 14px;

    font-weight: 600;
}

.contact-link span {
    font-size: 20px;

    transition: var(--transition);
}

.contact-link:hover span {
    transform: translateX(7px);
}


/* =====================================================
   FINAL NOTE
===================================================== */

.final-note {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 45px;

    background: #ffffff;

    border: 1px solid var(--line);
}

.final-icon {
    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    background: var(--orange);

    color: #ffffff;

    font-weight: 700;
}

.final-note h3 {
    margin: 15px 0;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    line-height: 1.35;

    color: var(--text-dark);
}

.final-note p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   CTA
===================================================== */

.bottom-cta {
    padding: 120px 0;

    background: #fff4ed;

    border-top: 1px solid var(--line);
}

.bottom-cta-grid {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;
}

.bottom-cta h2 {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1;

    letter-spacing: -3px;

    color: var(--text-dark);
}

.bottom-cta h2 span {
    color: var(--orange);
}

.large-cta {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 16px 25px;

    background: var(--text-dark);

    color: #ffffff;

    font-size: 15px;

    transition: var(--transition);
}

.large-cta span {
    font-size: 24px;

    transition: var(--transition);
}

.large-cta:hover {
    background: var(--orange);
}

.large-cta:hover span {
    transform: translateX(6px);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #171717;

    color: #ffffff;
}

.footer-top {
    display: flex;

    justify-content: space-between;

    gap: 50px;

    padding: 65px 0;
}

.footer-logo {
    color: #ffffff;
}

.footer-top p {
    max-width: 330px;

    margin-top: 18px;

    color: #a5a5a5;

    font-size: 13px;

    line-height: 1.7;
}

.footer-links {
    display: flex;

    align-items: flex-start;

    flex-wrap: wrap;

    gap: 18px 25px;

    max-width: 600px;
}

.footer-links a {
    color: #a5a5a5;

    font-size: 12px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #777777;

    font-size: 11px;
}

.footer-bottom a:hover {
    color: var(--orange);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .talk-btn {
        margin-left: auto;
    }

    .hero-bottom {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .date-info {
        max-width: 500px;
    }

    .intro-grid,
    .refund-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .refund-sidebar {
        position: static;
    }

    .refund-nav {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 0 30px;
    }
}


@media (max-width: 768px) {

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .nav-container {
        min-height: 72px;
    }

    .mobile-menu {
        top: 72px;
    }

    .legal-hero {
        padding: 80px 0 65px;
    }

    .legal-hero h1 {
        letter-spacing: -3px;
    }

    .hero-bottom {
        margin-top: 45px;
    }

    .hero-bottom > p {
        font-size: 16px;
    }

    .intro-section {
        padding: 80px 0;
    }

    .refund-main {
        padding: 70px 0 90px;
    }

    .refund-nav {
        grid-template-columns: 1fr;
    }

    .refund-section {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;

        padding-bottom: 50px;
    }

    .refund-body h2 {
        font-size: 30px;
    }

    .info-card ul {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;

        align-items: stretch;
    }

    .process-flow .arrow {
        text-align: center;

        transform: rotate(90deg);
    }

    .warning-card,
    .highlight-card {
        grid-template-columns: 1fr;
    }

    .final-note {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 30px;
    }

    .bottom-cta {
        padding: 80px 0;
    }

    .bottom-cta-grid {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


@media (max-width: 500px) {

    .talk-btn {
        display: none;
    }

    .menu-btn {
        margin-left: auto;
    }

    .legal-hero h1 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .date-info {
        grid-template-columns: 1fr;
    }

    .date-info div:first-child {
        border-right: none;

        border-bottom: 1px solid var(--line);
    }

    .notice {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 25px;
    }

    .info-card,
    .process-card,
    .warning-card,
    .highlight-card {
        padding: 25px;
    }

    .warning-card h3,
    .highlight-card h3 {
        font-size: 21px;
    }
}
