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

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

.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;
}

.trades-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.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;
}

.hero-buttons-center {
    justify-content: center;
}

.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 {
    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;
}

.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;
}

.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;
}

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

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

.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;
}

.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;
}

.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);
}

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

.final-cta {
    background: linear-gradient(135deg, #0487D9 0%, #023859 100%);
    color: #ffffff;
    border-radius: 22px;
    padding: 52px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(2, 56, 89, 0.16);
}

.final-cta h2 {
    margin: 0 0 16px;
    font-family: "Raleway", sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.final-cta p {
    max-width: 800px;
    margin: 0 auto 26px;
    line-height: 1.75;
    font-size: 1.05rem;
}

.pricing-card .btn-primary {
    background: #0487D9;
    color: #ffffff;
    border: 2px solid #0487D9;
}

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

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

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

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

    .section {
        padding: 56px 16px;
    }

    .hero-summary-card,
    .info-card,
    .pricing-card,
    .final-cta {
        padding: 24px;
    }

    .trades-logo {
        height: 52px;
    }

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

/* ── Contact section ───────────────────────────────────────────────────────────
   contact.css targets #contact but its styles are written generically enough
   to work here. These overrides just ensure the section title and intro are
   white against the background image, matching index.html exactly.
──────────────────────────────────────────────────────────────────────────────── */
#contact .section-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}