
/* Hero photo background */
.svc-hero .hero-photo-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('assets/heroes/services-hero.jpg') center 50% / cover no-repeat;
    opacity: .2;
    pointer-events: none;
    filter: saturate(.5);
}
/* services.css — IITCON Services page */

/* ── HERO ── */
.svc-hero {
    min-height: 50vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: calc(60px + 4rem) 0 4rem;
    position: relative; overflow: hidden;
    background: var(--navy);
}
.svc-hero .hero-grid-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(18,107,250,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,107,250,.055) 1px, transparent 1px);
    background-size: 54px 54px;
}
.svc-hero .container { position: relative; z-index: 1; max-width: 820px; }
.svc-hero .hero-pre {
    font-size: .7rem; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem;
}
.svc-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600; line-height: 1.08;
    letter-spacing: -.75px; margin-bottom: 1.5rem;
    word-break: break-word;
}
.svc-hero h1 em { font-style: normal; color: var(--blue); }
.svc-hero .hero-sub {
    font-size: clamp(.88rem, 1.4vw, 1rem);
    color: rgba(255,255,255,.45); line-height: 1.8; max-width: 600px;
}

/* ── PARTNERS ── */
.partners-section {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.partners-label {
    font-size: .65rem; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,.2);
    text-align: center; margin-bottom: 1.75rem;
}
.partners-strip {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 2.75rem 4.25rem;
}
.partner-logo {
    display: flex; align-items: center;
    opacity: .6; transition: opacity .2s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo img {
    height: 50px; width: auto; max-width: 240px;
    object-fit: contain;
}

/* ── SERVICE AREAS ── */
.svc-areas {
    background: var(--navy);
    padding: 5.5rem 0;
}
.svc-areas-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700; line-height: 1.15; letter-spacing: -.75px;
    margin-bottom: 3rem; word-break: break-word;
}
.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.svc-card {
    padding: 1.75rem 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    transition: border-color .18s, background .18s;
}
.svc-card:hover {
    border-color: rgba(18,107,250,.35);
    background: rgba(18,107,250,.04);
}
.svc-card-head {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.25rem;
}
.svc-num {
    font-size: .6rem; font-weight: 800; letter-spacing: 1.5px;
    color: var(--blue); padding-top: .3rem; flex-shrink: 0;
}
.svc-card h3 {
    font-size: 1rem; font-weight: 700; line-height: 1.3;
    letter-spacing: -.2px;
}
.svc-card ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: .55rem;
}
.svc-card ul li {
    font-size: .82rem; color: rgba(255,255,255,.45);
    line-height: 1.6; padding-left: 1rem; position: relative;
}
.svc-card ul li::before {
    content: '—';
    position: absolute; left: 0;
    color: rgba(18,107,250,.5); font-size: .7rem;
}

/* ── HOW WE ENGAGE ── */
.engage-section {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    padding: 5rem 0;
}
.engage-section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700; line-height: 1.15; letter-spacing: -.75px;
    margin-bottom: 3rem; word-break: break-word;
}
.engage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.engage-item {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.02);
}
.engage-step {
    display: block;
    font-size: .6rem; font-weight: 800; letter-spacing: 1.5px;
    color: var(--blue); margin-bottom: .75rem;
}
.engage-item h3 {
    font-size: .95rem; font-weight: 700; margin-bottom: .85rem;
}
.engage-item p {
    font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.75;
}

/* ── RATES ── */
.rates-section {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 5.5rem 0;
}
.rates-section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700; letter-spacing: -.75px;
    margin-bottom: .85rem;
}
.rates-intro {
    font-size: .9rem; color: rgba(255,255,255,.4);
    line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem;
}

/* Hourly table */
.hourly-table {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}
.hourly-row {
    display: grid;
    grid-template-columns: 220px 1fr 100px;
    gap: 1.5rem;
    padding: 1.1rem 1.75rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.hourly-row:last-child { border-bottom: none; }
.hourly-header {
    background: rgba(18,107,250,.06);
    font-size: .65rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,.3);
}
.hourly-row strong {
    font-size: .88rem; font-weight: 700; color: var(--white);
}
.hourly-row span:not(.hourly-rate):not(.hourly-rate-col) {
    font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.6;
}
.hourly-rate {
    font-size: 1.2rem; font-weight: 800;
    color: var(--blue); letter-spacing: -.5px;
    text-align: right;
}
.hourly-rate-col { text-align: right; }
/* Geo-swapped currency suffix (CAD in Canada/default, USD in the US) */
.cur {
    font-size: .58em; font-weight: 700; letter-spacing: .5px;
    color: rgba(255,255,255,.4); vertical-align: baseline;
}

/* Fixed packages */
.packages-label {
    font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,.25);
    margin-bottom: 1.5rem;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.pkg-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    background: rgba(255,255,255,.02);
    display: flex; flex-direction: column; gap: 1rem;
    transition: border-color .18s, background .18s;
}
.pkg-card:hover {
    border-color: rgba(18,107,250,.4);
    background: rgba(18,107,250,.04);
}
.pkg-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem;
}
.pkg-head h3 {
    font-size: .95rem; font-weight: 800; line-height: 1.3;
}
.pkg-price {
    font-size: 1.35rem; font-weight: 900;
    color: var(--blue); letter-spacing: -.5px;
    white-space: nowrap;
}
.pkg-desc {
    font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.72;
    border-top: 1px solid var(--border); padding-top: .85rem;
}
.pkg-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .5rem;
    flex: 1;
}
.pkg-list li {
    font-size: .8rem; color: rgba(255,255,255,.4);
    line-height: 1.55; padding-left: 1rem; position: relative;
}
.pkg-list li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--blue); font-size: .7rem; font-weight: 700;
}
.pkg-ideal {
    font-size: .75rem; color: rgba(255,255,255,.25);
    line-height: 1.5; font-style: italic;
    border-top: 1px solid var(--border); padding-top: .75rem;
    margin-top: auto;
}

/* Support note */
.rates-support-note {
    padding: 1.25rem 1.75rem;
    border: 1px solid rgba(18,107,250,.25);
    border-radius: 10px;
    background: rgba(18,107,250,.05);
    font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65;
}
.rates-support-note strong {
    color: rgba(255,255,255,.8);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .packages-grid { grid-template-columns: 1fr 1fr; }
    .hourly-row { grid-template-columns: 180px 1fr 90px; }
}
@media (max-width: 900px) {
    .svc-grid { grid-template-columns: 1fr; }
    .engage-grid { grid-template-columns: 1fr; gap: 1rem; }
    .packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .hourly-table { border-radius: 8px; }
    .hourly-row {
        grid-template-columns: 1fr;
        gap: .4rem;
        padding: 1rem 1.25rem;
    }
    .hourly-header { display: none; }
    .hourly-rate { text-align: left; font-size: 1.4rem; }
    .partners-strip { gap: 1.75rem 2.5rem; }
    .partner-logo img { height: 38px; max-width: 170px; }
}
@media (max-width: 480px) {
    .svc-hero h1 { font-size: 2rem; }
}
