/* ============================================
   TIPS PAGE
   ============================================ */
.tips-page {
    background: #fff;
    color: #0f1117;
}

.tips-page .nav {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #eef0f4;
}

.tips-page .nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.tips-hero {
    padding: 150px 0 96px;
    background: #fff;
    text-align: center;
}

.tips-hero .container {
    width: 100%;
    max-width: none;
}

.tips-kicker {
    margin: 0 0 22px;
    color: #697080;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0;
}

.tips-hero h1 {
    max-width: 1180px;
    margin: 0 auto 26px;
    color: #080a0f;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.tips-hero p {
    max-width: 700px;
    margin: 0 auto 32px;
    color: #5f6675;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.75;
}

.tips-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    background: #171826;
    color: #fff !important;
    border-radius: 6px;
    border: 1px solid #171826;
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tips-button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.tips-button span {
    margin-left: 10px;
}

.tips-split-section {
    padding: 96px 0;
    background: #fff;
}

.tips-split-section.tips-muted {
    background: #f6f7f9;
}

.tips-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 46px;
}

.tips-split.reverse .tips-copy {
    order: 1;
}

.tips-split.reverse .tips-image {
    order: 2;
}

.tips-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.tips-copy {
    max-width: 560px;
}

.tips-copy .tips-kicker,
.tips-process .tips-kicker {
    margin-bottom: 18px;
    color: #505868;
}

.tips-copy h2 {
    margin: 0 0 24px;
    color: #080a0f;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.tips-copy p {
    margin: 0 0 16px;
    color: #5f6675;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.8;
}

.tips-process {
    padding: 110px 0 104px;
    background: #fff;
    text-align: center;
}

.tips-process h2 {
    margin: 0 0 56px;
    color: #080a0f;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.tips-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.tips-step {
    max-width: 300px;
    margin: 0 auto;
}

.tips-step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
}

.tips-step h3 {
    margin: 0 0 14px;
    color: #10131b;
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
}

.tips-step p {
    margin: 0;
    color: #5f6675;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.7;
}

.tips-contact-note {
    margin: 18px 0 0;
    color: #697080;
    font-size: 0.9375rem;
    font-weight: 700;
}

.tips-contact-note a {
    color: #171826;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .tips-hero h1,
    .tips-copy h2,
    .tips-process h2 {
        font-size: 3rem;
    }

    .tips-split {
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .tips-hero {
        padding: 124px 0 72px;
    }

    .tips-hero h1,
    .tips-copy h2,
    .tips-process h2 {
        font-size: 2.25rem;
    }

    .tips-title-line {
        white-space: normal;
    }

    .tips-split-section,
    .tips-process {
        padding: 72px 0;
    }

    .tips-split,
    .tips-steps {
        grid-template-columns: 1fr;
    }

    .tips-split.reverse .tips-copy,
    .tips-split.reverse .tips-image {
        order: initial;
    }

    .tips-copy {
        max-width: none;
    }
}
