/* === PREMIUM FITNESS THEME: DRGA COACHING === */

:root {
    /* Colors */
    --cf-black: #050505;
    --cf-dark: #0f0f0f;
    --cf-gray: #1a1a1a;
    --cf-accent: #D4FF00;
    /* Neon Volt */
    --cf-accent-dim: #a6c700;
    --cf-white: #ffffff;
    --cf-muted: #888888;

    /* Fonts */
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Layout */
    --container-width: 1320px;
    --gutter: 24px;
    --radius: 0px;
    /* Sharp edges for aggressive/premium feel, or minimal radius */
}

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--cf-black);
    color: var(--cf-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent {
    color: var(--cf-accent);
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

/* HEADER */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
}

.desktop-nav {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ccc;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--cf-white);
}

.btn-cta-small {
    padding: 0.6rem 1.4rem;
    background: var(--cf-white);
    color: var(--cf-black) !important;
    font-weight: 700 !important;
    font-family: var(--font-heading);
    font-size: 1.1rem !important;
    letter-spacing: 0.05em;
}

.btn-cta-small:hover {
    background: var(--cf-accent);
}

@media (min-width: 900px) {
    .desktop-nav {
        display: flex;
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        padding: 0;
        background: transparent;
        transform: none;
        justify-content: flex-end;
        /* Or space-between depending on design, usually end or between */
        gap: 2.5rem;
    }

    .desktop-nav a {
        font-size: 0.95rem;
        /* Reset font size */
        color: #ccc;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
        color: var(--cf-white);
    }

    .menu-toggle {
        display: none;
    }
}

/* Mobile Nav Styles */
.desktop-nav {
    display: flex;
    /* Always flex, but hidden via transform/position on mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a {
    font-size: 2rem;
    /* Larger text for mobile */
    color: white;
}

body.nav-open .desktop-nav {
    transform: translateX(0);
}

/* Hamburger Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile menu */
    width: 30px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
body.nav-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 50%, rgba(5, 5, 5, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.label-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--cf-accent);
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--cf-accent);
    color: black;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-ghost {
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-ghost:hover {
    border-color: var(--cf-white);
    background: rgba(255, 255, 255, 0.05);
}

/* ABOUT BRIEF */
.about-brief {
    background: var(--cf-dark);
    padding: 4rem 0;
    border-bottom: 1px solid #222;
}

.about-grid {
    display: grid;
    gap: 3rem;
}

.about-stat .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--cf-accent);
}

.about-stat .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.about-desc h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-desc p {
    color: #999;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: auto auto 1fr;
        align-items: center;
        gap: 5rem;
    }
}

/* SERVICES BENTO */
.services {
    padding: 8rem 0;
}

@media (max-width: 768px) {

    .services,
    .about-full,
    .contact,
    .results-section {
        padding: 4rem 0 !important;
    }
}

.section-head {
    margin-bottom: 4rem;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.section-head p {
    color: var(--cf-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: auto;
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: #111;
    overflow: hidden;
    min-height: 300px;
    border: 1px solid #222;
    transition: border-color 0.3s ease;
}

.bento-card:hover {
    border-color: var(--cf-accent);
}

.card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.bento-card:hover .card-bg {
    transform: scale(1.05);
    opacity: 0.6;
}

.bento-card:hover .card-bg img {
    filter: grayscale(0%);
}

.card-content {
    position: relative;
    z-index: 10;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: rgba(5, 5, 5, 0.6);
    /* Backdrop for text readability */
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 0.2rem 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 0.5rem;
    max-width: 300px;
    background: rgba(5, 5, 5, 0.6);
    padding: 0.2rem 0.5rem;
}

.arrow-icon {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--cf-accent);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.bento-card:hover .arrow-icon {
    transform: translateX(10px);
}

/* Bento Layout Desktop */
@media (min-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 300px);
        gap: 1.5rem;
    }

    .bento-card.large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .bento-card.tall {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .bento-card.wide {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }
}

/* CONTACT */
.contact {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
    border-top: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Background pulse effect for contact */
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    display: grid;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.contact-left h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.contact-left p {
    color: #999;
    margin-bottom: 3rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--cf-white);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #151515;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cf-accent);
    transition: all 0.3s ease;
}

.icon-box svg {
    width: 20px;
    height: 20px;
}

.contact-item:hover .icon-box {
    background: var(--cf-accent);
    color: black;
    border-color: var(--cf-accent);
}

.social-connect {
    margin-top: 2rem;
    border-top: 1px solid #222;
    padding-top: 2rem;
}

.social-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.1em;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: #151515;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    border-color: var(--cf-accent);
    color: var(--cf-accent);
}

/* Form Styles */
.clean-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #0f0f0f;
    padding: 2.5rem;
    border: 1px solid #222;
    position: relative;
}

/* Floating Label System */
/* Radio Card Selection */
.service-selection {
    margin-bottom: 0.5rem;
}

.selection-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.radio-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .radio-card-group {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 600px) {
    .radio-card-group {
        grid-template-columns: 1fr;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    border-color: #333;
    color: #888;
}

/* Button Success State */
.btn-submit.btn-success {
    background: var(--cf-accent);
    /* Use brand accent (lime/yellow) */
    border-color: var(--cf-accent);
    color: black;
    /* Contrast text */
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(204, 255, 0, 0.4);
    /* Glow matching accent */
    transition: all 0.3s ease;
}

.btn-submit .btn-icon-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.8rem;
    /* Icon on right now */
    margin-right: 0;
    transform-origin: center;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.btn-submit .btn-icon-success svg {
    width: 1.2em;
    height: 1.2em;
    stroke-width: 3;
}

@keyframes successPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Shake animation for error if needed, or just emphasize success */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.card-content-inner {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.radio-card:hover .card-content-inner {
    border-color: #555;
    background: #111;
}

/* Selected State */
.radio-card input:checked+.card-content-inner {
    background: #151515;
    border-color: var(--cf-accent);
    box-shadow: 0 0 15px rgba(212, 255, 0, 0.1);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    color: white;
    line-height: 1;
}

.card-price {
    font-size: 1rem;
    color: var(--cf-accent);
    font-weight: 600;
}

.card-price small {
    color: #666;
    font-weight: 400;
    font-size: 0.8rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.8);
    opacity: 0;
}

.radio-card input:checked+.card-content-inner .check-icon {
    background: var(--cf-accent);
    transform: scale(1);
    opacity: 1;
}

/* Make title highlight on selection too */
.radio-card input:checked+.card-content-inner .card-title {
    color: var(--cf-accent);
}

.input-wrap.floating {
    position: relative;
}

.input-wrap.floating input,
.input-wrap.floating textarea,
.input-wrap.floating select {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    background: #080808;
    border: 1px solid #333;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    appearance: none;
    border-radius: 0;
    transition: border-color 0.3s, background 0.3s;
}

.input-wrap.floating label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
}

.input-wrap.floating textarea~label {
    top: 1.5rem;
    transform: none;
}

/* Focus State & Filled State Logic */
.input-wrap.floating input:focus,
.input-wrap.floating input:not(:placeholder-shown),
.input-wrap.floating textarea:focus,
.input-wrap.floating textarea:not(:placeholder-shown),
.input-wrap.floating select:valid {
    border-color: var(--cf-accent);
    background: #050505;
    outline: none;
}

.input-wrap.floating input:focus~label,
.input-wrap.floating input:not(:placeholder-shown)~label,
.input-wrap.floating textarea:focus~label,
.input-wrap.floating textarea:not(:placeholder-shown)~label,
.input-wrap.floating select:valid~label,
.input-wrap.floating select:focus~label {
    top: 0.6rem;
    left: 1rem;
    font-size: 0.75rem;
    color: var(--cf-accent);
    transform: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Select Arrow Custom */
.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.input-wrap.floating select:focus~.select-arrow {
    color: var(--cf-accent);
}

.btn-submit {
    padding: 1.2rem;
    background: var(--cf-white);
    color: black;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.btn-submit:hover {
    background: var(--cf-accent);
    padding-right: 1.5rem;
    /* Slide effect */
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.75rem;
    color: #444;
    text-align: center;
    margin-top: 0.5rem;
}

@media (min-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

/* FOOTER */
.main-footer {
    padding: 4rem 0;
    border-top: 1px solid #1a1a1a;
    background: #050505;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    color: #555;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-links a:hover {
    color: var(--cf-accent);
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-links {
        flex-direction: row;
        gap: 3rem;
    }
}

/* RESULTS SECTION */
.results-section {
    padding: 8rem 0;
    background: #080808;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.result-card {
    background: #111;
    border: 1px solid #222;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--cf-accent);
}

.result-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.result-card:hover .result-image img {
    filter: grayscale(20%);
    transform: scale(1.05);
}

.tag-result {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--cf-accent);
    color: black;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    font-size: 0.9rem;
    z-index: 10;
}

.result-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-stats {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    border-bottom: 1px solid #222;
    padding-bottom: 1rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.client-quote {
    color: #ccc;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

.client-info {
    margin-top: auto;
}

.client-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
}

.client-program {
    display: block;
    font-size: 0.8rem;
    color: var(--cf-accent-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .center-mobile {
        text-align: left;
    }
}

/* ABOUT SECTION (EXPANDED) */
.about-full {
    padding: 8rem 0;
    background: #050505;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--cf-accent);
    color: black;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.bad-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.bad-txt {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-text-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-text-content .lead {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text-content .desc {
    color: #888;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.about-text-content strong {
    color: var(--cf-white);
    font-weight: 600;
}

.qualifications-grid {
    display: grid;
    gap: 2rem;
    border-top: 1px solid #222;
    padding-top: 2rem;
}

.qual-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.qual-icon {
    font-size: 1.5rem;
    background: #111;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
}

.qual-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.qual-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}