        :root {
            --navy: #1E345A;
            --teal: #028090;
            --coral: #E07A5F;
            --cream: #F9F6F2;
            --sage: #81B29A;
            --dark-gray: #2C3E50;
            --light-gray: #F5F7FA;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            background: white;
        }

        /* TYPOGRAPHY */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 64px;
            font-weight: 900;
        }

        h2 {
            font-size: 42px;
        }

        h3 {
            font-size: 28px;
        }

        h4 {
            font-size: 20px;
        }

        p {
            font-size: 16px;
            margin-bottom: 1rem;
        }

        /* NAVIGATION */
        nav {
            position: sticky;
            top: 0;
            background: white;
            border-bottom: 1px solid #e0e0e0;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .nav-brand {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--navy);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--coral);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--coral);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--navy);
            margin: 5px 0;
            transition: var(--transition);
        }

        /* BUTTONS */
        button, .btn {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: var(--coral);
            color: white;
        }

        .btn-primary:hover {
            background: #d4664a;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(224, 122, 95, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-secondary:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-2px);
        }

        /* SECTIONS */
        section {
            padding: 80px 60px;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 60px;
            color: var(--navy);
        }

        .section-heading h2 {
            margin-bottom: 16px;
        }

        .section-heading p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, #0d1b2d 100%);
            color: white;
            padding: 100px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 100vh;
        }

        .hero-content h1 {
            color: white;
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .hero-content p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 18px;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-buttons .btn {
            padding: 16px 28px;
            font-size: 15px;
        }

        .hero-image {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            text-align: center;
        }

        /* CREDIBILITY BAR */
        .credibility-bar {
            background: var(--cream);
            padding: 60px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .credibility-bar-footer {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.1);
            font-size: 14px;
            color: #666;
        }

        /* SERVICES CARDS */
        .services {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 4px solid var(--teal);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            border-top-color: var(--coral);
        }

        .service-card h3 {
            color: var(--navy);
            margin-bottom: 16px;
        }

        .service-card p {
            color: #666;
            flex-grow: 1;
            margin-bottom: 24px;
        }

        .service-card .btn {
            align-self: flex-start;
        }

        /* TESTIMONIALS */
        .testimonials {
            background: var(--cream);
            color: var(--navy);
        }

        .testimonials h2 {
            color: var(--navy);
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonials-grid .testimonial {
            width: 100%;
        }

        .testimonial {
            background: white;
            padding: 36px 40px;
            border-radius: 12px;
            border-left: 4px solid var(--teal);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .testimonial p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 12px;
            color: var(--navy);
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--teal);
            font-size: 15px;
            font-style: normal;
        }

        /* LEAD MAGNET */
        .lead-magnet {
            background: linear-gradient(135deg, var(--teal) 0%, #016570 100%);
            color: white;
            text-align: center;
            padding: 80px 60px;
        }

        .lead-magnet h2 {
            color: white;
            margin-bottom: 16px;
        }

        .lead-magnet-content p {
            font-size: 18px;
            margin-bottom: 32px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .form-group {
            display: flex;
            gap: 16px;
            max-width: 600px;
            margin: 0 auto 24px;
            justify-content: center;
        }

        .form-group input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            max-width: 220px;
        }

        /* ABOUT PREVIEW */
        .about-preview {
            background: var(--cream);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-preview h2 {
            color: var(--navy);
            margin-bottom: 24px;
        }

        .about-preview p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-image {
            background: rgba(2, 128, 144, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            border: 2px dashed var(--teal);
            color: var(--teal);
            font-size: 16px;
        }

        /* FULL PAGE SECTIONS */
        .page-hero {
            background: linear-gradient(135deg, var(--navy) 0%, #0d1b2d 100%);
            color: white;
            padding: 100px 60px;
            text-align: center;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .page-hero h1 {
            color: white;
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ABOUT PAGE */
        .about-full {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        .about-text h3 {
            color: var(--navy);
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .about-text p {
            color: #555;
            line-height: 1.9;
            margin-bottom: 16px;
        }

        .credentials-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin: 32px 0;
        }

        .credential {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .credential::before {
            content: '✓';
            color: var(--coral);
            font-weight: bold;
            font-size: 20px;
            margin-right: 16px;
        }

        .about-portrait {
            width: 100%;
        }

        .about-portrait img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            object-fit: cover;
        }

        .about-side {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .about-image-full {
            background: rgba(2, 128, 144, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            border: 2px dashed var(--teal);
            color: var(--teal);
        }

        /* SPEAKING PAGE */
        .topics-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-top: 40px;
        }

        .topic-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px;
            border-left: 5px solid var(--teal);
            transition: var(--transition);
        }

        .topic-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border-left-color: var(--coral);
        }

        .topic-card h3 {
            color: var(--navy);
            margin-bottom: 12px;
        }

        .topic-card p {
            color: #666;
        }

        /* CONSULTING PAGE */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .process-step {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            position: relative;
        }

        .process-step::before {
            content: attr(data-step);
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--coral);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .process-step h3 {
            color: var(--navy);
            margin: 20px 0 16px;
        }

        .process-step p {
            color: #666;
            font-size: 15px;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin: 40px 0;
            background: white;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .benefit-item::before {
            content: '→';
            color: var(--coral);
            font-weight: bold;
            font-size: 20px;
            flex-shrink: 0;
        }

        .benefit-item p {
            margin: 0;
            color: #555;
        }

        /* COURSE PAGE */
        .course-problem {
            background: white;
            padding: 60px;
            border-radius: 12px;
            border: 2px solid var(--cream);
            margin-bottom: 40px;
        }

        .course-problem h3 {
            color: var(--navy);
            margin-bottom: 16px;
        }

        .course-problem p {
            color: #555;
            font-size: 18px;
            line-height: 1.8;
        }

        .who-section {
            margin: 40px 0;
        }

        .who-section h3 {
            color: var(--navy);
            margin-bottom: 20px;
        }

        .who-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .who-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--cream);
            border-radius: 8px;
        }

        .who-item::before {
            content: '•';
            color: var(--teal);
            font-size: 24px;
            font-weight: bold;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin: 40px 0;
        }

        .module {
            background: white;
            padding: 24px;
            border-radius: 8px;
            border: 2px solid #f0f0f0;
            border-left: 4px solid var(--teal);
        }

        .module h4 {
            color: var(--navy);
            margin-bottom: 8px;
        }

        .pricing-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin: 40px 0;
        }

        .pricing-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            transition: var(--transition);
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--coral);
            box-shadow: 0 12px 32px rgba(224, 122, 95, 0.2);
            transform: translateY(-8px);
        }

        .pricing-card h3 {
            color: var(--navy);
            margin-bottom: 16px;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 900;
            color: var(--coral);
            margin: 20px 0;
            font-family: 'Montserrat', sans-serif;
        }

        .pricing-features {
            text-align: left;
            margin: 32px 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .pricing-features li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #666;
            font-size: 14px;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--teal);
            font-weight: bold;
        }

        .coming-soon-badge {
            display: inline-block;
            background: var(--coral);
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq {
            margin-top: 60px;
        }

        .faq-item {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            background: white;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--navy);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            user-select: none;
        }

        .faq-question:hover {
            background: var(--cream);
        }

        .faq-answer {
            display: none;
            padding: 20px;
            border-top: 1px solid #e0e0e0;
            color: #666;
            background: #fafafa;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-toggle {
            transition: var(--transition);
            color: var(--coral);
        }

        /* CONTACT PAGE */
        .contact-form {
            max-width: 700px;
            margin: 60px auto 0;
            background: white;
            padding: 60px;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }

        .form-field {
            margin-bottom: 24px;
            display: flex;
            flex-direction: column;
        }

        .form-field label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--navy);
            font-size: 14px;
        }

        .form-field input,
        .form-field textarea,
        .form-field select {
            padding: 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            transition: var(--transition);
        }

        .form-field input:focus,
        .form-field textarea:focus,
        .form-field select:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(2, 128, 144, 0.1);
        }

        .form-field textarea {
            resize: vertical;
            min-height: 120px;
        }

        .required::after {
            content: ' *';
            color: var(--coral);
        }

        .contact-info {
            text-align: center;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
        }

        .contact-info p {
            margin: 12px 0;
            color: #666;
        }

        .contact-email {
            color: var(--teal);
            font-weight: 600;
            text-decoration: none;
        }

        /* FOOTER */
        footer {
            background: var(--navy);
            color: white;
            padding: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
        }

        .footer-section p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .tagline {
            font-size: 14px;
            color: var(--sage);
            font-style: italic;
            margin-top: 8px;
        }

        /* BACK TO TOP */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--coral);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
            transition: var(--transition);
            z-index: 999;
        }

        #backToTop:hover {
            background: #d4664a;
            transform: translateY(-4px);
        }

        #backToTop.show {
            display: flex;
        }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 60px 40px;
                min-height: auto;
            }

            .hero-image {
                display: none;
            }

            .credibility-bar {
                grid-template-columns: repeat(2, 1fr);
                padding: 40px;
            }

            .services-grid,
            .testimonials-grid,
            .who-list,
            .modules-grid,
            .pricing-section,
            .process-steps {
                grid-template-columns: 1fr;
            }

            .about-full,
            .about-preview {
                grid-template-columns: 1fr;
            }

            .about-portrait {
                order: -1;
                max-width: 360px;
                margin: 0 auto;
            }

            .about-image,
            .about-image-full {
                min-height: 300px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                gap: 20px;
            }

            h1 {
                font-size: 42px;
            }

            h2 {
                font-size: 32px;
            }

            section {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 20px;
                justify-content: space-between;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: white;
                border-bottom: 1px solid #e0e0e0;
                padding: 20px;
                gap: 0;
            }

            .nav-links.open {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            h1 {
                font-size: 32px;
            }

            h2 {
                font-size: 24px;
            }

            section {
                padding: 40px 20px;
            }

            .page-hero {
                padding: 60px 20px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .form-group {
                flex-direction: column;
            }

            .form-group input {
                max-width: 100%;
            }

            .hero-buttons,
            .form-group {
                gap: 12px;
            }

            .stat-number {
                font-size: 32px;
            }

            .contact-form {
                padding: 40px 20px;
            }
        }

/* ================ TESTIMONIAL REDESIGN — added 2026-04-29 ================ */

/* Hero-adjacent featured testimonial band */
.featured-testimonial-band {
    background: linear-gradient(135deg, var(--navy), #2a4a7a);
    padding: 70px 60px; color: white;
}
.featured-testimonial-band .inner { max-width: 1100px; margin: 0 auto; }
.featured-testimonial-band blockquote {
    font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 700; line-height: 1.35;
    color: white; margin: 0 0 24px;
}
.featured-testimonial-band .attr {
    display: flex; align-items: center; gap: 16px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.featured-testimonial-band .attr .avatar {
    width: 56px; height: 56px; border-radius: 50%; background: var(--coral);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-family: 'Montserrat', sans-serif;
    font-size: 20px; flex-shrink: 0;
}
.featured-testimonial-band .attr .who {
    font-size: 16px; font-weight: 700; color: white;
}
.featured-testimonial-band .attr .where {
    font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 2px;
}

/* Redesigned home testimonials grid */
.testimonials-redesigned { background: var(--light-gray); padding: 80px 60px; }
.testimonials-redesigned .heading { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.testimonials-redesigned .heading h2 { color: var(--navy); font-size: 36px; margin-bottom: 8px; }
.testimonials-redesigned .heading p { color: #666; font-size: 16px; }
.testimonials-redesigned .featured-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 1200px; margin: 0 auto 24px;
}
.testimonials-redesigned .secondary-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    max-width: 1200px; margin: 0 auto;
}
.t-card { background: white; padding: 28px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 4px solid var(--coral); }
.t-card.featured { padding: 32px; border-top-color: var(--teal); border-top-width: 5px; }
.t-card.secondary { padding: 18px; }
.t-card blockquote { color: var(--dark-gray); margin: 0 0 18px; font-style: italic; font-size: 14px; line-height: 1.55; }
.t-card.featured blockquote { font-size: 17px; line-height: 1.55; font-weight: 500; color: #1a1a1a; }
.t-card.secondary blockquote { font-size: 13px; line-height: 1.5; }
.t-card .attribution { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid #eee; }
.t-card .avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-family: 'Montserrat', sans-serif; font-size: 14px; flex-shrink: 0;
}
.t-card.featured .avatar { width: 48px; height: 48px; font-size: 16px; background: var(--navy); }
.t-card .name { font-weight: 700; font-size: 14px; color: var(--navy); line-height: 1.2; }
.t-card.secondary .name { font-size: 12px; }
.t-card .role { font-size: 12px; color: #777; margin-top: 2px; line-height: 1.3; }
.t-card.secondary .role { font-size: 10.5px; }

/* Speaking page featured pull-quote */
.speaking-quote-feature {
    background: var(--cream); padding: 60px 60px; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0;
    margin: 60px -60px;
}
.speaking-quote-feature .inner { max-width: 1000px; margin: 0 auto; }
.speaking-quote-feature .inner > blockquote {
    font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700;
    line-height: 1.35; color: var(--navy); margin: 0 0 18px; padding-left: 32px;
    border-left: 6px solid var(--coral);
}
.speaking-quote-feature .attr { font-size: 15px; color: #666; padding-left: 32px; }
.speaking-quote-feature .attr strong { color: var(--navy); }
.speaking-supporting-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 1100px; margin: 40px auto 0;
}
.speaking-supporting-grid .t-card { background: white; }

/* Coaching page testimonial block */
.coaching-quote-block {
    background: white; border-left: 6px solid var(--teal);
    padding: 32px 36px; margin: 32px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.coaching-quote-block blockquote {
    font-size: 17px; line-height: 1.55; color: var(--dark-gray);
    margin: 0 0 18px; font-style: italic;
}
.coaching-quote-block .attr {
    display: flex; align-items: center; gap: 14px;
    padding-top: 14px; border-top: 1px solid #f0f0f0;
}
.coaching-quote-block .avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--teal);
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-family: 'Montserrat', sans-serif; font-size: 15px;
}
.coaching-quote-block .name { font-weight: 700; color: var(--navy); font-size: 15px; }
.coaching-quote-block .role { font-size: 12px; color: #777; margin-top: 2px; }

/* About page closing quote band */
.about-quote-band {
    grid-column: 1 / -1;
    background: var(--cream); padding: 50px 60px; text-align: center;
    margin: 60px -60px -80px;
}
.about-quote-band blockquote {
    font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--navy); max-width: 800px; margin: 0 auto 18px;
    line-height: 1.4; font-style: normal;
}
.about-quote-band .attr { font-size: 14px; color: #666; }
.about-quote-band .attr strong { color: var(--navy); }

/* Mobile */
@media (max-width: 768px) {
    .testimonials-redesigned .featured-row { grid-template-columns: 1fr; }
    .testimonials-redesigned .secondary-row { grid-template-columns: 1fr 1fr; }
    .speaking-supporting-grid { grid-template-columns: 1fr; }
    .featured-testimonial-band blockquote { font-size: 22px; }
    .speaking-quote-feature .inner > blockquote { font-size: 20px; }
}
