/* ===== Ads Page Styles ===== */

.active-link {
    font-weight: 700;
    color: var(--white) !important;
}

/* Hero */
.ads-hero {
    padding: 160px 0 90px;
    text-align: center;
    background: var(--gradient);
    background-size: 400% 400%;
    animation: gradientShift 18s ease infinite;
    color: #ffffff;
}

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

.ads-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.ads-hero-title {
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 26px;
}

.ads-hero-title .highlight {
    background: linear-gradient(120deg, #8ab0c4, #cfe3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ads-hero-sub {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ads-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Core section */
.ads-core {
    padding: 90px 0;
    background: var(--black);
}

.ads-core-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

.ads-core-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.ads-core-text strong {
    color: var(--white);
}

/* Flow steps */
.ads-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ads-flow-step {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ads-flow-step.highlight-step {
    background: linear-gradient(135deg, #3a3a3a, #5a7a90);
    border: none;
}

.ads-flow-step.highlight-step h4,
.ads-flow-step.highlight-step p {
    color: #ffffff;
}

.ads-flow-num {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.highlight-step .ads-flow-num {
    background: rgba(255, 255, 255, 0.25);
}

.ads-flow-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.ads-flow-step p {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0;
}

.ads-flow-arrow {
    text-align: center;
    color: var(--gray-700);
    font-size: 20px;
    line-height: 1;
}

/* Compare */
.ads-compare {
    padding: 90px 0;
    background: #ffffff;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.compare-card {
    border-radius: 20px;
    padding: 38px 34px;
}

.compare-them {
    background: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-us {
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a, #5a7a90);
    color: #ffffff;
}

.compare-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
}

.compare-them h3 {
    color: var(--gray-400);
}

.compare-us h3 {
    color: #ffffff;
}

.compare-card ul {
    list-style: none;
}

.compare-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    font-size: 15.5px;
    line-height: 1.6;
}

.compare-them li {
    color: var(--gray-400);
}

.compare-them li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

.compare-us li {
    color: rgba(255, 255, 255, 0.92);
}

.compare-us li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8ee6b8;
    font-weight: 700;
}

/* Family */
.ads-family {
    padding: 90px 0;
    background: var(--black);
}

.ads-family-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.ads-family-inner h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin: 16px 0 24px;
}

.ads-family-inner p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.ads-family-line {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--white) !important;
    margin: 30px 0 !important;
}

/* Final CTA */
.ads-final {
    padding: 90px 0 110px;
    text-align: center;
    background: var(--gradient);
    background-size: 400% 400%;
    animation: gradientShift 18s ease infinite;
}

.ads-final h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    max-width: 760px;
    margin: 0 auto 18px;
}

.ads-final p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 36px;
}

.ads-final-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 860px) {
    .ads-core-grid,
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ads-hero {
        padding: 130px 0 70px;
    }
}
