body {
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #1f2937;
    font-family: "Roboto", sans-serif;
}

/* ── Header & Nav ─────────────────────────────────────────────────────────── */
.trades-header {
    background: linear-gradient(135deg, #023859 0%, #0487D9 100%);
    color: #ffffff;
    padding: 24px 20px 0;
}

.trades-nav {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trades-logo {
    height: 60px;
    width: auto;
}

.back-link {
    color: #ffffff;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
}

.back-link:hover {
    text-decoration: underline;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.trades-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trades-hero-content h1 {
    margin: 0 0 20px;
    font-family: "Raleway", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    color: #ffffff;
}

.hero-text {
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 760px;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.hero-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #bfe9ff;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.urgency-line {
    margin: 18px 0 0;
    font-size: 0.92rem;
    color: #bfe9ff;
    font-style: italic;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #023859;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: #eaf6ff;
    border-color: #eaf6ff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ── Hero summary card ────────────────────────────────────────────────────── */
.hero-summary-card {
    background: #ffffff;
    color: #111827;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-summary-card h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-family: "Raleway", sans-serif;
    font-size: 1.6rem;
    color: #023859;
}

.hero-summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.hero-summary-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.55;
    color: #1f2937;
}

.hero-summary-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0487D9;
    font-weight: 700;
}

.hero-price {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0487D9;
}

/* ── Trust bar ────────────────────────────────────────────────────────────── */
.trust-bar {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: #bfe9ff;
}

.trust-icon {
    color: #ffffff;
    font-weight: 700;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section {
    padding: 72px 20px;
}

.section-alt {
    background: #eef5fb;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    margin: 0 0 18px;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #023859;
}

.section-intro {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
    line-height: 1.75;
    font-size: 1.05rem;
    color: #374151;
}

/* ── Info cards ───────────────────────────────────────────────────────────── */
.two-col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    font-family: "Raleway", sans-serif;
    font-size: 1.35rem;
    color: #023859;
}

.info-card p {
    margin: 0;
    line-height: 1.75;
    color: #374151;
}

/* ── Comparison grid ──────────────────────────────────────────────────────── */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: 16px;
    padding: 32px;
}

.comparison-them {
    background: #fff5f5;
    border: 2px solid #fecaca;
}

.comparison-us {
    background: #f0fdf4;
    border: 2px solid #86efac;
}

.comparison-label {
    display: block;
    margin: 0 0 20px;
    font-family: "Raleway", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #023859;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 8px 0;
    font-size: 0.97rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li.bad {
    color: #991b1b;
}

.comparison-list li.good {
    color: #166534;
}

/* ── Testimonial strip ────────────────────────────────────────────────────── */
.testimonial-strip {
    background: linear-gradient(135deg, #023859 0%, #03527f 100%);
    padding: 60px 20px;
    text-align: center;
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    margin-bottom: -10px;
}

.testimonial-text {
    margin: 0 0 20px;
    font-size: 1.3rem;
    line-height: 1.75;
    color: #ffffff;
    font-style: italic;
    font-family: Georgia, serif;
}

.testimonial-author {
    margin: 0;
    font-size: 0.95rem;
    color: #bfe9ff;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.pricing-card {
    background: #ffffff;
    border: 3px solid #0487D9;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: #023859;
    transform: scale(1.02);
}

.pricing-label {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eaf6ff;
    color: #023859;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    margin: 0 0 18px;
    font-family: "Raleway", sans-serif;
    font-size: 1.6rem;
    color: #023859;
}

.setup-price {
    margin: 0 0 8px;
    font-family: "Raleway", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0487D9;
}

.monthly-price {
    margin: 0 0 22px;
    font-size: 1.05rem;
    color: #4b5563;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #374151;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0487D9;
    font-weight: 700;
}

.pricing-card .btn-primary {
    background: #0487D9;
    color: #ffffff;
    border: 2px solid #0487D9;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
}

.pricing-card .btn-primary:hover {
    background: #026bb3;
    border-color: #026bb3;
}

/* ── Highlight strip ──────────────────────────────────────────────────────── */
.highlight-strip {
    background: linear-gradient(135deg, #023859 0%, #03527f 100%);
    color: #ffffff;
    text-align: center;
    padding: 56px 20px;
}

.highlight-strip h2 {
    margin: 0 0 16px;
    font-family: "Raleway", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #ffffff;
}

.highlight-strip p {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 1.05rem;
    color: #bfe9ff;
}

/* ── Steps grid ───────────────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #023859 0%, #0487D9 100%);
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-card h3 {
    margin: 0 0 12px;
    font-family: "Raleway", sans-serif;
    font-size: 1.15rem;
    color: #023859;
}

.step-card p {
    margin: 0;
    line-height: 1.7;
    color: #374151;
    font-size: 0.97rem;
}

/* ── Contact reply promise ────────────────────────────────────────────────── */
.contact-reply-promise {
    text-align: center;
    color: #bfe9ff;
    font-size: 0.97rem;
    margin: -8px 0 24px;
}

/* ── Contact section overrides ────────────────────────────────────────────── */
#contact .section-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
    .trades-hero,
    .two-col-grid,
    .pricing-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .trust-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .trades-header {
        padding: 20px 16px 0;
    }

    .section {
        padding: 56px 16px;
    }

    .hero-summary-card,
    .info-card,
    .pricing-card,
    .comparison-card,
    .step-card {
        padding: 24px;
    }

    .trades-logo {
        height: 52px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .trust-bar-inner {
        gap: 14px;
    }
}
