/* grid.css */

/* =======================================
   Grid and Box Styles (Home, Business, Dashboard)
   ======================================= */
.grid-container {
    display: grid;
    gap: 20px;
    margin-bottom: 60px;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 18px;
}

.section-heading {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 30px;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    margin: 0 0 10px;
}

.support-copy {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.15rem;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1400px;
    margin: -10px auto 36px;
    padding: 0 18px;
}

.value-strip article {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px;
    text-align: left;
    box-shadow: 0 12px 24px rgba(5, 20, 28, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-strip article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(5, 20, 28, 0.12);
}

.strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: var(--hover-bg);
    color: var(--accent-primary);
}

.strip-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.value-strip strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.value-strip p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}


.home-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: 
        "box1 box2 box2 box3"
        "box1 box4 box5 box5";
}

.box1 { grid-area: box1; }
.box2 { grid-area: box2; }
.box3 { grid-area: box3; }
.box4 { grid-area: box4; }
.box5 { grid-area: box5; }

.business-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: 
        "biz-box1 biz-box2 biz-box2 biz-box3"
        "biz-box1 biz-box4 biz-box5 biz-box5";
}

.biz-box1 { grid-area: biz-box1; }
.biz-box2 { grid-area: biz-box2; }
.biz-box3 { grid-area: biz-box3; }
.biz-box4 { grid-area: biz-box4; }
.biz-box5 { grid-area: biz-box5; }

.grid-box {
    background-color: var(--bg-primary);
    padding: 20px;
    border-radius: 18px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 180px;
}

.feature-card .card-icon {
    font-size: 1.5rem;
}

.feature-card .card-tag {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-secondary);
    font-weight: 600;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.45;
}

.homeowner { background: linear-gradient(145deg, #effcfb, #ffffff); }
.landlord { background: linear-gradient(145deg, #f5fbff, #ffffff); }
.contractor { background: linear-gradient(145deg, #fffaf2, #ffffff); }
.dashboard { background: linear-gradient(145deg, #f3f9ff, #ffffff); }
.support { background: linear-gradient(145deg, #f6fff8, #ffffff); }

.document-focus { background: linear-gradient(145deg, #fffaf1, #ffffff); }
.planning-focus { background: linear-gradient(145deg, #eef7ff, #ffffff); }
.property-focus { background: linear-gradient(145deg, #f2fff7, #ffffff); }
.update-focus { background: linear-gradient(145deg, #fff4f8, #ffffff); }
.trust-focus { background: linear-gradient(145deg, #f7f4ff, #ffffff); }

/* =======================================
   Customer Section Styles
   ======================================= */
.customer-section {
    max-width: 1400px;
    margin: 40px auto 40px;
    padding: 60px 18px;
    border-radius: 24px;
}

.homeowners-section {
    background: linear-gradient(135deg, rgba(175, 238, 238, 0.1), rgba(32, 178, 170, 0.08));
    border: 1px solid rgba(175, 238, 238, 0.3);
}

.landlords-section {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.08), rgba(0, 128, 128, 0.06));
    border: 1px solid rgba(32, 178, 170, 0.2);
}

.contractors-section {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.06), rgba(175, 238, 238, 0.08));
    border: 1px solid rgba(32, 178, 170, 0.15);
}

.section-header-alt {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 12px;
}

.section-header-alt h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin: 0 0 12px;
    color: var(--text-primary);
}

.section-header-alt p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(5, 20, 28, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.05), rgba(175, 238, 238, 0.1));
    border: 2px dashed rgba(32, 178, 170, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 100px;
    height: 100px;
}

.section-content {
    flex: 1;
}

.value-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.value-card {
    background: var(--bg-secondary);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(5, 20, 28, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1.5px solid rgba(32, 178, 170, 0.15);
    color: var(--text-primary);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(32, 178, 170, 0.12);
    border-color: rgba(32, 178, 170, 0.3);
}

.value-card .card-symbol {
    display: block;
    margin: 0 auto 14px;
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.value-card .card-symbol svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.value-card strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
    font-size: 1.05rem;
}

@media (prefers-color-scheme: dark) {
    .homeowner-bg {
        background: linear-gradient(145deg, rgba(32, 178, 170, 0.08), rgba(5, 20, 28, 0.4));
        border-color: rgba(175, 238, 238, 0.2);
    }

    .landlord-bg {
        background: linear-gradient(145deg, rgba(32, 178, 170, 0.06), rgba(5, 20, 28, 0.35));
        border-color: rgba(32, 178, 170, 0.2);
    }

    .contractor-bg {
        background: linear-gradient(145deg, rgba(0, 128, 128, 0.05), rgba(5, 20, 28, 0.3));
        border-color: rgba(32, 178, 170, 0.15);
    }
}

.customer-cta {
    text-align: center;
    padding-top: 20px;
}

.customer-cta .btn {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.cta-hero {
    background: linear-gradient(180deg, rgba(32, 178, 170, 0.08), rgba(32, 178, 170, 0.04));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 18px 40px;
    text-align: center;
    margin: 40px 0 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-hero h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin: 0 0 10px;
    line-height: 1.2;
}

.cta-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 28px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-final {
    background: linear-gradient(180deg, rgba(32, 178, 170, 0.08), rgba(32, 178, 170, 0.04));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 18px 40px;
    text-align: center;
    margin: 40px 0 0;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin: 0 0 10px;
    line-height: 1.2;
}

.cta-final p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 28px;
    line-height: 1.5;
}

.grid-box:hover {
    transform: scale(1.025);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.grid-box a {
    color: var(--text-primary);
    display: block;
    height: 100%;
}

.section-header {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (max-width: 747px) {
    .dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 12px;
        gap: 16px;
    }
    /* Stack the paired boxes and make every box full-width so they're all
       exactly the same width (must be more specific than the base span-2
       rule, otherwise that rule wins and widens the documents box). */
    .dashboard-grid .dash-box.homes-box,
    .dashboard-grid .dash-box.vehicles-box,
    .dashboard-grid .dash-box.tools,
    .dashboard-grid .dash-box.profile,
    .dashboard-grid .documents-box,
    .dashboard-grid .planning-box,
    .dashboard-grid .planned-maintenance-box {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .dashboard-grid {
        padding: 0 10px;
        gap: 14px;
    }
    .dash-box {
        padding: 14px 12px;
    }
    .dash-box .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    .dash-box .button-group .add-button,
    .dash-box .button-group .view-button {
        width: 100%;
    }
    /* Make My Homes / My Vehicles rows consistent and trim them on phones */
    #dash-homes .ev-cell-icon,
    #dash-vehicles .ev-cell-icon,
    #dash-upcoming .ev-cell-icon,
    #dash-planned .ev-cell-icon {
        display: none;
    }
}

.dash-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

/* My Homes / My Vehicles / Try MyTools / Edit MyProfile pair up in the
   2-column grid and only stack once the grid itself collapses below. */

.dash-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: inherit;
    cursor: pointer;
}

.dash-box:hover {
    transform: scale(1.025);
}

.dash-box.no-scale:hover {
    transform: none;
}

#dash-homes {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

#dash-vehicles {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

#dash-homes .ev-row,
#dash-vehicles .ev-row {
    gap: 8px;
}

#dash-homes .ev-row-left,
#dash-vehicles .ev-row-left {
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

#dash-homes .ev-cell-name,
#dash-vehicles .ev-cell-name {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#dash-homes .ev-cell-asset,
#dash-vehicles .ev-cell-asset {
    width: auto;
    min-width: 80px;
    text-align: right;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#dash-homes .ev-header-row .ev-cell-name,
#dash-homes .ev-header-row .ev-cell-asset,
#dash-vehicles .ev-header-row .ev-cell-name,
#dash-vehicles .ev-header-row .ev-cell-asset {
    font-size: 0.8rem;
}

/* Dashboard "Upcoming" / "Planned Maintenance" rows: keep everything
   shrinkable so no content overflows the box (name/asset/date/time truncate). */
#dash-upcoming .ev-row,
#dash-planned .ev-row {
    gap: 10px;
}
#dash-upcoming .ev-row-left,
#dash-planned .ev-row-left {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
}
#dash-upcoming .ev-cell-name,
#dash-planned .ev-cell-name {
    min-width: 0;
    flex: 1 1 auto;
}
#dash-upcoming .ev-cell-asset,
#dash-planned .ev-cell-asset {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    max-width: 38%;
    text-align: left;
}
#dash-upcoming .ev-row-right,
#dash-planned .ev-row-right {
    flex-shrink: 1;
    min-width: 0;
    gap: 10px;
}
#dash-upcoming .ev-cell-date,
#dash-planned .ev-cell-date,
#dash-upcoming .ev-cell-time,
#dash-planned .ev-cell-time {
    width: auto;
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.documents-box h3, .planning-box h3, .documents-box p, .planning-box p {
    text-align: left;
}

#dash-upcoming, #upcoming-events, #all-events-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

#dash-upcoming .dash-upcoming-empty, #upcoming-events .dash-upcoming-empty, #all-events-list .dash-upcoming-empty {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Docs-style event rows (planned maintenance / upcoming events) */
.ev-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.ev-row-open {
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 8px;
    padding: 6px 8px;
    margin-bottom: 2px;
}

.ev-row-open:hover {
    background: var(--hover-bg);
}

.ev-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
}

.ev-row-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.ev-cell {
    flex: none;
    white-space: nowrap;
}

.ev-cell-name {
    min-width: 200px;
    flex: 0 1 auto;
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ev-cell-asset {
    width: 190px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ev-cell-date {
    width: 150px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.ev-cell-time {
    width: 90px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--accent-primary);
    font-weight: 500;
    white-space: nowrap;
}

.ev-cell-icon {
    width: 18px;
    flex: none;
}

.ev-calendar-icon {
    display: block;
}

.ev-col-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.ev-header-row {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 8px;
    padding: 6px 8px;
    cursor: default;
}

.ev-header-row .ev-cell-name {
    font-weight: 600;
}

/* Tools & materials lists in the event modal */
.ev-list-input {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.ev-list-input input {
    flex: 1;
    height: 44px;
    box-sizing: border-box;
}

.ev-list-add {
    flex: none;
    min-width: 36px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1.5px solid var(--accent-primary);
    background: transparent;
    color: var(--accent-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.ev-list-add:hover {
    background: var(--hover-bg);
    border-color: var(--accent-primary);
}

.ev-tools-list {
    margin-top: 2px;
}

.ev-tool-row {
    background: none;
    border-radius: 0;
    padding: 4px 0 6px 16px;
    margin-bottom: 8px;
}

.ev-tool-name {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ev-tool-remove {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 6px;
}

.ev-tool-remove:hover {
    color: #e74c3c;
    background: var(--hover-bg);
}

.ev-tools-list .asset-list-empty {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 4px 2px 4px 16px;
    margin-bottom: 6px;
}

.documents-box, .planning-box, .planned-maintenance-box {
    grid-column: span 2;
}

.doc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.doc-symbol {
    flex: 1;
    text-align: left;
}

.doc-name {
    flex: 3;
    text-align: left;
}

.doc-date {
    flex: 1;
    text-align: right;
}

.calendar-mimic {
    border: none;
    padding: 0;
    margin: 0 0 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .value-strip {
        grid-template-columns: 1fr 1fr;
    }

    .value-cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .calendar-mimic {
        grid-template-columns: 1fr;
    }

    .value-strip,
    .home-grid,
    .business-grid,
    .value-cards-row {
        grid-template-columns: 1fr;
    }

    .home-grid .box1,
    .home-grid .box2,
    .home-grid .box3,
    .home-grid .box4,
    .home-grid .box5,
    .business-grid .biz-box1,
    .business-grid .biz-box2,
    .business-grid .biz-box3,
    .business-grid .biz-box4,
    .business-grid .biz-box5 {
        grid-area: auto;
    }

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

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

    .cta-hero {
        padding: 32px 18px;
        margin: -20px auto 32px;
    }

    .cta-final {
        padding: 40px 18px 32px;
    }

    .customer-section {
        padding: 40px 18px;
    }

    .value-cards-row {
        gap: 16px;
    }

    .section-header-alt h2 {
        font-size: 1.6rem;
    }
}

.month-box {
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 14px;
    background-color: var(--bg-primary);
    min-width: 0;
}

.calendar-mimic .month {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.calendar-mimic th {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.calendar-mimic td {
    text-align: center;
    padding: 5px 0;
    position: relative;
}

.calendar-mimic td:last-child::after {
    display: none;
}

.calendar-mimic .date-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s;
    color: var(--text-primary);
}

.calendar-mimic .date-circle:hover {
    background-color: var(--hover-bg);
}

.calendar-mimic .today {
    background-color: var(--accent-primary);
    color: #FFFFFF;
}

.calendar-mimic .has-event {
    position: relative;
}
.calendar-mimic .has-event::after {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    bottom: -6px;
    left: 50%;
    margin-left: -8px;
}

.calendar-mimic .today.has-event::after {
    background: #fff;
}

.calendar-mimic .past.has-event::after {
    opacity: 0.35;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.profile-symbol {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.tools-box, .profile-box {
    color: var(--text-primary);
}

.tools-box h3, .profile-box h3 {
    font-weight: bold;
}

.tools-box p, .profile-box p {
    font-weight: normal;
}

/* =======================================
   Showcase (index page only)
   ======================================= */
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.showcase-reverse {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.showcase:first-of-type {
  padding-top: 60px;
}

.showcase-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin-bottom: 6px;
}

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

.showcase-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin: 0 0 10px;
  color: var(--text-primary);
  line-height: 1.2;
}

.showcase-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto 20px;
  max-width: 440px;
}

.showcase-image svg {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.showcase-reverse .showcase-text {
  order: 1;
}

.showcase-reverse .showcase-image {
  order: 0;
}

/* =======================================
   CTA Banner (index page only)
   ======================================= */
.cta-banner {
  background: linear-gradient(135deg, #20B2AA, #008080);
  padding: 100px 24px;
  text-align: center;
}

.cta-banner-content {
  max-width: 520px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}

/* =======================================
   Responsive (index page showcase)
   ======================================= */
@media (max-width: 768px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .showcase-image {
    order: -1 !important;
  }

  .hero {
    height: 55vh;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .cta-banner {
    padding: 60px 16px;
  }
  .showcase {
    padding: 0 16px;
  }
}
