/* ═══════════════════════════════════════════════════════════════
   TDCS CHILD THEME — MAIN STYLESHEET v2.0
   Colour palette derived from brand logo:
     Slate:   #3d4a5c  (primary dark — bird + wordmark)
     Orange:  #f5a623  (accent — feather)
     Charcoal:#2b3442  (deeper dark for backgrounds)
     Cream:   #faf9f6  (light background)
     Mid:     #eef0f3  (subtle section alternation)
   The Duncan Consultancy | tdc.services
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
    --slate:        #3d4a5c;
    --slate-dark:   #2b3442;
    --slate-mid:    #4e5d70;
    --slate-light:  #6b7a8d;
    --orange:       #f5a623;
    --orange-dark:  #d48c10;
    --orange-light: #fbbf4a;
    --cream:        #faf9f6;
    --mid:          #eef0f3;
    --white:        #ffffff;
    --text:         #2b3442;
    --text-mid:     #4e5d70;
    --text-light:   #8896a8;
    --border:       rgba(61, 74, 92, 0.12);
    --border-light: rgba(61, 74, 92, 0.06);
    --nav-height:   76px;
    --shadow-sm:    0 2px 8px rgba(43,52,66,0.08);
    --shadow-md:    0 8px 32px rgba(43,52,66,0.12);
    --shadow-lg:    0 20px 60px rgba(43,52,66,0.16);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body.tdcs-site {
    background: var(--cream) !important;
    color: var(--text) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Kill Twenty Twenty-Four layout wrappers */
body.tdcs-site .wp-site-blocks,
body.tdcs-site #page,
body.tdcs-site #content,
body.tdcs-site .site-content,
body.tdcs-site .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

h1, h2, h3, h4, h5,
.nav-logo, .footer-logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--slate-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.22s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.btn-outline {
    border: 2px solid var(--slate);
    color: var(--slate);
    background: transparent;
}
.btn-outline:hover {
    background: var(--slate);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    background: transparent;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* ─── FLOATING WHATSAPP ─────────────────────────────────────── */
.float-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 32px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float-bob 3s ease-in-out infinite;
}
.float-wa:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 40px rgba(37,211,102,0.55);
    animation: none;
}
@keyframes float-bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.tdcs-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}
.tdcs-nav.scrolled {
    box-shadow: 0 4px 20px rgba(43,52,66,0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-links .nav-link,
.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: color 0.2s;
}
.nav-links .nav-link:hover,
.nav-links a:hover { color: var(--orange); }

.nav-cta {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}
.nav-cta .btn { font-size: 0.84rem; padding: 0.6rem 1.2rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.mobile-menu a {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--slate-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--slate);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}
.mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 80%;
    max-width: 300px;
    margin-top: 0.5rem;
}
.mobile-ctas .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.9rem;
}

/* ─── SECTION COMMONS ───────────────────────────────────────── */
.tdcs-main section { position: relative; }

section { padding: 6rem 5%; }

.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 1rem;
    color: var(--slate-dark);
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.section-hero {
    min-height: 100vh;
    background: var(--slate-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-height) + 4rem) 5% 5rem;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern */
.section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(245,166,35,0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(245,166,35,0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Large watermark bird in background */
.hero-bird-bg {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 520px;
    opacity: 0.06;
    pointer-events: none;
    filter: invert(1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.6rem;
    font-weight: 500;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--orange);
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 1.5rem;
}
h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.82;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}
.hero-actions .btn {
    font-size: 0.95rem;
    padding: 0.88rem 1.8rem;
}

.hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
}
.stat {
    padding: 0 2.5rem 0 0;
    margin-right: 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
    background: var(--slate);
    padding: 1.3rem 5%;
    position: relative;
    z-index: 1;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    flex-shrink: 0;
}
.trust-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.trust-tag {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.28rem 0.85rem;
    border-radius: 100px;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.section-services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.2rem;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-dark);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.3rem;
}
.service-tag {
    font-size: 0.7rem;
    color: var(--slate-mid);
    background: var(--mid);
    border: 1px solid var(--border);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* ─── WHY TDCS ──────────────────────────────────────────────── */
.section-why { background: var(--mid); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.why-items {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}
.why-item {
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
}
.why-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--orange);
    background: rgba(245,166,35,0.12);
    border: 1.5px solid rgba(245,166,35,0.25);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--slate-dark);
}
.why-text p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.72;
}

.why-visual {
    background: var(--slate-dark);
    border-radius: 12px;
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
}
.why-visual::before {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card { position: relative; z-index: 1; }
.cta-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}
.cta-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    line-height: 1.78;
}
.cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.cta-card-actions .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.85rem;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    color: #4ade80;
    margin-top: 1.2rem;
}
.response-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ─── SECTORS ───────────────────────────────────────────────── */
.section-clients { background: var(--white); }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}
.sector-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.8rem 1.4rem;
    text-align: center;
    transition: all 0.28s ease;
    cursor: default;
}
.sector-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.sector-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}
.sector-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--slate-dark);
}
.sector-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.section-about { background: var(--mid); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.about-content h2 { margin-bottom: 1.3rem; }
.about-content p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}
.about-content p strong { color: var(--slate-dark); font-weight: 500; }

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}
.credential {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-mid);
}
.credential::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(245,166,35,0.15);
    color: var(--orange-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.aside-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.6rem;
}
.aside-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--slate-dark);
}
.aside-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.72;
}
.aside-card p strong { color: var(--slate-dark); font-weight: 500; }

/* ─── CONTACT ───────────────────────────────────────────────── */
.section-contact {
    background: var(--slate-dark);
    overflow: hidden;
}
.section-contact::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    position: relative;
    z-index: 1;
}

.contact-lead .section-eyebrow { color: var(--orange); }
.contact-lead .section-eyebrow::before { background: var(--orange); }
.contact-lead h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
.contact-lead > p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1.1rem 1.4rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.25s ease;
}
.contact-method:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--orange);
    transform: translateX(4px);
    color: var(--white);
}
.contact-method.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37,211,102,0.08);
}
.method-icon { font-size: 1.5rem; width: 42px; text-align: center; flex-shrink: 0; }
.method-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.2rem;
}
.method-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.contact-info-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
}
.contact-info-card h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.86rem;
    gap: 1rem;
}
.info-row:last-child { border-bottom: none; }
.info-row-label { color: rgba(255,255,255,0.45); flex-shrink: 0; }
.info-row-value { color: rgba(255,255,255,0.85); text-align: right; }

.emergency-card {
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: 10px;
    padding: 1.8rem;
}
.emergency-card h4 {
    color: var(--orange);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.emergency-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.2rem;
    line-height: 1.72;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.tdcs-footer {
    background: var(--slate);
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo img {
    height: 32px;
    width: auto;
    /* invert white logo on dark background */
    filter: brightness(10);
    opacity: 0.85;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0; padding: 0;
}
.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── GENERIC POST/PAGE ─────────────────────────────────────── */
.tdcs-post {
    padding: calc(var(--nav-height) + 3rem) 5% 5rem;
    min-height: 60vh;
    background: var(--cream);
}
.tdcs-post .post-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--slate-dark);
}
.tdcs-post .post-body {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 720px;
}
.tdcs-post .post-body p { margin-bottom: 1rem; }
.tdcs-post .post-body h2,
.tdcs-post .post-body h3 { color: var(--slate-dark); margin: 1.5rem 0 0.7rem; }
.tdcs-post .post-body a { color: var(--orange); }
.tdcs-post .post-body a:hover { text-decoration: underline; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .hamburger { display: flex; }

    .why-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .footer-inner { flex-direction: column; text-align: center; }
    .hero-stats   { gap: 1.5rem; }
    .stat         { padding-right: 1.5rem; margin-right: 1.5rem; }
}

@media (max-width: 640px) {
    section { padding: 4rem 5%; }
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.75rem; }

    .hero-actions .btn       { width: 100%; }
    .cta-card-actions .btn   { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1.2rem; }
    .stat { border-right: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 0 0 0; margin: 0; }
    .stat:first-child { border-top: none; }

    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-divider { display: none; }

    .float-wa {
        bottom: 1.2rem; right: 1.2rem;
        width: 52px; height: 52px;
        font-size: 1.35rem;
    }
}
