/* =============================================================================
   SITEM Website — compiled from sitem_website.scss
   ============================================================================= */

/* ── Brand tokens ─────────────────────────────────────────────────────────── */
:root {
    --st-navy:        #0a1628;
    --st-navy-mid:    #0f2240;
    --st-blue:        #1565c0;
    --st-blue-light:  #1e88e5;
    --st-cyan:        #00b4d8;
    --st-cyan-glow:   rgba(0, 180, 216, 0.15);
    --st-white:       #ffffff;
    --st-off-white:   #f0f4f8;
    --st-gray:        #8a9ab5;
    --st-text:        #1a2a3a;
    --st-card-bg:     #ffffff;
    --st-radius:      12px;
    --st-radius-lg:   20px;
    --st-shadow:      0 4px 24px rgba(10, 22, 40, 0.10);
    --st-shadow-lg:   0 12px 48px rgba(10, 22, 40, 0.18);
    --st-transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Global resets ────────────────────────────────────────────────────────── */
.o_website_sitem {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--st-text);
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.o_website_sitem_nav {
    background: var(--st-navy) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.5rem 0;
}
.o_website_sitem_nav .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--st-white) !important;
}
.o_website_sitem_nav .navbar-brand span { color: var(--st-cyan); }
.o_website_sitem_nav .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem !important;
    transition: color var(--st-transition);
}
.o_website_sitem_nav .nav-link:hover { color: var(--st-cyan) !important; }
.o_website_sitem_nav .nav-link.st-nav-active { color: var(--st-cyan) !important; }
.o_website_sitem_nav .nav-link.st-nav-user {
    color: var(--st-cyan) !important;
    font-weight: 600;
}
.o_website_sitem_nav .st-nav-cta {
    background: var(--st-cyan);
    color: var(--st-navy) !important;
    border-radius: 6px;
    font-weight: 700;
    padding: 0.45rem 1.1rem !important;
}
.o_website_sitem_nav .st-nav-cta:hover {
    background: #00cef0;
    color: var(--st-navy) !important;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.st-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--st-navy);
    overflow: hidden;
}
.st-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(21, 101, 192, 0.35) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 180, 216, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.st-hero .st-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.st-hero .st-hero-content {
    position: relative;
    z-index: 2;
}
.st-hero .st-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 180, 216, 0.12);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--st-cyan);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.st-hero .st-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--st-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.st-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--st-white);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.st-hero h1 .st-gradient-text {
    background: linear-gradient(135deg, var(--st-cyan) 0%, #74c7f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.st-hero .st-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
}
.st-hero .st-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.st-hero .st-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--st-cyan);
    color: var(--st-navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--st-transition);
    border: none;
    cursor: pointer;
}
.st-hero .st-btn-primary:hover {
    background: #00cef0;
    color: var(--st-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 180, 216, 0.4);
}
.st-hero .st-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all var(--st-transition);
}
.st-hero .st-btn-ghost:hover {
    border-color: var(--st-cyan);
    color: var(--st-cyan);
}
.st-hero .st-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.st-hero .st-hero-stats .st-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--st-white);
    line-height: 1;
}
.st-hero .st-hero-stats .st-stat-label {
    font-size: 0.8rem;
    color: var(--st-gray);
    margin-top: 0.3rem;
    font-weight: 500;
}
.st-hero .st-hero-visual {
    position: relative;
    z-index: 2;
}
.st-hero .st-hero-card-float {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--st-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(12px);
}
.st-hero .st-hero-card-float .st-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.st-hero .st-hero-card-float .st-service-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: background var(--st-transition);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}
.st-hero .st-hero-card-float .st-service-item:hover { background: rgba(255,255,255,0.05); }
.st-hero .st-hero-card-float .st-service-item .st-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--st-cyan);
    flex-shrink: 0;
}

/* ── Sections common ──────────────────────────────────────────────────────── */
.st-section       { padding: 5rem 0; }
.st-section-dark  { background: var(--st-navy); color: var(--st-white); }
.st-section-mid   { background: var(--st-navy-mid); color: var(--st-white); }
.st-section-light { background: var(--st-off-white); }

.st-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--st-cyan);
    margin-bottom: 0.75rem;
}
.st-section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}
.st-section-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--st-gray);
    max-width: 580px;
}
.st-dark .st-section-sub { color: rgba(255,255,255,0.55); }

/* ── Services grid ────────────────────────────────────────────────────────── */
.st-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.st-service-card {
    background: var(--st-card-bg);
    border-radius: var(--st-radius-lg);
    padding: 2rem;
    box-shadow: var(--st-shadow);
    transition: all var(--st-transition);
    border: 1px solid rgba(10, 22, 40, 0.06);
    position: relative;
    overflow: hidden;
}
.st-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--st-blue), var(--st-cyan));
    opacity: 0;
    transition: opacity var(--st-transition);
}
.st-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--st-shadow-lg);
    border-color: rgba(0, 180, 216, 0.15);
}
.st-service-card:hover::before { opacity: 1; }
.st-service-card:hover .st-service-icon { transform: scale(1.1); }
.st-service-card .st-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(0, 180, 216, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    transition: transform var(--st-transition);
}
.st-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--st-text);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.st-service-card p {
    font-size: 0.9rem;
    color: #5a7089;
    line-height: 1.7;
    margin: 0;
}
.st-service-card .st-tag {
    display: inline-block;
    background: var(--st-off-white);
    color: var(--st-blue);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    margin-top: 1rem;
}

/* ── Values ───────────────────────────────────────────────────────────────── */
.st-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.st-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--st-radius-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all var(--st-transition);
}
.st-value-card:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.25);
    transform: translateY(-4px);
}
.st-value-card .st-value-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}
.st-value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--st-white);
    margin-bottom: 0.5rem;
}
.st-value-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}

/* ── About strip ──────────────────────────────────────────────────────────── */
.st-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.st-about .st-about-badge-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.st-about .st-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--st-off-white);
    border: 1px solid rgba(10,22,40,0.08);
    color: var(--st-text);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
}
.st-about .st-about-visual { position: relative; }
.st-about .st-about-card {
    background: var(--st-navy);
    border-radius: var(--st-radius-lg);
    padding: 2.5rem;
    color: var(--st-white);
}
.st-about .st-about-card .st-timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.st-about .st-about-card .st-timeline-item:last-child { margin-bottom: 0; }
.st-about .st-about-card .st-timeline-item .st-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--st-cyan);
    margin-top: 5px;
    flex-shrink: 0;
}
.st-about .st-about-card .st-timeline-item .st-timeline-year {
    font-size: 0.75rem;
    color: var(--st-cyan);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}
.st-about .st-about-card .st-timeline-item .st-timeline-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ── Intarcom division ────────────────────────────────────────────────────── */
.st-intarcom {
    background: linear-gradient(135deg, var(--st-navy) 0%, var(--st-navy-mid) 100%);
    border-radius: var(--st-radius-lg);
    padding: 3rem;
    color: var(--st-white);
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
}
.st-intarcom::after {
    content: 'INTARCOM';
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
}
.st-intarcom h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.st-intarcom h3 span { color: var(--st-cyan); }
.st-intarcom .st-intarcom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.st-intarcom .st-intarcom-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--st-radius);
    padding: 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background var(--st-transition);
}
.st-intarcom .st-intarcom-item:hover {
    background: rgba(0, 180, 216, 0.1);
    border-color: rgba(0, 180, 216, 0.2);
}
.st-intarcom .st-intarcom-item span { font-size: 1.2rem; }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.st-cta {
    text-align: center;
    padding: 5rem 0;
}
.st-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--st-white);
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}
.st-cta p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.st-cta .st-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Global buttons (outside hero) ───────────────────────────────────────── */
.st-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--st-cyan);
    color: var(--st-navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--st-transition);
    border: none;
    cursor: pointer;
}
.st-btn-primary:hover {
    background: #00cef0;
    color: var(--st-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 180, 216, 0.4);
}
.st-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all var(--st-transition);
}
.st-btn-ghost:hover {
    border-color: var(--st-cyan);
    color: var(--st-cyan);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.st-footer {
    background: #060e1a;
    color: rgba(255,255,255,0.55);
    padding: 3.5rem 0 2rem;
    font-size: 0.88rem;
}
.st-footer .st-footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--st-white);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.st-footer .st-footer-brand span { color: var(--st-cyan); }
.st-footer .st-footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
}
.st-footer h5 {
    color: var(--st-white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.st-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.st-footer ul li { margin-bottom: 0.5rem; }
.st-footer ul li a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color var(--st-transition);
}
.st-footer ul li a:hover { color: var(--st-cyan); }
.st-footer .st-footer-divider {
    border-color: rgba(255,255,255,0.07);
    margin: 2rem 0 1.5rem;
}
.st-footer .st-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.st-footer .st-social-links {
    display: flex;
    gap: 0.75rem;
}
.st-footer .st-social-links a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--st-transition);
}
.st-footer .st-social-links a:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: var(--st-cyan);
    color: var(--st-cyan);
}

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .st-hero { min-height: auto; padding: 4rem 0 3rem; }
    .st-hero .st-hero-stats { gap: 1.5rem; }
    .st-services-grid { grid-template-columns: 1fr; }
    .st-values-grid   { grid-template-columns: repeat(2, 1fr); }
    .st-about { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .st-values-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   Inner pages — shared styles
   ============================================================================= */

/* ── Page hero banner ─────────────────────────────────────────────────────── */
.st-page-hero {
    position: relative;
    background: var(--st-navy);
    padding: 7rem 0 4rem;
    overflow: hidden;
}
.st-page-hero .st-page-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 80% at 80% 50%, rgba(21,101,192,.28) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 10% 60%, rgba(0,180,216,.14) 0%, transparent 60%);
}
.st-page-hero .st-page-hero-content { position: relative; z-index: 2; }
.st-page-hero .st-page-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
    line-height: 1.12;
}
.st-page-hero .st-page-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
    max-width: 560px;
}

.st-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.38);
    margin-bottom: 1.25rem;
}
.st-breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--st-transition); }
.st-breadcrumb a:hover { color: var(--st-cyan); }
.st-breadcrumb span { color: rgba(255,255,255,.25); }

/* ── Section backgrounds ──────────────────────────────────────────────────── */
.section-light { background: var(--st-off-white); }
.section-off   { background: #fff; }

/* ── Services detail page ─────────────────────────────────────────────────── */
.st-service-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid rgba(10,22,40,.06);
}
.st-svc-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 3.5rem;
    align-items: start;
}
.st-svc-row.reverse { direction: rtl; }
.st-svc-row.reverse > * { direction: ltr; }
.st-svc-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: .5rem;
}
.st-svc-big-icon {
    width: 96px; height: 96px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(21,101,192,.1), rgba(0,180,216,.12));
    border: 1px solid rgba(0,180,216,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.6rem;
}
.st-tag-pill {
    display: inline-block;
    background: var(--st-off-white);
    color: var(--st-blue);
    font-size: .7rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    padding: .28rem .75rem; border-radius: 100px;
    border: 1px solid rgba(21,101,192,.15);
}
.st-tag-pill.intarcom {
    background: rgba(0,180,216,.08);
    color: var(--st-cyan);
    border-color: rgba(0,180,216,.25);
}
.st-svc-body h2 {
    font-size: 1.9rem; font-weight: 800;
    letter-spacing: -.025em; margin-bottom: .75rem;
    color: var(--st-text);
}
.st-svc-lead {
    font-size: 1.05rem; color: #4a6070; line-height: 1.75;
    margin-bottom: 1.5rem;
}
.st-svc-features {
    display: flex; flex-direction: column; gap: .6rem;
    margin-bottom: 1.5rem;
}
.st-feature-item {
    display: flex; align-items: center; gap: .8rem;
    font-size: .93rem; color: #3a5060;
}
.st-feature-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--st-cyan);
    flex-shrink: 0;
}
.st-btn-outline {
    display: inline-flex; align-items: center;
    color: var(--st-blue); font-weight: 600; font-size: .9rem;
    padding: .6rem 1.3rem; border-radius: 8px;
    border: 1.5px solid var(--st-blue);
    transition: all var(--st-transition);
    text-decoration: none;
}
.st-btn-outline:hover {
    background: var(--st-blue); color: #fff;
    transform: translateY(-1px);
}
.mt-3 { margin-top: 1rem; }

.st-inner-cta {
    background: var(--st-navy);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}
.st-inner-cta h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: .75rem; }
.st-inner-cta p  { color: rgba(255,255,255,.5); margin-bottom: 2rem; }

.btn-primary-dark {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--st-cyan); color: var(--st-navy);
    font-weight: 700; font-size: .95rem;
    padding: .85rem 1.8rem; border-radius: 8px;
    transition: all var(--st-transition);
    text-decoration: none;
}
.btn-primary-dark:hover {
    background: #00cef0;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,180,216,.4);
}

@media (max-width: 768px) {
    .st-svc-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .st-svc-row.reverse { direction: ltr; }
}

/* ── Contact page ─────────────────────────────────────────────────────────── */
.st-contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
    align-items: start;
}
.st-contact-info {
    background: var(--st-navy);
    border-radius: var(--st-radius-lg);
    padding: 2.5rem;
    color: #fff;
}
.st-contact-info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.75rem; }
.st-info-item {
    display: flex; gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.st-info-icon {
    font-size: 1.2rem;
    width: 38px; height: 38px;
    background: rgba(255,255,255,.06);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.st-info-label {
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: var(--st-cyan); margin-bottom: .3rem;
}
.st-info-value {
    font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.65;
}
.st-info-value a { color: rgba(255,255,255,.72); transition: color var(--st-transition); }
.st-info-value a:hover { color: var(--st-cyan); }
.st-contact-divider {
    border: none; border-top: 1px solid rgba(255,255,255,.08);
    margin: 1.75rem 0;
}
.st-emails-title {
    font-size: .85rem; font-weight: 700;
    color: rgba(255,255,255,.6);
    letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.st-email-list { display: flex; flex-direction: column; gap: .6rem; }
.st-email-chip {
    display: flex; align-items: center; gap: .6rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: .65rem 1rem;
    color: rgba(255,255,255,.65);
    font-size: .82rem; font-weight: 500;
    transition: all var(--st-transition);
    text-decoration: none;
}
.st-email-chip:hover {
    background: rgba(0,180,216,.1);
    border-color: rgba(0,180,216,.25);
    color: var(--st-cyan);
}
.st-contact-form-wrap h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: .4rem; color: var(--st-text); }
.st-form-sub { color: var(--st-gray); margin-bottom: 1.75rem; font-size: .95rem; }

@media (max-width: 900px) { .st-contact-grid { grid-template-columns: 1fr; } }

/* ── Shared form styles ───────────────────────────────────────────────────── */
.st-form .st-form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-bottom: 1rem;
}
.st-form .st-form-group {
    display: flex; flex-direction: column; gap: .4rem;
    margin-bottom: 1rem;
}
.st-form .st-form-group label {
    font-size: .82rem; font-weight: 600;
    color: var(--st-text); letter-spacing: .01em;
}
.st-form .st-form-group input,
.st-form .st-form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid rgba(10,22,40,.12);
    border-radius: 8px;
    font-size: .93rem;
    font-family: inherit;
    background: #fff;
    color: var(--st-text);
    transition: border-color var(--st-transition), box-shadow var(--st-transition);
}
.st-form .st-form-group input::placeholder,
.st-form .st-form-group textarea::placeholder { color: #9aacbb; }
.st-form .st-form-group input:focus,
.st-form .st-form-group textarea:focus {
    outline: none;
    border-color: var(--st-blue-light);
    box-shadow: 0 0 0 3px rgba(30,136,229,.12);
}
.st-form .st-form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 600px) { .st-form .st-form-row { grid-template-columns: 1fr; } }

.st-submit-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--st-navy); color: #fff;
    font-weight: 700; font-size: .95rem;
    padding: .85rem 2rem; border-radius: 8px;
    border: none; cursor: pointer;
    transition: all var(--st-transition);
}
.st-submit-btn:hover:not(:disabled) {
    background: var(--st-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,22,40,.2);
}
.st-submit-btn:disabled,
.st-submit-btn.is-loading {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.st-cancel-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.st-alert-success {
    display: flex; align-items: flex-start; gap: 1rem;
    background: rgba(0,180,100,.08);
    border: 1px solid rgba(0,180,100,.25);
    border-radius: var(--st-radius);
    padding: 1.1rem 1.4rem;
    margin-bottom: 2rem;
    color: #1a6640;
}
.st-alert-success > span { font-size: 1.2rem; flex-shrink: 0; }
.st-alert-success strong { display: block; margin-bottom: .2rem; font-weight: 700; }
.st-alert-success a { color: inherit; font-weight: 600; text-decoration: underline; }

/* ── Ethics page ──────────────────────────────────────────────────────────── */
.st-ethics-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}
.st-ethics-card {
    background: #fff;
    border-radius: var(--st-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(10,22,40,.06);
    box-shadow: var(--st-shadow);
}
.st-ethics-card .st-ethics-card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.st-ethics-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--st-text); }
.st-ethics-card p  { font-size: .93rem; color: #4a6070; line-height: 1.75; margin: 0; }
.st-ethics-section-title {
    font-size: 1.3rem; font-weight: 800;
    letter-spacing: -.02em; color: var(--st-text);
    margin: 2rem 0 1.25rem;
}
.st-values-list { display: flex; flex-direction: column; gap: 1px; margin-bottom: 2rem; }
.st-value-row {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding: 1.4rem 1.75rem;
    background: #fff; border: 1px solid rgba(10,22,40,.06);
    transition: all var(--st-transition);
}
.st-value-row:first-child { border-radius: var(--st-radius-lg) var(--st-radius-lg) 0 0; }
.st-value-row:last-child  { border-radius: 0 0 var(--st-radius-lg) var(--st-radius-lg); }
.st-value-row:hover {
    background: rgba(0,180,216,.03);
    border-color: rgba(0,180,216,.15);
    transform: translateX(4px);
}
.st-value-row .st-value-num {
    font-size: 1.5rem; font-weight: 800;
    color: rgba(0,180,216,.3);
    letter-spacing: -.04em;
    flex-shrink: 0; min-width: 36px;
    line-height: 1.2;
}
.st-value-row h4 { font-size: 1rem; font-weight: 700; color: var(--st-text); margin-bottom: .35rem; }
.st-value-row p  { font-size: .88rem; color: #5a7080; line-height: 1.68; margin: 0; }
.st-pdf-card {
    display: flex; align-items: center; gap: 1.25rem;
    background: var(--st-navy);
    border-radius: var(--st-radius-lg);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.st-pdf-card .st-pdf-icon { font-size: 2rem; flex-shrink: 0; }
.st-pdf-card .st-pdf-title { color: #fff; font-weight: 700; font-size: .95rem; }
.st-pdf-card .st-pdf-sub   { color: rgba(255,255,255,.4); font-size: .8rem; margin-top: .2rem; }
.st-pdf-card .st-pdf-btn {
    margin-left: auto;
    display: inline-flex; align-items: center;
    background: var(--st-cyan); color: var(--st-navy);
    font-weight: 700; font-size: .88rem;
    padding: .65rem 1.4rem; border-radius: 8px;
    transition: all var(--st-transition);
    white-space: nowrap;
    text-decoration: none;
}
.st-pdf-card .st-pdf-btn:hover { background: #00cef0; }
.st-sidebar-card {
    background: #fff;
    border-radius: var(--st-radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(10,22,40,.06);
    box-shadow: var(--st-shadow);
    margin-bottom: 1.25rem;
}
.st-sidebar-card .st-sidebar-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.st-sidebar-card h4 { font-size: 1rem; font-weight: 700; color: var(--st-text); margin-bottom: .6rem; }
.st-sidebar-card p  { font-size: .88rem; color: #5a7080; line-height: 1.65; margin-bottom: 1rem; }
.st-sidebar-contact { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.st-sidebar-row {
    display: flex; align-items: center; gap: .6rem;
    font-size: .88rem;
}
.st-sidebar-row a { color: var(--st-blue); font-weight: 500; transition: color var(--st-transition); }
.st-sidebar-row a:hover { color: var(--st-cyan); }
.st-sidebar-contact-person {
    font-size: .82rem; color: #5a7080;
    padding-top: .75rem;
    border-top: 1px solid rgba(10,22,40,.06);
}
.st-sidebar-contact-person strong { color: var(--st-text); }
.st-sidebar-contact-person span   { color: var(--st-gray); }
.st-ethics-nav { list-style: none; padding: 0; margin: 0; }
.st-ethics-nav li { margin-bottom: .4rem; }
.st-ethics-nav a {
    font-size: .88rem; color: #5a7080; font-weight: 500;
    padding: .3rem 0 .3rem .75rem; display: block;
    transition: color var(--st-transition);
    border-left: 2px solid transparent;
    text-decoration: none;
}
.st-ethics-nav a:hover {
    color: var(--st-blue);
    border-left-color: var(--st-cyan);
}
@media (max-width: 900px) { .st-ethics-layout { grid-template-columns: 1fr; } }

/* ── Empleos page ─────────────────────────────────────────────────────────── */
.st-jobs-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
}
.st-jobs-header h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; color: var(--st-text); }
.st-jobs-count {
    background: rgba(0,180,216,.1);
    color: var(--st-cyan);
    border: 1px solid rgba(0,180,216,.25);
    font-size: .78rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    padding: .3rem .8rem; border-radius: 100px;
}
.st-jobs-grid { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.st-job-card {
    background: #fff;
    border-radius: var(--st-radius-lg);
    padding: 1.75rem 2rem;
    border: 1px solid rgba(10,22,40,.07);
    box-shadow: var(--st-shadow);
    transition: all var(--st-transition);
}
.st-job-card:hover {
    border-color: rgba(0,180,216,.2);
    box-shadow: var(--st-shadow-lg);
    transform: translateY(-2px);
}
.st-job-card-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 1rem;
    margin-bottom: 1rem;
}
.st-job-title { font-size: 1.05rem; font-weight: 700; color: var(--st-text); letter-spacing: -.01em; }
.st-job-dept  { font-size: .8rem; color: var(--st-gray); font-weight: 500; margin-top: .2rem; }
.st-job-vacancies {
    text-align: center; flex-shrink: 0;
    background: rgba(21,101,192,.06);
    border-radius: 10px; padding: .5rem .9rem;
}
.st-vacancy-num {
    display: block; font-size: 1.4rem; font-weight: 800;
    color: var(--st-blue); line-height: 1;
}
.st-vacancy-label {
    display: block; font-size: .7rem; font-weight: 600;
    color: var(--st-gray); text-transform: uppercase;
    letter-spacing: .05em; margin-top: .2rem;
}
.st-job-desc { font-size: .9rem; color: #5a7080; line-height: 1.7; margin-bottom: 1.25rem; }
.st-apply-btn {
    display: inline-flex; align-items: center;
    background: var(--st-navy); color: #fff;
    font-weight: 700; font-size: .88rem;
    padding: .6rem 1.4rem; border-radius: 8px;
    border: none; cursor: pointer;
    transition: all var(--st-transition);
}
.st-apply-btn:hover { background: var(--st-blue); transform: translateY(-1px); }
.st-general-apply {
    background: var(--st-navy);
    border-radius: var(--st-radius-lg);
    padding: 2.5rem;
    display: flex; align-items: center; gap: 3rem;
    flex-wrap: wrap;
}
.st-ga-left { flex: 1; min-width: 260px; }
.st-ga-left h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: .6rem; }
.st-ga-left p  { color: rgba(255,255,255,.55); font-size: .93rem; line-height: 1.7; margin-bottom: 1rem; }
.st-ga-chips { display: flex; gap: .6rem; flex-wrap: wrap; }
.chip {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 500;
    padding: .35rem .85rem; border-radius: 100px;
}
.st-ga-right { text-align: center; }
.st-apply-general-btn {
    display: inline-flex; align-items: center;
    background: var(--st-cyan); color: var(--st-navy);
    font-weight: 700; font-size: .95rem;
    padding: .85rem 1.8rem; border-radius: 8px;
    border: none; cursor: pointer;
    transition: all var(--st-transition);
}
.st-apply-general-btn:hover { background: #00cef0; transform: translateY(-2px); }
.st-ga-email {
    font-size: .8rem; color: rgba(255,255,255,.35);
    margin-top: .75rem;
}
.st-ga-email a { color: rgba(255,255,255,.5); transition: color var(--st-transition); }
.st-ga-email a:hover { color: var(--st-cyan); }

/* ── Apply modal ──────────────────────────────────────────────────────────── */
.st-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.65);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.st-modal {
    background: #fff;
    border-radius: var(--st-radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.st-modal-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 1rem;
    margin-bottom: 2rem;
}
.st-modal-title  { font-size: 1.2rem; font-weight: 800; color: var(--st-text); }
.st-modal-sub    { font-size: .82rem; color: var(--st-gray); margin-top: .2rem; }
.st-modal-close {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--st-off-white); border: none;
    font-size: 1rem; cursor: pointer; flex-shrink: 0;
    color: var(--st-gray); transition: all var(--st-transition);
}
.st-modal-close:hover { background: #e0e8f0; color: var(--st-text); }
.st-form-hint {
    font-size: .82rem; color: var(--st-gray);
    background: var(--st-off-white);
    border-radius: 8px; padding: .75rem 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.st-form-hint a { color: var(--st-blue); font-weight: 600; }
.st-modal-actions {
    display: flex; gap: .75rem; justify-content: flex-end;
}
.st-cancel-btn {
    padding: .75rem 1.4rem; border-radius: 8px;
    background: var(--st-off-white); border: none;
    font-weight: 600; color: var(--st-gray);
    cursor: pointer; font-size: .9rem;
    transition: all var(--st-transition);
}
.st-cancel-btn:hover { background: #e0e8f0; color: var(--st-text); }

/* ── File upload input ────────────────────────────────────────────────────── */
.st-file-wrap {
    position: relative;
    min-height: 3rem;
}
/* Override .st-form .st-form-group input (higher specificity) so the hidden
   file input does not stretch to 100% width and cover the visible label. */
.st-form .st-form-group .st-file-wrap input[type="file"] {
    position: absolute;
    inset: 0 auto auto 0;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: none;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    box-shadow: none;
}
.st-form .st-form-group label.st-file-label {
    display: flex; align-items: center; gap: .6rem;
    padding: .75rem 1rem;
    border: 2px dashed #c0cfe0;
    border-radius: 8px;
    background: var(--st-off-white);
    color: var(--st-gray);
    font-size: .9rem;
    cursor: pointer;
    transition: border-color var(--st-transition), background var(--st-transition);
    user-select: none;
}
.st-form .st-form-group label.st-file-label:hover,
.st-form .st-form-group .st-file-wrap input[type="file"]:focus + label.st-file-label {
    border-color: var(--st-blue-light);
    background: #eaf2ff;
    color: var(--st-blue);
}
.st-form .st-form-group label.st-file-label.has-file {
    border-color: var(--st-cyan);
    background: rgba(0,180,216,.07);
    color: var(--st-text);
}
.st-file-icon { font-size: 1.1rem; flex-shrink: 0; }
