﻿/* =========================================================
   FILE: site.css

   PURPOSE:
   Global styling system for the TechCrafters public website.

   RESPONSIBILITIES:
   - Define brand colors
   - Define typography system
   - Define reusable layout utilities
   - Define responsive structure
   - Define reusable buttons/cards/sections
   - Establish premium SaaS-style visual language

   IMPORTANT NOTES:
   - This stylesheet powers the entire public portal
   - Focus is modern, premium, operational-tech aesthetic
   - Orange is used as accent/CTA only
   - Blue/Navy are primary structural colors
   ========================================================= */


/* =========================================================
   ROOT DESIGN TOKENS
   ========================================================= */

:root {
    --tc-blue: #1232D8;
    --tc-blue-dark: #06135F;
    --tc-blue-deep: #071B9A;
    --tc-orange: #FFA300;
    --tc-orange-dark: #D88400;
    --tc-navy: #080B1A;
    --tc-slate: #334155;
    --tc-muted: #64748B;
    --tc-light: #F8FAFC;
    --tc-border: #E2E8F0;
    --tc-white: #FFFFFF;
    --tc-font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --tc-radius-sm: 0.75rem;
    --tc-radius-md: 1.25rem;
    --tc-radius-lg: 1.75rem;
    --tc-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --tc-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
    --tc-shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.14);
    --tc-transition: all 0.2s ease;
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--tc-font-family);
    color: var(--tc-slate);
    background: var(--tc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   GLOBAL TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--tc-navy);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

p {
    line-height: 1.8;
    color: var(--tc-muted);
}

a {
    text-decoration: none;
}


/* =========================================================
   MAIN LAYOUT CONTAINER
   ========================================================= */

.tc-container {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}


/* =========================================================
   SECTION SPACING
   ========================================================= */

.tc-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.tc-section-muted {
    background: var(--tc-light);
    border-top: 1px solid rgba(226, 232, 240, 0.65);
    border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}

.tc-section-dark {
    color: var(--tc-white);
    background: linear-gradient( 135deg, #080B1A 0%, #06135F 50%, #071B9A 100% );
}


/* =========================================================
   SECTION HEADERS
   ========================================================= */

.tc-section-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

    .tc-section-header h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .tc-section-header p {
        max-width: 720px;
    }

.tc-eyebrow {
    margin-bottom: 1rem;
    color: var(--tc-orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.tc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding-inline: 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--tc-transition);
    cursor: pointer;
}

    .tc-btn:hover {
        transform: translateY(-2px);
    }

.tc-btn-primary {
    color: var(--tc-navy);
    background: var(--tc-orange);
    box-shadow: 0 16px 40px rgba(255, 163, 0, 0.28);
}

    .tc-btn-primary:hover {
        background: #FFB526;
    }

.tc-btn-secondary {
    color: var(--tc-white);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.tc-btn-light {
    color: var(--tc-navy);
    background: var(--tc-white);
}

.tc-btn-outline-dark {
    color: var(--tc-navy);
    border: 1px solid var(--tc-border);
    background: var(--tc-white);
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.tc-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: 8rem;
    padding-bottom: 7rem;
    color: var(--tc-white);
    background: radial-gradient( circle at top right, rgba(18, 50, 216, 0.28), transparent 30rem ), linear-gradient( 135deg, #080B1A 0%, #06135F 50%, #071B9A 100% );
}

    .tc-hero::before {
        position: absolute;
        inset: auto auto -10rem -10rem;
        width: 26rem;
        height: 26rem;
        content: "";
        border-radius: 999px;
        background: rgba(255, 163, 0, 0.12);
        filter: blur(60px);
        z-index: 0;
    }

/* Removed tc-hero::after because it created the visible white frame/grid effect */

.tc-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.tc-hero-content,
.tc-hero-panel {
    position: relative;
    z-index: 1;
}

.tc-hero h1 {
    color: var(--tc-white);
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

    .tc-hero h1 span {
        color: #FFD27A;
    }

.tc-hero-text {
    max-width: 680px;
    color: #CBD5E1;
    font-size: 1.15rem;
}

.tc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* =========================================================
   TRUST PILLS
   ========================================================= */

.tc-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

    .tc-trust-row span {
        padding: 0.55rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: #DBEAFE;
        font-size: 0.92rem;
    }


/* =========================================================
   HERO STACK CARDS
   ========================================================= */

.tc-hero-panel {
    display: grid;
    gap: 1rem;
}

.tc-stack-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: var(--tc-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

    .tc-stack-card::after {
        position: absolute;
        top: 0;
        right: 0;
        width: 5rem;
        height: 5rem;
        content: "";
        background: radial-gradient(circle, rgba(255, 163, 0, 0.18), transparent 70%);
    }

    .tc-stack-card.active {
        background: rgba(18, 50, 216, 0.28);
    }

    .tc-stack-card span {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--tc-orange);
        font-weight: 800;
    }

    .tc-stack-card strong {
        display: block;
        color: var(--tc-white);
        font-size: 1.1rem;
    }

    .tc-stack-card p {
        margin-top: 0.6rem;
        color: #CBD5E1;
    }


/* =========================================================
   SERVICES GRID
   ========================================================= */

.tc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.tc-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    border-radius: var(--tc-radius-lg);
    border: 1px solid var(--tc-border);
    background: var(--tc-white);
    box-shadow: var(--tc-shadow-sm);
    transition: var(--tc-transition);
}

    .tc-service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--tc-shadow-md);
    }

    .tc-service-card h3 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .tc-service-card p {
        flex: 1;
        margin-bottom: 1.25rem;
    }

    .tc-service-card a {
        margin-top: auto;
        color: var(--tc-blue);
        font-weight: 700;
    }

    .tc-service-card:hover h3 {
        color: var(--tc-blue);
    }


/* =========================================================
   SERVICE ICONS
   ========================================================= */

.tc-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    color: var(--tc-navy);
    background: rgba(255, 163, 0, 0.18);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.tc-service-card:hover .tc-service-icon {
    background: var(--tc-orange);
}


/* =========================================================
   VALUE GRID
   ========================================================= */

.tc-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}


/* =========================================================
   VALUE CARD
   ========================================================= */

.tc-value-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    border-radius: var(--tc-radius-lg);
    border: 1px solid var(--tc-border);
    background: var(--tc-white);
    box-shadow: var(--tc-shadow-sm);
}

    .tc-value-card h3 {
        margin-bottom: 1rem;
    }

    .tc-value-card p {
        flex: 1;
    }


/* =========================================================
   SPLIT SECTION
   ========================================================= */

.tc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}


/* =========================================================
   PROOF LIST
   ========================================================= */

.tc-proof-list {
    display: grid;
    gap: 1rem;
}

    .tc-proof-list div {
        padding: 1.5rem;
        border-left: 4px solid var(--tc-orange);
        border-radius: var(--tc-radius-md);
        background: var(--tc-light);
    }

    .tc-proof-list strong {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--tc-navy);
    }


/* =========================================================
   CTA SECTION
   ========================================================= */

.tc-cta {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
}

    .tc-cta h2 {
        color: var(--tc-white);
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .tc-cta p {
        color: #CBD5E1;
    }


/* =========================================================
   PUBLIC HEADER
   ========================================================= */

.tc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
}

.tc-header-inner {
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.tc-header-brand {
    display: inline-flex;
    align-items: center;
}

.tc-header-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}

.tc-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tc-nav-link {
    position: relative;
    color: var(--tc-slate);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--tc-transition);
}

    .tc-nav-link:hover {
        color: var(--tc-blue);
    }

    .tc-nav-link.active {
        color: var(--tc-blue);
    }

    .tc-nav-link::after {
        position: absolute;
        left: 0;
        bottom: -0.35rem;
        width: 0;
        height: 2px;
        content: "";
        background: var(--tc-orange);
        transition: width 0.22s ease;
    }

    .tc-nav-link:hover::after,
    .tc-nav-link.active::after {
        width: 100%;
    }

.tc-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding-inline: 1.1rem;
    border-radius: 999px;
    color: var(--tc-navy);
    background: var(--tc-orange);
    font-weight: 800;
    transition: var(--tc-transition);
}

    .tc-nav-cta:hover {
        transform: translateY(-2px);
        background: #FFB526;
    }

.tc-mobile-menu-button {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--tc-border);
    border-radius: 0.85rem;
    background: var(--tc-white);
    cursor: pointer;
}

    .tc-mobile-menu-button span {
        display: block;
        width: 1.2rem;
        height: 2px;
        margin: 0.25rem auto;
        background: var(--tc-navy);
    }


/* =========================================================
   PUBLIC FOOTER
   ========================================================= */

.tc-footer {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 2rem;
    background: var(--tc-navy);
    color: var(--tc-white);
}

    .tc-footer::before {
        position: absolute;
        top: -12rem;
        right: -12rem;
        width: 28rem;
        height: 28rem;
        content: "";
        border-radius: 999px;
        background: radial-gradient( circle, rgba(18, 50, 216, 0.18), transparent 70% );
    }

.tc-footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 3rem;
}

.tc-footer-brand-column {
    max-width: 420px;
    padding-right: 1rem;
}

.tc-footer-brand {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.tc-footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
}

.tc-footer-description {
    color: #CBD5E1;
    margin-bottom: 1.5rem;
}

.tc-footer-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .tc-footer-pill-row span {
        padding: 0.55rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: #DBEAFE;
        font-size: 0.9rem;
    }

.tc-footer-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
    color: var(--tc-white);
    font-size: 1rem;
    letter-spacing: normal;
}

    .tc-footer-heading::after {
        position: absolute;
        left: 0;
        bottom: -0.55rem;
        width: 2.5rem;
        height: 2px;
        content: "";
        background: var(--tc-orange);
    }

.tc-footer-nav {
    display: grid;
    gap: 0.9rem;
}

    .tc-footer-nav a {
        width: fit-content;
        color: #CBD5E1;
        transition: var(--tc-transition);
    }

        .tc-footer-nav a:hover {
            color: var(--tc-orange);
            transform: translateX(4px);
        }

.tc-footer-text {
    margin-bottom: 1.5rem;
    color: #CBD5E1;
}

.tc-footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .tc-footer-bottom p {
        margin: 0;
        color: #94A3B8;
        font-size: 0.92rem;
    }


/* =========================================================
   PUBLIC APP SHELL
   ========================================================= */

.tc-app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.tc-main-content {
    flex: 1;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.tc-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

    .tc-contact-grid h2 {
        font-size: clamp(2rem, 4vw, 3.25rem);
    }

.tc-contact-points {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

    .tc-contact-points div {
        padding: 1.25rem;
        border-left: 4px solid var(--tc-orange);
        border-radius: var(--tc-radius-md);
        background: var(--tc-light);
    }

    .tc-contact-points strong,
    .tc-contact-points span {
        display: block;
    }

    .tc-contact-points strong {
        color: var(--tc-navy);
    }

    .tc-contact-points span {
        margin-top: 0.35rem;
        color: var(--tc-muted);
    }

.tc-contact-form {
    padding: 2rem;
    border: 1px solid var(--tc-border);
    border-radius: var(--tc-radius-lg);
    background: var(--tc-white);
    box-shadow: var(--tc-shadow-md);
}

.tc-form-row {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

    .tc-form-row label {
        color: var(--tc-navy);
        font-size: 0.95rem;
        font-weight: 800;
    }

    .tc-form-row input,
    .tc-form-row select,
    .tc-form-row textarea {
        width: 100%;
        min-height: 3rem;
        padding: 0.85rem 1rem;
        border: 1px solid var(--tc-border);
        border-radius: var(--tc-radius-sm);
        color: var(--tc-slate);
        background: var(--tc-white);
        font: inherit;
        outline: none;
        transition: var(--tc-transition);
    }

    .tc-form-row textarea {
        resize: vertical;
    }

        .tc-form-row input:focus,
        .tc-form-row select:focus,
        .tc-form-row textarea:focus {
            border-color: var(--tc-blue);
            box-shadow: 0 0 0 4px rgba(18, 50, 216, 0.1);
        }

.tc-contact-form .tc-btn {
    width: 100%;
    border: 0;
}

.tc-form-note {
    margin: 1rem 0 0;
    color: var(--tc-muted);
    font-size: 0.9rem;
    text-align: center;
}


/* =========================================================
   ERROR / NOT FOUND PAGES
   ========================================================= */

.tc-error-page {
    max-width: 720px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

    .tc-error-page h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
    }


/* =========================================================
   PREMIUM MICRO-INTERACTIONS
   ========================================================= */

.tc-service-card,
.tc-value-card,
.tc-stack-card,
.tc-btn,
.tc-nav-link,
.tc-nav-cta {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

    .tc-service-card:hover,
    .tc-value-card:hover {
        transform: translateY(-6px);
    }

    .tc-stack-card:hover {
        transform: translateY(-4px);
    }

    .tc-service-card:hover {
        border-color: rgba(18, 50, 216, 0.14);
    }

    .tc-value-card:hover {
        border-color: rgba(255, 163, 0, 0.18);
    }

.tc-proof-list div {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .tc-proof-list div:hover {
        transform: translateX(4px);
        box-shadow: var(--tc-shadow-sm);
    }


/* =========================================================
   TEXT WRAPPING POLISH
   ========================================================= */

.tc-section-header h2,
.tc-split h2,
.tc-cta h2,
.tc-service-hero h1 {
    text-wrap: balance;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
    .tc-hero-grid,
    .tc-split,
    .tc-contact-grid {
        grid-template-columns: 1fr;
    }

    .tc-services-grid,
    .tc-value-grid {
        grid-template-columns: 1fr;
    }

    .tc-footer-grid {
        grid-template-columns: 1fr;
    }

    .tc-hero {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }

        .tc-hero h1 {
            font-size: 3rem;
        }

    .tc-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .tc-footer {
        padding-top: 4rem;
    }

    .tc-footer-bottom {
        margin-top: 3rem;
    }
}

@media (max-width: 820px) {
    .tc-header-inner {
        position: relative;
    }

    .tc-header-logo {
        width: 180px;
    }

    .tc-mobile-menu-button {
        display: inline-block;
    }

    .tc-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem;
        border: 1px solid var(--tc-border);
        border-radius: var(--tc-radius-md);
        background: var(--tc-white);
        box-shadow: var(--tc-shadow-lg);
    }

    .tc-nav-open {
        display: flex;
    }

    .tc-nav-link,
    .tc-nav-cta {
        padding: 0.9rem 1rem;
    }

        .tc-nav-link::after {
            display: none;
        }

    .tc-nav-cta {
        margin-top: 0.5rem;
    }
}

@media (max-width: 640px) {
    .tc-header-logo {
        width: 155px;
    }

    .tc-hero h1 {
        font-size: 2.45rem;
    }

    .tc-hero-text {
        font-size: 1rem;
    }

    .tc-btn {
        width: 100%;
    }

    .tc-hero-actions {
        width: 100%;
    }

    .tc-trust-row span {
        width: 100%;
        text-align: center;
    }
}
/* =========================================================
   PREMIUM INNER PAGE BACKGROUND
   ========================================================= */

.tc-page-hero {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 6rem;
    background: radial-gradient(circle at top right, rgba(255, 163, 0, 0.18), transparent 26rem), radial-gradient(circle at bottom left, rgba(18, 50, 216, 0.18), transparent 28rem), linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 48%, #FFFFFF 100%);
}

.tc-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 3rem;
}

    .tc-page-hero-content h1 {
        max-width: 720px;
        margin-bottom: 1.25rem;
        color: var(--tc-navy);
        font-size: clamp(2.6rem, 5vw, 4.5rem);
        line-height: 1.05;
        letter-spacing: -0.055em;
        text-wrap: balance;
    }

    .tc-page-hero-content p {
        max-width: 680px;
        font-size: 1.08rem;
        color: #334155;
    }

.tc-services-page-grid {
    position: relative;
    z-index: 2;
}

.tc-service-card-premium {
    min-height: 260px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

    .tc-service-card-premium h3 {
        color: var(--tc-navy);
        font-size: 1.2rem;
    }

    .tc-service-card-premium p {
        color: #334155;
    }

    .tc-service-card-premium a {
        align-self: flex-end;
        width: 2.25rem;
        height: 2.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        border-radius: 999px;
        color: var(--tc-blue);
        font-size: 1.8rem;
        line-height: 1;
        transition: var(--tc-transition);
    }

    .tc-service-card-premium:hover a {
        color: var(--tc-navy);
        background: var(--tc-orange);
        transform: translateX(4px);
    }

.tc-page-bg-dot {
    position: absolute;
    width: 9rem;
    height: 9rem;
    opacity: 0.34;
    background-image: radial-gradient(rgba(18, 50, 216, 0.55) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    z-index: 1;
}

.tc-page-bg-dot-left {
    left: -1.5rem;
    top: 8rem;
}

.tc-page-bg-dot-right {
    right: 3rem;
    top: 28rem;
}

.tc-page-bg-ring {
    position: absolute;
    border: 1px solid rgba(255, 163, 0, 0.18);
    border-radius: 999px;
    z-index: 1;
}

.tc-page-bg-ring-top {
    top: -12rem;
    right: -8rem;
    width: 28rem;
    height: 28rem;
    box-shadow: 0 0 0 2.5rem rgba(255, 163, 0, 0.04), 0 0 0 5rem rgba(255, 163, 0, 0.03);
}

.tc-page-bg-ring-bottom {
    bottom: -14rem;
    right: 6rem;
    width: 24rem;
    height: 24rem;
    border-color: rgba(18, 50, 216, 0.14);
    box-shadow: 0 0 0 2.5rem rgba(18, 50, 216, 0.035), 0 0 0 5rem rgba(18, 50, 216, 0.025);
}

@media (max-width: 980px) {
    .tc-page-hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .tc-page-bg-dot-right,
    .tc-page-bg-ring-bottom {
        display: none;
    }
}
/* =========================================================
   ABOUT PAGE PREMIUM BACKGROUND
   ========================================================= */

.tc-page-hero-cool {
    background: radial-gradient(circle at top right, rgba(18, 50, 216, 0.14), transparent 28rem), radial-gradient(circle at bottom left, rgba(255, 163, 0, 0.08), transparent 24rem), linear-gradient(135deg, #F8FAFC 0%, #EEF5FF 52%, #FFFFFF 100%);
}

.tc-about-highlight-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.tc-about-highlight-card {
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--tc-radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
}

    .tc-about-highlight-card span {
        display: inline-flex;
        margin-bottom: 1rem;
        color: var(--tc-orange);
        font-weight: 900;
    }

    .tc-about-highlight-card h3 {
        margin-bottom: 0.75rem;
        color: var(--tc-navy);
    }

    .tc-about-highlight-card p {
        margin: 0;
        color: #334155;
    }

@media (max-width: 980px) {
    .tc-about-highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HERO BORDER FORCE RESET
   ========================================================= */

.tc-hero-content,
.tc-hero-content *,
.tc-hero-content::before,
.tc-hero-content::after,
.tc-hero h1,
.tc-hero h1::before,
.tc-hero h1::after {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}