/* ─── PAGE HERO ─── */
.page-hero {
    padding: 160px 40px 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(91, 200, 245, 0.08);
}
.page-hero-glow {
    position: absolute;
    top: -10%;
    right: 5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(91, 200, 245, 0.1) 0%, transparent 65%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}
.page-hero-inner {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.page-h1 {
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 700;
    letter-spacing: -0.03em;
    font-family: 'Carter One', system-ui;
    line-height: 0.95;
    margin-top: 18px;
    margin-bottom: 28px;
    color: var(--white);
}
.page-h1 .blue {
    color: var(--blue);
}
.page-h1 .outline {
    -webkit-text-stroke: 2px var(--blue);
    color: transparent;
}
.page-sub {
    font-size: 17px;
    color: #7aafc8;
    max-width: 580px;
    line-height: 1.75;
    font-weight: 400;
}

/* ─── SERVICE DETAIL GRID ─── */
.svc-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.svc-detail-tile {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.svc-detail-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(91, 200, 245, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.svc-detail-tile:hover {
    border-color: rgba(91, 200, 245, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(91, 200, 245, 0.07);
}
.svc-detail-tile:hover::before {
    opacity: 1;
}
.svc-detail-tile.accent-tile {
    background: linear-gradient(145deg, rgba(91, 200, 245, 0.12), rgba(91, 200, 245, 0.04));
    border-color: rgba(91, 200, 245, 0.2);
}
.svc-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
    color: var(--blue);
    width: 52px;
    height: 52px;
    background: rgba(91, 200, 245, 0.1);
    border: 1px solid rgba(91, 200, 245, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-detail-tile h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-family: 'Merriweather Sans', sans-serif;
}
.svc-detail-tile p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 22px;
}
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.svc-tag-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(91, 200, 245, 0.07);
    border: 1px solid rgba(91, 200, 245, 0.15);
    color: var(--blue);
    letter-spacing: 0.03em;
}

/* ─── PROCESS STEPS ─── */
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 44px;
}
.process-step {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
}
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), transparent);
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0.5;
}
.step-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    opacity: 0.7;
}
.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.process-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── PARTNER PAGE ─── */
.partner-category {
    margin-bottom: 56px;
}
.partner-cat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(91, 200, 245, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}
.partner-cat-label span {
    color: var(--blue);
    font-size: 14px;
}

/* ─── PRODUCTS FULL ─── */
.prod-full-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.prod-full-tile {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.08);
    border-radius: var(--radius-lg);
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.prod-full-tile:hover {
    border-color: rgba(91, 200, 245, 0.24);
    transform: translateY(-3px);
}
.prod-full-tile:nth-child(even) .prod-full-content {
    order: 2;
}
.prod-full-tile:nth-child(even) .prod-full-visual {
    order: 1;
}
.prod-full-num {
    font-size: 100px;
    font-weight: 800;
    color: rgba(91, 200, 245, 0.04);
    line-height: 1;
    letter-spacing: -0.05em;
    font-family: 'Merriweather Sans', sans-serif;
    margin-bottom: -8px;
}
.prod-full-tile h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    font-family: 'Merriweather Sans', sans-serif;
    line-height: 1;
}
.prod-full-tile > .prod-full-content > p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 24px;
}
.prod-full-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.prod-full-features li {
    font-size: 13px;
    color: #7aafc8;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.prod-full-features li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(91, 200, 245, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-full-visual {
    background: var(--card2);
    border-radius: var(--radius);
    border: 1px solid rgba(91, 200, 245, 0.1);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}
.prod-full-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(91, 200, 245, 0.06), transparent 70%);
}
.prod-visual-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    background: rgba(8, 12, 16, 0.7);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(91, 200, 245, 0.1);
    z-index: 1;
}

/* ─── CAREERS ─── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.value-tile {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.08);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: border-color 0.2s;
}
.value-tile:hover {
    border-color: rgba(91, 200, 245, 0.2);
}
.value-icon {
    font-size: 20px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(91, 200, 245, 0.08);
    border: 1px solid rgba(91, 200, 245, 0.15);
    border-radius: 12px;
    color: var(--blue);
}
.value-tile h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.value-tile p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.job-tile {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.08);
    border-radius: var(--radius);
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: border-color 0.2s, background 0.2s;
    flex-wrap: wrap;
}
.job-tile:hover {
    border-color: rgba(91, 200, 245, 0.28);
    background: var(--card2);
}
.job-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.job-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}
.job-details {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.job-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.job-apply {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid rgba(91, 200, 245, 0.35);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    display: inline-block;
}
.job-apply:hover {
    background: var(--blue-dim);
    border-color: var(--blue);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.perk-tile {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.08);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s;
}
.perk-tile:hover {
    border-color: rgba(91, 200, 245, 0.2);
}
.perk-icon {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(91, 200, 245, 0.08);
    border: 1px solid rgba(91, 200, 245, 0.15);
    border-radius: 10px;
    color: var(--blue);
    margin-left: auto;
    margin-right: auto;
}
.perk-tile h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}
.perk-tile p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── CONTACT ─── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 44px;
    align-items: start;
}
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-info-card {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.08);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.2s;
}
.contact-info-card:hover {
    border-color: rgba(91, 200, 245, 0.24);
}
.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(91, 200, 245, 0.08);
    border: 1px solid rgba(91, 200, 245, 0.15);
    border-radius: 10px;
    color: var(--blue);
}
.contact-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 5px;
}
.contact-info-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}
.contact-info-val a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-val a:hover {
    color: var(--blue);
}
.contact-form-card {
    background: var(--card);
    border: 1px solid rgba(91, 200, 245, 0.1);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}
.form-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(91, 200, 245, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted2);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(91, 200, 245, 0.5);
    background: rgba(91, 200, 245, 0.03);
}
.form-select option {
    background: #0d1520;
    color: var(--white);
}
.form-textarea {
    resize: vertical;
    min-height: 128px;
}
.form-submit {
    width: 100%;
    background: var(--blue);
    color: var(--black);
    font-family: var(--sans);
    font-weight: 800;
    font-size: 15px;
    padding: 16px 32px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 6px;
    letter-spacing: 0.01em;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 200, 245, 0.35);
}

/* ─── ACTIVE NAV LINK ─── */
.nav-links a.active {
    color: var(--blue);
}

/* ─── TABLET: PAGE OVERRIDES ─── */
@media (max-width: 1024px) {
    .svc-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── MOBILE: PAGE OVERRIDES ─── */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 70px;
    }
    .svc-detail-grid {
        grid-template-columns: 1fr;
    }
    .process-list {
        grid-template-columns: 1fr 1fr;
    }
    .prod-full-tile {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 28px;
    }
    .prod-full-tile:nth-child(even) .prod-full-content {
        order: 1;
    }
    .prod-full-tile:nth-child(even) .prod-full-visual {
        order: 2;
    }
    .prod-full-num {
        font-size: 64px;
    }
    .prod-full-tile h3 {
        font-size: 28px;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .job-tile {
        padding: 20px 20px;
    }
}
@media (max-width: 480px) {
    .process-list {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }
}
