/* Mindset Consultancy Page */
.mc-page {
    --mc-navy: #2c3e50;
    --mc-navy-dark: #1c2b38;
    --mc-blue: #3498db;
    --mc-orange: #ff6b35;
    --mc-amber: #f7931e;
    --mc-teal: #00b894;
    --mc-cream: #fff7f0;
    --mc-soft: #f8f9fa;
    --mc-line: #dfe6ec;
    --mc-text: #263238;
    --mc-muted: #60717f;
    background: #fff;
    color: var(--mc-text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.mc-page *,
.mc-page *::before,
.mc-page *::after {
    box-sizing: border-box;
}

.mc-page a:not(.mc-btn) { color: inherit; }

.mc-page img {
    max-width: 100%;
    height: auto;
}

.mc-wrap {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.mc-hero {
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    background: var(--mc-navy-dark);
    color: #fff !important;
    display: flex;
    align-items: center;
    padding: 9rem 0 4rem;
}

.mc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(28, 43, 56, 0.98) 0%, rgba(44, 62, 80, 0.9) 48%, rgba(52, 152, 219, 0.45) 100%),
        url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1800&q=82') center/cover no-repeat;
}

.mc-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 4rem;
    align-items: center;
}

.mc-kicker,
.mc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--mc-orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.mc-hero h1 {
    margin: 1rem 0 0.65rem;
    color: #fff !important;
    font-size: clamp(2.65rem, 5vw, 4.2rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0;
}

.mc-hero-subtitle {
    margin: 0 0 1.35rem;
    color: #fbd7c7;
    font-size: 1.45rem;
    font-weight: 700;
}

.mc-hero-strap {
    display: inline-flex;
    margin: 0 0 1rem;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
    font-weight: 800;
}

.mc-hero-lede {
    max-width: 720px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.85;
}

.mc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.mc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.96rem;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mc-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.mc-btn-primary {
    background: linear-gradient(45deg, var(--mc-orange), var(--mc-amber));
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(255, 107, 53, 0.28);
}

.mc-btn-primary:hover {
    color: #fff !important;
    box-shadow: 0 18px 36px rgba(255, 107, 53, 0.35);
}

.mc-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.mc-btn-secondary:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.14);
}

.mc-btn-slim {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    background: var(--mc-navy);
    color: #fff !important;
    box-shadow: none;
}

.mc-btn-slim,
.mc-btn-slim i,
.mc-btn-slim span {
    color: #fff !important;
}

.mc-btn-slim:hover {
    background: var(--mc-blue);
    color: #fff !important;
}

.mc-btn-gold {
    background: linear-gradient(45deg, var(--mc-orange), var(--mc-amber));
}

.mc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.55rem;
}

.mc-tags span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mc-hero-edition {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.mc-hero-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.mc-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.mc-hero-image figcaption {
    padding: 1rem 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    background: rgba(28, 43, 56, 0.92);
}

.mc-section-nav {
    position: sticky;
    top: 84px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--mc-line);
    backdrop-filter: blur(14px);
}

.mc-section-nav .mc-wrap {
    display: flex;
    gap: 1.35rem;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.mc-section-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    color: var(--mc-navy);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.mc-section-nav a:hover {
    color: var(--mc-orange);
}

.mc-stats {
    background: var(--mc-navy);
    color: #fff !important;
}

.mc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 0;
    padding-bottom: 0;
}

.mc-stat {
    min-height: 168px;
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.mc-stat:last-child {
    border-right: 0;
}

.mc-stat strong {
    display: block;
    color: #fff !important;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 800;
}

.mc-stat strong span {
    color: #ffbd9d;
    font-size: 1.2rem;
}

.mc-stat p {
    margin: 0.65rem 0 0.15rem;
    color: #fff !important;
    font-weight: 800;
}

.mc-stat small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.mc-section {
    padding: 6rem 0;
}

.mc-section-light {
    background: #fff;
}

.mc-section-muted {
    background: var(--mc-soft);
}

.mc-section-ink {
    background: var(--mc-navy-dark);
    color: #fff !important;
}

.mc-section-blue {
    background: linear-gradient(135deg, var(--mc-navy) 0%, var(--mc-blue) 100%);
    color: #fff !important;
}

.mc-section-head {
    max-width: 830px;
    margin-top: 0.8rem;
    margin-bottom: 3rem;
}

.mc-section-head h2 {
    margin: 0 0 0.9rem;
    color: var(--mc-navy);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

.mc-section-ink .mc-section-head h2,
.mc-section-blue .mc-section-head h2,
.mc-contact .mc-section-head h2 {
    color: #fff !important;
}

.mc-section-head p {
    margin: 0;
    color: var(--mc-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.mc-section-ink .mc-section-head p,
.mc-section-blue .mc-section-head p,
.mc-contact .mc-section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.mc-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.mc-align-start {
    align-items: start;
}

.mc-copy p,
.mc-copy li {
    color: var(--mc-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.mc-section-blue .mc-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.mc-copy h3,
.mc-list-panel h3,
.mc-subhead {
    margin: 0 0 1.1rem;
    color: var(--mc-navy);
    font-size: 1.5rem;
    line-height: 1.25;
}

.mc-section-blue .mc-copy h3,
.mc-section-blue .mc-list-panel h3 {
    color: #fff !important;
}

.mc-pillar-list {
    display: grid;
    gap: 1rem;
}

.mc-panel-label,
.mc-phase-heading {
    color: var(--mc-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mc-panel-label {
    margin-bottom: 0.25rem;
}

.mc-pillar-list article,
.mc-list-panel,
.mc-mini-grid article,
.mc-method-overview article,
.mc-phase,
.mc-package,
.mc-addon-grid article,
.mc-light-cards .mc-card {
    border: 1px solid var(--mc-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.08);
}

.mc-pillar-list article {
    padding: 1.35rem 1.5rem;
    border-left: 5px solid var(--mc-orange);
}

.mc-pillar-list h3,
.mc-card h3,
.mc-mini-grid h4,
.mc-phase h3,
.mc-package h3,
.mc-addon-grid h3,
.mc-timeline h3,
.mc-step-grid h3 {
    margin: 0 0 0.55rem;
    color: var(--mc-navy);
    font-size: 1.18rem;
    line-height: 1.32;
    font-weight: 800;
}

.mc-pillar-list p,
.mc-card p,
.mc-mini-grid p,
.mc-phase li,
.mc-package li,
.mc-addon-grid p,
.mc-timeline p,
.mc-step-grid p,
.mc-package-for {
    margin: 0;
    color: var(--mc-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.mc-card-grid {
    display: grid;
    gap: 1.5rem;
}

.mc-card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mc-card {
    min-height: 100%;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.mc-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.1rem;
    border-radius: 8px;
    color: #fff !important;
    background: linear-gradient(45deg, var(--mc-orange), var(--mc-amber));
    font-size: 1.2rem;
}

.mc-section-ink .mc-card h3 {
    color: #fff !important;
}

.mc-section-ink .mc-card p {
    color: rgba(255, 255, 255, 0.72);
}

.mc-list-panel {
    padding: 2rem;
}

.mc-list-panel-dark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.mc-tick-list,
.mc-arrow-list,
.mc-phase ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mc-tick-list li,
.mc-arrow-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--mc-muted);
    line-height: 1.65;
}

.mc-tick-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--mc-teal);
    font-size: 0.8rem;
}

.mc-arrow-list li {
    color: rgba(255, 255, 255, 0.82);
}

.mc-arrow-list li::before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #ffbd9d;
    font-size: 0.8rem;
}

.mc-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mc-mini-grid article {
    padding: 1.35rem;
}

.mc-mini-grid h4 {
    color: var(--mc-orange);
}

.mc-method-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mc-method-overview article {
    position: relative;
    min-height: 180px;
    padding: 1.4rem;
    overflow: hidden;
}

.mc-method-overview span {
    position: absolute;
    right: 1rem;
    bottom: -0.2rem;
    color: rgba(52, 152, 219, 0.12);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.mc-method-overview h3 {
    margin: 0 0 0.5rem;
    color: var(--mc-navy);
    font-size: 1.25rem;
    font-weight: 900;
}

.mc-method-overview p {
    margin: 0;
    color: var(--mc-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.mc-phase-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1rem;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    background: var(--mc-cream);
}

.mc-phase-heading strong {
    color: var(--mc-navy);
    font-size: 0.92rem;
    letter-spacing: 0;
    text-transform: none;
}

.mc-phase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.mc-phase {
    position: relative;
    padding: 1.6rem;
    overflow: hidden;
}

.mc-phase span {
    position: absolute;
    right: 1.2rem;
    top: 1rem;
    color: rgba(255, 107, 53, 0.14);
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 900;
}

.mc-phase small,
.mc-package small,
.mc-timeline small {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--mc-orange);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mc-phase ul {
    display: grid;
    gap: 0.45rem;
}

.mc-phase li {
    position: relative;
    padding-left: 1.05rem;
}

.mc-phase li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mc-blue);
}

.mc-note {
    margin: 2rem 0 0;
    padding: 1.15rem 1.35rem;
    border-left: 5px solid var(--mc-orange);
    border-radius: 8px;
    background: var(--mc-cream);
    color: #536370;
    line-height: 1.75;
}

.mc-note-dark {
    border-color: var(--mc-orange);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.mc-standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
}

.mc-standard-grid article {
    min-height: 160px;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.08);
}

.mc-standard-grid strong {
    display: block;
    margin-bottom: 0.75rem;
    color: #ffbd9d;
    font-size: 2.2rem;
    line-height: 1;
}

.mc-standard-grid h3 {
    margin: 0 0 0.35rem;
    color: #fff !important;
    font-size: 1.04rem;
}

.mc-standard-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    text-transform: uppercase;
}

.mc-package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
}

.mc-package {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.82rem;
    padding: 1.25rem;
}

.mc-featured-package {
    border: 2px solid var(--mc-orange);
    transform: none;
}

.mc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    margin-bottom: 0.2rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(45deg, var(--mc-orange), var(--mc-amber));
    color: #fff !important;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mc-price {
    display: block;
    color: var(--mc-navy);
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 900;
}

.mc-package-snapshot {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.55rem;
    margin: 0.1rem 0 0.15rem;
}

.mc-package-snapshot span {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    min-height: 64px;
    padding: 0.7rem;
    border: 1px solid rgba(52, 152, 219, 0.14);
    border-radius: 8px;
    background: var(--mc-cream);
    color: var(--mc-navy);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.25;
}

.mc-package-snapshot i {
    color: var(--mc-orange);
    font-size: 1rem;
    line-height: 1.2;
}

.mc-featured-package .mc-package-snapshot span {
    border-color: rgba(255, 107, 53, 0.18);
    background: #fff7f1;
}

.mc-fee-note,
.mc-inclusion-label {
    margin: -0.25rem 0 0;
    color: var(--mc-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.mc-inclusion-label {
    color: var(--mc-orange);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mc-package .mc-tick-list {
    margin-top: 0.2rem;
    margin-bottom: 1rem;
}

.mc-package .mc-tick-list li {
    font-size: 0.87rem;
}

.mc-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--mc-line);
    border-radius: 8px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.mc-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.mc-table th {
    padding: 1rem;
    background: var(--mc-navy);
    color: #fff !important;
    text-align: center;
    font-weight: 800;
}

.mc-table th span {
    display: block;
    margin-top: 0.2rem;
    color: #ffbd9d;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mc-table th:first-child,
.mc-table td:first-child {
    text-align: left;
}

.mc-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--mc-line);
    color: var(--mc-muted);
    text-align: center;
}

.mc-table td:first-child {
    color: var(--mc-navy);
    font-weight: 700;
}

.mc-table tbody tr:nth-child(even) td {
    background: #fbfcfd;
}

.mc-addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.mc-addon-grid article {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    padding: 1.35rem;
}

.mc-addon-grid strong {
    display: block;
    margin-top: auto;
    color: var(--mc-orange);
    font-size: 1.12rem;
    font-weight: 900;
}

.mc-warning {
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.mc-timeline {
    position: relative;
    display: grid;
    gap: 1.2rem;
    padding-left: 2rem;
}

.mc-timeline::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.4rem;
    width: 3px;
    background: linear-gradient(var(--mc-orange), var(--mc-blue));
    border-radius: 999px;
}

.mc-timeline article {
    position: relative;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--mc-line);
    border-radius: 8px;
    background: #fff;
}

.mc-timeline article::before {
    content: "";
    position: absolute;
    top: 1.45rem;
    left: -2rem;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--mc-orange);
    box-shadow: 0 0 0 2px var(--mc-orange);
}

.mc-light-cards .mc-card h3 {
    color: var(--mc-navy);
}

.mc-light-cards .mc-card p {
    color: var(--mc-muted);
}

.mc-contact {
    background: var(--mc-navy-dark);
    color: #fff !important;
}

.mc-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.mc-step-grid article {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.mc-step-grid strong {
    display: block;
    margin-bottom: 1rem;
    color: rgba(255, 107, 53, 0.5);
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
}

.mc-step-grid h3 {
    color: #fff !important;
}

.mc-step-grid p {
    color: rgba(255, 255, 255, 0.72);
}

.mc-contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.mc-contact-option {
    display: grid;
    gap: 0.5rem;
    min-height: 178px;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mc-contact-option:hover {
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.72);
    background: rgba(255, 255, 255, 0.15);
}

.mc-contact-option i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--mc-orange), var(--mc-amber));
    color: #fff !important;
    font-size: 1.2rem;
}

.mc-contact-option span {
    color: #fff !important;
    font-size: 1.06rem;
    font-weight: 900;
    line-height: 1.3;
}

.mc-contact-option small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    line-height: 1.55;
}

.mc-form-message {
    max-width: 820px;
    margin: 0 auto 2rem;
    padding: 1rem 1.15rem;
    border-radius: 8px;
    line-height: 1.6;
    text-align: center;
}

.mc-form-message-success {
    border: 1px solid rgba(135, 220, 170, 0.45);
    background: rgba(44, 149, 93, 0.16);
    color: #d9ffe7;
}

.mc-form-message-error {
    border: 1px solid rgba(255, 163, 135, 0.55);
    background: rgba(255, 107, 53, 0.16);
    color: #ffe3d9;
}

.mc-query-panel {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.mc-query-copy h3 {
    margin: 0 0 0.8rem;
    color: #fff !important;
    font-size: 1.8rem;
}

.mc-query-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.mc-query-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mc-form-row {
    display: grid;
    gap: 0.45rem;
}

.mc-form-row-full {
    grid-column: 1 / -1;
}

.mc-form-row label {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 800;
}

.mc-form-row input,
.mc-form-row textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--mc-navy);
    font: inherit;
    padding: 0.88rem 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mc-form-row textarea {
    min-height: 130px;
    resize: vertical;
}

.mc-form-row input:focus,
.mc-form-row textarea:focus {
    border-color: var(--mc-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.mc-query-form .mc-btn {
    justify-self: start;
    border: 0;
    cursor: pointer;
}

.mc-final-cta {
    max-width: 760px;
    margin: 3.5rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.mc-final-cta h3 {
    margin: 0 0 0.5rem;
    color: #fff !important;
    font-size: 2rem;
}

.mc-final-cta p {
    margin: 0 0 0.8rem;
    color: rgba(255, 255, 255, 0.72);
}

.mc-email {
    display: block;
    margin: 0 0 1.3rem;
    color: #ffbd9d;
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.mc-contact-line {
    color: #ffbd9d !important;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.mc-email:hover {
    color: #fff !important;
}

.mc-final-cta small {
    display: block;
    max-width: 560px;
    margin: 1.4rem auto 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.mc-landing-footer {
    padding: 1.5rem 0;
    background: #111922;
    color: rgba(255, 255, 255, 0.54);
    text-align: center;
}

.mc-landing-footer p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.7;
}

.mc-landing-footer strong,
.mc-landing-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.mc-landing-footer a:hover {
    color: var(--mc-orange);
}

@media (max-width: 1120px) {
    .mc-wrap {
        width: 86%;
    }

    .mc-hero-grid,
    .mc-two-col {
        grid-template-columns: 1fr;
    }

    .mc-hero-image {
        max-width: 620px;
    }

    .mc-card-grid-4,
    .mc-method-overview,
    .mc-addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mc-featured-package {
        transform: none;
    }
}

@media (max-width: 900px) {
    .mc-section-nav {
        top: 70px;
    }

    .mc-stats-grid,
    .mc-phase-grid,
    .mc-standard-grid,
    .mc-step-grid,
    .mc-contact-options,
    .mc-query-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .mc-stat:nth-child(2) {
        border-right: 0;
    }

    .mc-stat:nth-child(1),
    .mc-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
}

@media (max-width: 680px) {
    .mc-wrap {
        width: 100%;
        padding: 0 1.2rem;
    }

    .mc-hero {
        min-height: auto;
        padding: 7.5rem 0 3rem;
    }

    .mc-hero h1 {
        font-size: 2.45rem;
    }

    .mc-hero-subtitle {
        font-size: 1.18rem;
    }

    .mc-actions,
    .mc-btn {
        width: 100%;
    }

    .mc-section {
        padding: 4rem 0;
    }

    .mc-section-head {
        margin-bottom: 2.2rem;
    }

    .mc-section-head h2 {
        font-size: 2rem;
    }

    .mc-stats-grid,
    .mc-card-grid-4,
    .mc-mini-grid,
    .mc-method-overview,
    .mc-phase-grid,
    .mc-standard-grid,
    .mc-package-grid,
    .mc-addon-grid,
    .mc-step-grid,
    .mc-contact-options,
    .mc-query-panel,
    .mc-query-form {
        grid-template-columns: 1fr;
    }

    .mc-stat,
    .mc-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .mc-stat:last-child {
        border-bottom: 0;
    }

    .mc-hero-image img {
        aspect-ratio: 4 / 3;
    }

    .mc-phase-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .mc-wrap {
        padding: 0 1rem;
    }

    .mc-hero {
        padding-top: 7rem;
    }

    .mc-hero h1 {
        font-size: 2.2rem;
    }

    .mc-hero-lede,
    .mc-section-head p,
    .mc-copy p {
        font-size: 0.98rem;
    }

    .mc-stat strong {
        font-size: 2.65rem;
    }

    .mc-package,
    .mc-card,
    .mc-list-panel,
    .mc-phase,
    .mc-addon-grid article,
    .mc-step-grid article {
        padding: 1.2rem;
    }
}
