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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f0f0;
}

/* ============================
   Utilities
============================ */
.d-flex                  { display: flex; }
.align-items-end         { align-items: flex-end; }
.align-items-center      { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center  { justify-content: center; }
.flex-1                  { flex: 1; }
.flex-wrap               { flex-wrap: wrap; }
.list                    { list-style: none; padding: 0; }
.p-relative              { position: relative; }
.pt-3                    { padding-top: 16px; }
.pl-4                    { padding-left: 24px; }
.color-red               { color: #e53935; }
.color-yellow            { color: #ff9800; font-weight: 700; }

/* ============================
   Layout
============================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ld-main { background: #f0f0f0; }

/* ============================
   Shared Heading
============================ */
.ld-heading-primary {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
    padding: 28px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================
   Hero
============================ */
.ld-section-hero {
    display: block;
    line-height: 0;
}

.ld-section-hero img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* ============================
   Steps Guide
============================ */
.ld-section-guild {
    background: #fff;
    padding-bottom: 40px;
}

.guild-text {
    gap: 30px;
    padding: 30px 0;
}

.text-wrap {
    flex: 1;
    text-align: center;
    position: relative;
}

.text-wrap:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #ff9800;
}

.text-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800, #e65100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.text-wrap p {
    font-size: 0.92rem;
    color: #555;
    margin-top: 6px;
}

.text-wrap p a {
    color: #e53935;
    font-weight: 700;
    text-decoration: none;
}

/* ============================
   Policy Boxes
============================ */
.ld-section-policy { padding: 40px 0; }

.p-box {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    scroll-margin-top: 20px;
}

.p-header {
    background: linear-gradient(90deg, #1b2b3a, #0f3460);
    color: #ff9800;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-body { padding: 24px; }

.p-top {
    gap: 20px;
    align-items: flex-start;
}

.p-col { flex: 1; }

.p-col-wrapper { border-bottom: 2px solid #ff9800; }

.p-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff9800, #e65100);
    padding: 10px 16px;
    text-transform: uppercase;
}

.p-col-title.p-col-left {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.p-col-list {
    border: 1px solid #e0e0e0;
    border-top: none;
}

.p-col-list li { border-bottom: 1px solid #eeeeee; }
.p-col-list li:last-child { border-bottom: none; }

.p-col-text {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}

.p-col-left { border-left: 1px solid #e0e0e0; }

.p-col-figure {
    width: 220px;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 16px;
}

.p-col-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.p-bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #e0e0e0;
    font-size: 0.88rem;
    color: #666;
}

.p-bottom p { margin-bottom: 6px; }
.p-bottom p:last-child { margin-bottom: 0; }

/* ============================
   Warranty Conditions
============================ */
.ld-section-condition {
    background: #fff;
    padding-bottom: 50px;
}

.condition-content {
    padding-top: 30px;
    gap: 24px;
}

.c-box {
    flex: 1;
    background: #fafafa;
    border-radius: 10px;
    padding: 28px;
    border: 1px solid #e0e0e0;
}

.c-icon-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #66bb6a, #2e7d32);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.c-icon-reject {
    background: linear-gradient(135deg, #ef5350, #c62828);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.c-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 16px;
}

.c-title p {
    color: #2e7d32;
    font-weight: 700;
    margin: 0;
}

.c-title-reject,
.c-title-reject p { color: #c62828; }

.c-list {
    padding-left: 18px;
    font-size: 0.9rem;
    color: #555;
}

.c-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ============================
   Crypto / Bitcoin Section
============================ */
.ld-section-bitcoin {
    background: #1b2b3a;
    padding-bottom: 50px;
}

.ld-section-bitcoin .ld-heading-primary {
    background: transparent;
    color: #ff9800;
    padding: 40px 20px 20px;
}

.t-image {
    position: absolute;
    left: -20px;
    top: 0;
    opacity: 0.08;
    font-size: 12rem;
    color: #ff9800;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.t-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    z-index: 1;
}

.t-title {
    color: #ff9800;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.t-list {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.t-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ============================
   Contact Section
============================ */
.ld-section-contact {
    background: linear-gradient(135deg, #0d1b2a, #1b2b3a);
    padding: 50px 0;
}

.ld-section-contact .ld-heading-primary {
    background: transparent;
    color: #ff9800;
    padding: 0 20px 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 152, 0, 0.25);
    border-radius: 10px;
    padding: 24px;
}

.contact-card i {
    font-size: 2rem;
    color: #ff9800;
    display: block;
    margin-bottom: 12px;
}

.contact-card strong {
    display: block;
    color: #ff9800;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.contact-card a {
    color: #ff9800;
    font-weight: 700;
    text-decoration: none;
}

/* ============================
   Footer
============================ */
.footer-note {
    text-align: center;
    background: #ff9800;
    color: #fff;
    padding: 24px;
    font-weight: 700;
    font-size: 1rem;
}

.footer-note small {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 6px;
}

/* ============================
   Responsive
============================ */
@media (max-width: 768px) {
    /* Hero */
    .hero-title { font-size: 1.4rem; }
    .hero-inner { flex-direction: column; }
    .hero-contact { width: 100%; }
    .hero-policy-name { font-size: 1.1rem; }

    /* Guild */
    .guild-text { flex-direction: column; gap: 20px; }
    .text-wrap::after { display: none; }

    /* Policy */
    .p-top { flex-direction: column; }
    .p-col-figure { display: none; }
    .p-header { font-size: 1rem; }
    .p-col-text { font-size: 0.82rem; padding: 10px 12px; }
    .p-col-title { font-size: 0.8rem; }

    /* Conditions */
    .condition-content { flex-direction: column; }
}
