/* =====================================================
   DETAIL PAGE STYLES — css/detail.css
   ===================================================== */

/* HERO */
.detail-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
    overflow: hidden;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: detailZoom 10s ease forwards;
}

@keyframes detailZoom {
    from {
        transform: scale(1.06)
    }

    to {
        transform: scale(1)
    }
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 5, 16, 0.4) 0%,
            rgba(5, 5, 16, 0.6) 40%,
            rgba(5, 5, 16, 0.92) 100%);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 56px;
}

.detail-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.dp-badge {
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
}

.dp-badge.rera {
    background: #16a34a;
    color: white;
}

.dp-badge.luxury {
    background: var(--gold);
    color: var(--dark);
}

.dp-badge.new {
    background: #2563eb;
    color: white;
}

.detail-hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.detail-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.detail-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.dhs-item span {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.dhs-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.dhs-div {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.detail-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-brochure:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

/* LAYOUT */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 80px;
}

/* CONTENT SECTIONS */
.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.detail-section:last-child {
    border-bottom: none;
}

.ds-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ds-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.ds-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.detail-intro {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* OVERVIEW GRID */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.ov-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.ov-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
}

.ov-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ov-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.ov-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.05));
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.88rem;
}

/* CONFIG TABLE */
.config-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
}

.config-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 100px;
    background: rgba(212, 168, 67, 0.08);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 12px;
}

.config-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 100px;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.config-row:last-child {
    border-bottom: none;
}

.config-row:hover {
    background: rgba(212, 168, 67, 0.04);
}

.config-type {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.config-row span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.config-price {
    font-weight: 800;
    color: var(--gold);
    font-size: 1rem;
}

.config-cta {
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--gold);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
}

.config-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

.config-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* SPEC GRID */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-cat {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.spec-cat-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.spec-list li::before {
    content: '✓';
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* PAYMENT TIMELINE */
.payment-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
}

.payment-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(212, 168, 67, 0.2));
}

.pt-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
}

.pt-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-weight: 900;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.pt-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.pt-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.plc-box {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
}

.plc-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
}

.plc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.plc-grid div {
    font-size: 0.83rem;
    color: var(--text-muted);
}

.plc-grid div strong {
    color: var(--white);
}

/* BOOKING STEPS */
.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bk-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.bk-step:hover {
    border-color: rgba(212, 168, 67, 0.3);
}

.bk-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-step h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.bk-step p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CONSULTANTS */
.consultant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cn-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition);
}

.cn-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-3px);
}

.cn-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cn-role {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cn-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin: 4px 0 8px;
}

.cn-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   STICKY SIDEBAR
   ========================================== */
.detail-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.sb-header {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.05));
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.sb-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
}

.sb-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.sb-price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.sb-form {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb-form-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.sb-form input,
.sb-form select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.sb-form input::placeholder {
    color: var(--text-muted);
}

.sb-form input:focus,
.sb-form select:focus {
    border-color: var(--gold);
}

.sb-form select option {
    background: var(--dark2);
}

.sb-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.sb-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

.sb-success {
    text-align: center;
    padding: 12px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: var(--radius-sm);
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 600;
}

.sb-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
}

.sb-call,
.sb-wa {
    padding: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.sb-call {
    color: var(--gold);
    border-right: 1px solid var(--border);
}

.sb-call:hover {
    background: rgba(212, 168, 67, 0.08);
}

.sb-wa {
    color: #25d366;
}

.sb-wa:hover {
    background: rgba(37, 211, 102, 0.08);
}

.sidebar-quick {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.sidebar-quick h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sidebar-quick ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sidebar-quick li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.83rem;
}

.sidebar-quick li span {
    color: var(--text-muted);
}

.sidebar-quick li strong {
    color: var(--white);
    text-align: right;
}

.sidebar-brochure-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-brochure-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ==========================================
   LEAD GATE MODAL
   ========================================== */
.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.lead-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-modal {
    background: var(--dark2);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--radius);
    padding: 40px 36px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: all 0.3s ease;
}

.lead-modal-overlay.active .lead-modal {
    transform: translateY(0) scale(1);
}

.lead-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 1.1rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.lead-modal-close:hover {
    color: var(--white);
}

.lead-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.lead-modal h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.lead-modal>p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.lm-field {
    margin-bottom: 12px;
}

.lm-field input,
.lm-field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.lm-field input::placeholder {
    color: var(--text-muted);
}

.lm-field input:focus,
.lm-field select:focus {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.04);
}

.lm-field select option {
    background: var(--dark2);
}

.lm-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 15px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
    margin-bottom: 12px;
}

.lm-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 168, 67, 0.45);
}

.lm-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.lm-success {
    text-align: center;
}

.lm-success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.lm-success h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.lm-success p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.lm-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   PROJECTS PAGE — Redesigned cards
   ========================================== */
.prop-card-v2 {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.prop-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 168, 67, 0.3);
}

.prop-card-v2 .pv2-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.prop-card-v2 .pv2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prop-card-v2:hover .pv2-img img {
    transform: scale(1.07);
}

.pv2-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}

.pv2-badge {
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
}

.pv2-badge.sale {
    background: var(--gold);
    color: var(--dark);
}

.pv2-badge.rent {
    background: #16a34a;
    color: white;
}

.pv2-badge.rera {
    background: rgba(22, 163, 74, 0.9);
    color: white;
}

.pv2-badge.new {
    background: #2563eb;
    color: white;
}

.pv2-badge.feat {
    background: rgba(212, 168, 67, 0.9);
    color: var(--dark);
}

.pv2-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pv2-type {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.pv2-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.35;
}

.pv2-loc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pv2-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 10px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 14px;
}

.pv2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.pv2-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}

.pv2-actions {
    display: flex;
    gap: 6px;
}

.pv2-btn-detail {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.pv2-btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
}

.pv2-btn-brochure {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.pv2-btn-brochure:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
}

/* Featured card — spans full width */
.prop-card-v2.featured-full {
    grid-column: 1 / -1;
    flex-direction: row;
}

.prop-card-v2.featured-full .pv2-img {
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: unset;
    min-height: 280px;
}

.prop-card-v2.featured-full .pv2-body {
    padding: 28px 32px;
}

.prop-card-v2.featured-full .pv2-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.prop-card-v2.featured-full .pv2-price {
    font-size: 1.3rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prop-card-v2.featured-full {
        flex-direction: column;
    }

    .prop-card-v2.featured-full .pv2-img {
        width: 100%;
        min-height: 220px;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .detail-hero {
        min-height: 70vh;
    }

    .detail-hero-content h1 {
        font-size: 1.7rem;
    }

    .detail-hero-stats {
        gap: 16px;
    }

    .dhs-div {
        display: none;
    }

    .dhs-item span {
        font-size: 1.2rem;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .consultant-grid {
        grid-template-columns: 1fr;
    }

    .config-head,
    .config-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .config-head span:nth-child(3),
    .config-row span:nth-child(3) {
        display: none;
    }

    .plc-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero-actions {
        flex-direction: column;
    }

    .detail-hero-actions .btn-primary,
    .detail-hero-actions .btn-brochure {
        width: 100%;
        justify-content: center;
    }

    .payment-timeline::before {
        left: 24px;
    }

    .lm-success-actions {
        flex-direction: column;
    }

    .lm-success-actions a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lead-modal {
        padding: 28px 20px;
    }

    .config-head,
    .config-row {
        grid-template-columns: 1fr 1fr;
    }

    .config-head span:nth-child(2),
    .config-row span:nth-child(2) {
        display: none;
    }
}