/* ============================================
   Topology.Cloud - Global Styles (Rebuilt)
   Audience: Home Builders & Service Professionals
   ============================================ */

:root {
    --primary-dark: #0d3f72;
    --primary-blue: #1e82b4;
    --accent-teal: #0f8ca0;
    --accent-teal-light: #28c1d1;
    --accent-teal-bg: rgba(15, 140, 160, 0.08);
    --accent-teal-border: rgba(15, 140, 160, 0.18);
    --text-dark: #1e293b;
    --text-mid: #475569;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8f9fb;
    --bg-warm: #faf8f5;
    --bg-dark: #0f1a2e;
    --bg-dark-mid: #162240;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;
    --transition: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-teal);
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    background: var(--accent-teal-bg);
    border-radius: var(--radius-full);
    border: 1px solid var(--accent-teal-border);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 640px;
    line-height: 1.7;
}

/* ---- Layout ---- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-logo img {
    height: 72px;
    width: auto;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.navbar-links a:hover {
    color: var(--primary-dark);
    background: var(--bg-light);
}

.navbar-links a.active {
    color: var(--primary-dark);
    font-weight: 600;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-cta .btn-signin {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 0.5rem 1rem;
}

.navbar-cta .btn-signin:hover {
    color: var(--primary-dark);
}

/* Mobile menu toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-teal);
    color: #fff;
    box-shadow: 0 2px 8px rgba(15, 140, 160, 0.3);
}

.btn-primary:hover {
    background: var(--accent-teal-light);
    box-shadow: 0 4px 16px rgba(15, 140, 160, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--primary-dark);
    color: #fff;
}

.btn-secondary:hover {
    background: #174f86;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary-dark);
    background: var(--bg-light);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-teal);
    font-weight: 600;
    padding: 0.5rem 0;
}

.btn-ghost:hover {
    color: var(--accent-teal-light);
}

.btn-ghost .arrow {
    transition: transform var(--transition);
}

.btn-ghost:hover .arrow {
    transform: translateX(4px);
}

.btn-lg {
    font-size: 1rem;
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
}

/* ---- Hero ---- */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 50% 0%, rgba(30, 130, 180, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-teal);
    padding: 0.4rem 1.25rem;
    background: var(--accent-teal-bg);
    border: 1px solid var(--accent-teal-border);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .highlight {
    color: var(--accent-teal);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Stats Bar ---- */
.stats-bar {
    padding: 3rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ---- Feature Cards ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--accent-teal-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-teal-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Two-column card grid */
.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ---- Split Sections ---- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content {
    display: flex;
    flex-direction: column;
}

.split-content .section-label {
    align-self: flex-start;
}

.split-content .section-title {
    font-size: 2.25rem;
}

.split-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-list {
    margin: 1rem 0 2rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.benefit-list .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-radius: 50%;
    font-size: 0.75rem;
    margin-top: 2px;
}

/* ---- Visual Placeholder (for diagrams/illustrations) ---- */
.visual-block {
    background: linear-gradient(135deg, var(--bg-light) 0%, #eef2f7 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    text-align: center;
}

.visual-block-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.visual-block-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- How It Works (Steps) ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    counter-increment: step;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---- Pricing Cards ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1140px;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--accent-teal-border);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-teal);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-price .note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-mid);
}

.pricing-features .check {
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
}

/* ---- CTA Section ---- */
.cta-section {
    background: var(--bg-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 193, 209, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .section-title {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- FAQ Accordion ---- */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--accent-teal);
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- Comparison Table ---- */
.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.compare-table th,
.compare-table td {
    padding: 0.875rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.compare-table thead th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compare-table thead th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.compare-table thead th:last-child {
    border-top-right-radius: var(--radius-lg);
}

.compare-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

.compare-table .yes {
    color: #16a34a;
    font-weight: 700;
}

.compare-table .no {
    color: var(--text-muted);
}

.compare-table .highlight-col {
    background: rgba(15, 140, 160, 0.04);
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-brand img {
    height: 48px;
    width: auto;
    opacity: 0.9;
}

.footer-col-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-light { background: var(--bg-light); }
.bg-warm { background: var(--bg-warm); }
.bg-white { background: var(--bg-white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.75rem; }
    .section-title { font-size: 2rem; }
    .split { gap: 3rem; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-3, .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 8rem 0 4rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.75rem; }

    .split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split.reverse .split-visual {
        order: -1;
    }

    .card-grid, .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid, .pricing-grid-3, .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    /* Mobile nav */
    .navbar-links {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .navbar-links.open {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-cta .btn-signin {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; }
    .container { padding: 0 1rem; }
}

/* ---- Page-specific: Legal pages ---- */
.legal-page {
    padding: 8rem 0 4rem;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.legal-page .legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-page h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-page ul,
.legal-page ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page ol {
    list-style: decimal;
}

.legal-page a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-teal);
}

/* ---- Trades Grid ---- */
.trades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.trade-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: all var(--transition);
}

.trade-item:hover {
    border-color: var(--accent-teal-border);
    box-shadow: var(--shadow-sm);
}

.trade-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trades-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Testimonial / Quote ---- */
.testimonial {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}
