/* =============================================
   GENERAL PAGE TEMPLATE (page.php)
   ============================================= */
.page-main {
    padding: 180px 0 60px;
    background: var(--white);
    min-height: 60vh;
}

/* Hero with featured image */
.page-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 48px;
    height: 320px;
}
.page-hero__img {
    position: absolute; inset: 0;
}
.page-hero__img img {
    width: 100%; height: 100%; object-fit: cover;
}
.page-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9, 30, 58, 0.7) 0%, rgba(9, 30, 58, 0.2) 60%, transparent 100%);
}
.page-hero__content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px;
    z-index: 2;
}
.page-hero__title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
}

/* Header without featured image */
.page-header {
    margin-bottom: 40px;
}
.page-header__title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
}
.page-header__divider {
    width: 48px; height: 3px;
    background: var(--orange);
    border-radius: var(--pill);
}

/* Content body (Gutenberg) */
.page-body {
    max-width: 860px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-600);
}
.page-body h2 {
    font-size: 22px; font-weight: 700;
    color: var(--text); margin: 40px 0 14px;
    line-height: 1.3;
}
.page-body h3 {
    font-size: 18px; font-weight: 600;
    color: var(--text); margin: 32px 0 10px;
    line-height: 1.35;
}
.page-body p { margin-bottom: 16px; }
.page-body ul, .page-body ol { margin: 0 0 16px 24px; }
.page-body li { margin-bottom: 6px; }
.page-body a { color: var(--navy); font-weight: 500; transition: color 0.15s; }
.page-body a:hover { color: var(--orange); }
.page-body img { border-radius: var(--radius); margin: 24px 0; }
.page-body blockquote {
    border-left: 3px solid var(--navy);
    padding: 16px 24px; margin: 24px 0;
    background: var(--gray-50); border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: var(--gray-600);
}


/* =============================================
   YHTEYSTIEDOT – HERO
   Sama tyyli kuin etusivun hero, mutta matalampi.
   Transparent header, valkoinen teksti.
   ============================================= */
.ct-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 180px 0 56px;
    min-height: 380px;
    display: flex;
    align-items: center;
}
.ct-hero__bg {
    position: absolute; inset: 0;
}
.ct-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.ct-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 24, 56, 0.6) 0%,
        rgba(10, 24, 56, 0.5) 50%,
        rgba(10, 24, 56, 0.65) 100%
    );
}
.ct-hero .container {
    position: relative;
    z-index: 5;
    text-align: center;
}
.ct-hero h1 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.ct-hero__divider {
    width: 40px; height: 4px;
    background: var(--white);
    margin: 0 auto 24px;
    border-radius: var(--pill);
    opacity: 0.6;
}
.ct-hero__lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}


/* =============================================
   YHTEYSTIEDOT – YHTEYSTIETOKORTIT
   ============================================= */
.ct-cards-sec {
    padding: 48px 0 24px;
}
.ct-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ct-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: all 0.2s var(--ease);
}
.ct-card--link:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.ct-card__icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    background: var(--gray-50);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.ct-card__icon svg {
    width: 20px; height: 20px;
    color: var(--navy);
    transition: color 0.2s;
}
.ct-card--link:hover .ct-card__icon {
    background: var(--navy);
}
.ct-card--link:hover .ct-card__icon svg {
    color: var(--white);
}

.ct-card__body h3 {
    font-size: 16px; font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.ct-card__body p {
    font-size: 16px; font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
}
.ct-card__sub {
    display: block;
    font-size: 16px;
    color: var(--gray-500);
    margin-top: 3px;
}

.ct-card__arrow {
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
}
.ct-card__arrow svg {
    width: 18px; height: 18px;
    color: var(--gray-400);
    transition: all 0.2s;
}
.ct-card--link:hover .ct-card__arrow svg {
    color: var(--orange);
    transform: translateX(3px);
}


/* =============================================
   YHTEYSTIEDOT – HENKILÖSTÖ
   ============================================= */
.ct-team-sec {
    padding: 24px 0 48px;
}
.ct-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ct-person {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s var(--ease);
}
.ct-person:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.ct-person__img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gray-50);
}
.ct-person__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.ct-person:hover .ct-person__img img {
    transform: scale(1.04);
}

.ct-person__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-50);
}
.ct-person__placeholder svg {
    width: 48px; height: 48px;
    color: var(--gray-400);
}

.ct-person__body {
    padding: 16px 18px 20px;
}
.ct-person__body h3 {
    font-size: 16px; font-weight: 650;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 2px;
}
.ct-person__role {
    display: block;
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 12px;
}

.ct-person__contacts {
    display: flex; flex-direction: column; gap: 4px;
}
.ct-person__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--gray-500);
    transition: color 0.15s;
    line-height: 1.4;
}
.ct-person__link:hover {
    color: var(--orange);
}
.ct-person__link svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    color: var(--gray-400);
    transition: color 0.15s;
}
.ct-person__link:hover svg {
    color: var(--orange);
}


/* =============================================
   YHTEYSTIEDOT – CTA BANNERI
   ============================================= */
.ct-cta-sec {
    padding: 0 0 48px;
}
.ct-cta-card {
    background: var(--navy-dark);
    border-radius: var(--radius-xl);
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
}
.ct-cta-card__watermark {
    position: absolute;
    bottom: -0.12em; right: 40px;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900; font-style: italic;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none; user-select: none;
    text-transform: uppercase;
    line-height: 1;
}
.ct-cta-card__content {
    position: relative; z-index: 2;
    max-width: 520px;
}
.ct-cta-card__content h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
}
.ct-cta-card__content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 22px;
}
.ct-cta-card__btns {
    display: flex; flex-wrap: wrap; gap: 10px;
}


/* =============================================
   YHTEYSTIEDOT – KARTTA
   ============================================= */
.ct-map-sec {
    padding: 0 0 56px;
}
.ct-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    background: var(--gray-50);
}
.ct-map iframe {
    width: 100%; height: 100%;
    display: block; border: none;
}


/* =============================================
   PALVELUT – HERO
   ============================================= */
.sv-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 180px 0 56px;
    min-height: 380px;
    display: flex;
    align-items: center;
}
.sv-hero__bg {
    position: absolute; inset: 0;
}
.sv-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.sv-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 24, 56, 0.6) 0%,
        rgba(10, 24, 56, 0.5) 50%,
        rgba(10, 24, 56, 0.65) 100%
    );
}
.sv-hero .container {
    position: relative;
    z-index: 5;
    text-align: center;
}
.sv-hero h1 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.sv-hero__divider {
    width: 40px; height: 4px;
    background: var(--white);
    margin: 0 auto 24px;
    border-radius: var(--pill);
    opacity: 0.6;
}
.sv-hero__lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto;
}


/* =============================================
   PALVELUT – PALVELUKORTIT
   ============================================= */
.sv-list-sec {
    padding: 48px 0 24px;
}
.sv-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sv-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: all 0.25s var(--ease);
    position: relative;
    overflow: hidden;
}
.sv-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.03) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s; border-radius: var(--radius-lg);
    pointer-events: none;
}
.sv-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.sv-card:hover::after { opacity: 1; }

.sv-card__icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.sv-card__icon svg {
    width: 24px; height: 24px;
    color: var(--navy);
    transition: color 0.25s;
}
.sv-card:hover .sv-card__icon {
    background: var(--navy);
}
.sv-card:hover .sv-card__icon svg {
    color: var(--white);
}

.sv-card__body {
    flex: 1;
    min-width: 0;
    position: relative; z-index: 1;
}
.sv-card__body h2 {
    font-size: 18px; font-weight: 650;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 6px;
}
.sv-card__body p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.sv-card__arrow {
    flex-shrink: 0;
    align-self: center;
    position: relative; z-index: 1;
}
.sv-card__arrow svg {
    width: 20px; height: 20px;
    color: var(--gray-400);
    transition: all 0.2s;
}
.sv-card:hover .sv-card__arrow svg {
    color: var(--orange);
    transform: translateX(4px);
}


/* =============================================
   PALVELUT – CTA BANNERI
   ============================================= */
.sv-cta-sec {
    padding: 24px 0 56px;
}
.sv-cta-card {
    background: var(--navy-dark);
    border-radius: var(--radius-xl);
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
}
.sv-cta-card__watermark {
    position: absolute;
    bottom: -0.12em; right: 40px;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900; font-style: italic;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none; user-select: none;
    text-transform: uppercase;
    line-height: 1;
}
.sv-cta-card__content {
    position: relative; z-index: 2;
    max-width: 520px;
}
.sv-cta-card__content h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
}
.sv-cta-card__content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 22px;
}
.sv-cta-card__btns {
    display: flex; flex-wrap: wrap; gap: 10px;
}


/* =============================================
   PALVELUN ALASIVU – HERO
   ============================================= */
.sp-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 180px 0 56px;
    min-height: 360px;
    display: flex;
    align-items: center;
}
.sp-hero__bg {
    position: absolute; inset: 0;
}
.sp-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.sp-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,24,56,0.6) 0%, rgba(10,24,56,0.5) 50%, rgba(10,24,56,0.65) 100%);
}
.sp-hero .container {
    position: relative; z-index: 5;
    text-align: center;
}
.sp-hero__back {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    transition: color 0.15s;
}
.sp-hero__back:hover { color: var(--white); }
.sp-hero__back svg { transition: transform 0.15s; }
.sp-hero__back:hover svg { transform: translateX(-3px); }
.sp-hero h1 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700; color: var(--white);
    line-height: 1.15; margin-bottom: 20px;
}
.sp-hero__divider {
    width: 40px; height: 4px;
    background: var(--white); margin: 0 auto 24px;
    border-radius: var(--pill); opacity: 0.6;
}
.sp-hero__lead {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    max-width: 600px; margin: 0 auto;
}

/* =============================================
   PALVELUN ALASIVU – LAYOUT
   ============================================= */
.sp-main {
    padding: 48px 0 56px;
}
.sp-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* ── Sisältö ── */
.sp-content h2 {
    font-size: 22px; font-weight: 700;
    color: var(--text); margin-bottom: 18px;
}
.sp-content h3 {
    font-size: 18px; font-weight: 650;
    color: var(--text); margin-bottom: 8px;
}

.sp-features {
    margin-bottom: 36px;
}
.sp-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sp-features__item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 16px; color: var(--gray-600);
    line-height: 1.5;
}
.sp-features__item svg {
    flex-shrink: 0; margin-top: 3px;
    color: var(--navy);
}

.sp-section {
    margin-bottom: 28px;
}
.sp-section p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Sopimuspaketit */
.sp-packages {
    margin-top: 36px;
}
.sp-packages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}
.sp-package {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
}
.sp-package h4 {
    font-size: 18px; font-weight: 650;
    color: var(--text); margin-bottom: 14px;
}
.sp-package ul {
    list-style: none; margin: 0 0 18px; padding: 0;
}
.sp-package li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 16px; color: var(--gray-600);
    line-height: 1.5; margin-bottom: 6px;
}
.sp-package li svg {
    flex-shrink: 0; margin-top: 3px;
    color: var(--navy);
}

/* ── Sidebar ── */
.sp-sidebar {
    display: flex; flex-direction: column; gap: 18px;
}

.sp-sidebar__contact {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}
.sp-sidebar__icon {
    width: 48px; height: 48px;
    margin: 0 auto 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.sp-sidebar__icon svg {
    width: 24px; height: 24px; color: var(--white);
}
.sp-sidebar__contact h3 {
    font-size: 16px; font-weight: 600;
    color: var(--white); margin-bottom: 12px;
}
.sp-sidebar__phone {
    display: block; font-size: 22px; font-weight: 700;
    color: var(--white); margin-bottom: 6px;
    transition: color 0.15s;
}
.sp-sidebar__phone:hover { color: var(--orange); }
.sp-sidebar__email {
    display: block; font-size: 16px;
    color: rgba(255,255,255,0.65);
    transition: color 0.15s;
}
.sp-sidebar__email:hover { color: var(--orange); }

.sp-sidebar__nav {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
}
.sp-sidebar__nav h4 {
    font-size: 16px; font-weight: 600;
    color: var(--text); margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.sp-sidebar__nav nav {
    display: flex; flex-direction: column; gap: 2px;
}
.sp-sidebar__nav a {
    font-size: 16px; color: var(--gray-500);
    padding: 6px 0; transition: color 0.15s;
    border-bottom: 1px solid var(--gray-100);
}
.sp-sidebar__nav a:last-child { border-bottom: none; }
.sp-sidebar__nav a:hover { color: var(--orange); }

.sp-sidebar__cta {
    background: var(--navy-dark);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
}
.sp-sidebar__cta h4 {
    font-size: 18px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
}
.sp-sidebar__cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6; margin-bottom: 16px;
}
.sp-sidebar__cta .btn { width: 100%; justify-content: center; }


/* =============================================
   PYYDÄ TARJOUS – HERO
   ============================================= */
.rfq-hero {
    background: var(--navy);
    position: relative; overflow: hidden;
    padding: 180px 0 56px;
    min-height: 360px;
    display: flex; align-items: center;
}
.rfq-hero__bg { position: absolute; inset: 0; }
.rfq-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rfq-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,24,56,0.6) 0%, rgba(10,24,56,0.5) 50%, rgba(10,24,56,0.65) 100%);
}
.rfq-hero .container { position: relative; z-index: 5; text-align: center; }
.rfq-hero h1 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700; color: var(--white);
    line-height: 1.15; margin-bottom: 20px;
}
.rfq-hero__divider {
    width: 40px; height: 4px; background: var(--white);
    margin: 0 auto 24px; border-radius: var(--pill); opacity: 0.6;
}
.rfq-hero__lead {
    font-size: 16px; color: rgba(255,255,255,0.72);
    line-height: 1.65; max-width: 540px; margin: 0 auto;
}

/* =============================================
   PYYDÄ TARJOUS – LAYOUT
   ============================================= */
.rfq-main { padding: 48px 0 56px; }
.rfq-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px; align-items: start;
}

/* ── Lomake ── */
.rfq-form__row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 14px;
}
.rfq-form__field { display: flex; flex-direction: column; }
.rfq-form__field--full { margin-bottom: 14px; }

.rfq-form__field label {
    font-size: 16px; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
}
.rfq-form__field label span { color: var(--orange); }

.rfq-form__field input,
.rfq-form__field textarea {
    font-family: var(--font); font-size: 16px;
    color: var(--text); background: var(--white);
    border: 1px solid var(--gray-200); border-radius: 10px;
    padding: 11px 14px; transition: all 0.15s;
    line-height: 1.5; width: 100%;
}
.rfq-form__field input:focus,
.rfq-form__field textarea:focus {
    outline: none; border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(17,57,103,0.08);
}
.rfq-form__field input::placeholder,
.rfq-form__field textarea::placeholder { color: var(--gray-400); }
.rfq-form__field textarea { resize: vertical; min-height: 120px; }

.rfq-form__submit { margin-top: 6px; }
.rfq-form__submit .btn svg { transition: transform 0.15s; }
.rfq-form__submit .btn:hover svg { transform: translateX(3px); }

.rfq-form__status {
    margin-top: 14px; padding: 12px 16px;
    border-radius: 10px; font-size: 16px;
    font-weight: 500; line-height: 1.5;
}
.rfq-form__status--success {
    background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0;
}
.rfq-form__status--error {
    background: #fef2f2; color: #991b1b; border: 1px solid #fecaca;
}

/* ── Sidebar ── */
.rfq-sidebar {
    display: flex; flex-direction: column; gap: 18px;
}
.rfq-sidebar__contact {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 28px 24px; text-align: center;
}
.rfq-sidebar__icon {
    width: 48px; height: 48px; margin: 0 auto 14px;
    background: rgba(255,255,255,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.rfq-sidebar__icon svg { width: 24px; height: 24px; color: var(--white); }
.rfq-sidebar__contact h3 {
    font-size: 18px; font-weight: 600;
    color: var(--white); margin-bottom: 16px;
}

.rfq-sidebar__phones {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 14px;
}
.rfq-sidebar__phone-row {
    display: flex; justify-content: space-between;
    align-items: center;
}
.rfq-sidebar__label {
    font-size: 16px; color: rgba(255,255,255,0.5);
}
.rfq-sidebar__phone-row a {
    font-size: 16px; font-weight: 600;
    color: var(--white); transition: color 0.15s;
}
.rfq-sidebar__phone-row a:hover { color: var(--orange); }

.rfq-sidebar__email {
    display: block; font-size: 16px;
    color: rgba(255,255,255,0.65); transition: color 0.15s;
}
.rfq-sidebar__email:hover { color: var(--orange); }

.rfq-sidebar__trust {
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 22px 24px;
    display: flex; flex-direction: column; gap: 10px;
}
.rfq-sidebar__trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; color: var(--gray-600);
}
.rfq-sidebar__trust-item svg { flex-shrink: 0; color: var(--navy); }


/* =============================================
   YRITYS – HERO
   ============================================= */
.co-hero {
    background: var(--navy);
    position: relative; overflow: hidden;
    padding: 180px 0 56px; min-height: 380px;
    display: flex; align-items: center;
}
.co-hero__bg { position: absolute; inset: 0; }
.co-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.co-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,24,56,0.6) 0%, rgba(10,24,56,0.5) 50%, rgba(10,24,56,0.65) 100%);
}
.co-hero .container { position: relative; z-index: 5; text-align: center; }
.co-hero h1 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700; color: var(--white);
    line-height: 1.15; margin-bottom: 20px;
}
.co-hero__divider {
    width: 40px; height: 4px; background: var(--white);
    margin: 0 auto 24px; border-radius: var(--pill); opacity: 0.6;
}
.co-hero__lead {
    font-size: 16px; color: rgba(255,255,255,0.72);
    line-height: 1.65; max-width: 540px; margin: 0 auto;
}

/* =============================================
   YRITYS – ESITTELY
   ============================================= */
.co-intro-sec { padding: 48px 0 24px; }
.co-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.co-intro__text p {
    font-size: 16px; color: var(--gray-600);
    line-height: 1.75; margin-bottom: 16px;
}
.co-intro__text p:last-child { margin-bottom: 0; }
.co-intro__image {
    border-radius: var(--radius-lg); overflow: hidden;
}
.co-intro__image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* =============================================
   YRITYS – MISSIO & VISIO
   ============================================= */
.co-mv-sec { padding: 24px 0 36px; }
.co-mv-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.co-mv-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}
.co-mv-card__icon {
    width: 44px; height: 44px;
    background: var(--navy); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.co-mv-card__icon svg { width: 22px; height: 22px; color: var(--white); }
.co-mv-card h2 {
    font-size: 20px; font-weight: 700;
    color: var(--text); margin-bottom: 10px;
}
.co-mv-card p {
    font-size: 16px; color: var(--gray-600);
    line-height: 1.7;
}

/* =============================================
   YRITYS – FAKTAT
   ============================================= */
.co-facts-sec { padding: 12px 0 36px; }
.co-facts {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.co-fact {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 28px 24px; text-align: center;
}
.co-fact__number {
    display: block; font-size: 28px; font-weight: 800;
    color: var(--white); line-height: 1.2; margin-bottom: 4px;
}
.co-fact__label {
    font-size: 16px; color: rgba(255,255,255,0.6);
}

/* =============================================
   YRITYS – LINKIT
   ============================================= */
.co-links-sec { padding: 0 0 36px; }
.co-links {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.co-link-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    display: flex; flex-direction: column;
    transition: all 0.25s var(--ease);
    position: relative;
}
.co-link-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.co-link-card h3 {
    font-size: 18px; font-weight: 650;
    color: var(--text); margin-bottom: 6px;
}
.co-link-card p {
    font-size: 16px; color: var(--gray-500);
    line-height: 1.5; flex: 1;
}
.co-link-card__arrow {
    margin-top: 14px;
}
.co-link-card__arrow svg {
    width: 20px; height: 20px; color: var(--gray-400);
    transition: all 0.2s;
}
.co-link-card:hover .co-link-card__arrow svg {
    color: var(--orange); transform: translateX(4px);
}

/* =============================================
   YRITYS – CTA
   ============================================= */
.co-cta-sec { padding: 0 0 56px; }
.co-cta-card {
    background: var(--navy-dark); border-radius: var(--radius-xl);
    padding: 48px 52px; position: relative; overflow: hidden;
}
.co-cta-card__watermark {
    position: absolute; bottom: -0.12em; right: 40px;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900; font-style: italic; letter-spacing: 0.05em;
    color: rgba(255,255,255,0.03); white-space: nowrap;
    pointer-events: none; user-select: none; text-transform: uppercase; line-height: 1;
}
.co-cta-card__content { position: relative; z-index: 2; max-width: 520px; }
.co-cta-card__content h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700; color: var(--white);
    line-height: 1.25; margin-bottom: 10px;
}
.co-cta-card__content p {
    font-size: 16px; color: rgba(255,255,255,0.72);
    line-height: 1.6; margin-bottom: 22px;
}
.co-cta-card__btns { display: flex; flex-wrap: wrap; gap: 10px; }


/* =============================================
   RESPONSIVE – SIVUPOHJAT
   ============================================= */
@media (max-width: 1060px) {
    .ct-cards { grid-template-columns: repeat(2, 1fr); }
    .ct-team { grid-template-columns: repeat(3, 1fr); }
    .sp-layout { grid-template-columns: 1fr 300px; gap: 32px; }
    .sp-features__grid { grid-template-columns: 1fr; }
    .sp-packages__grid { grid-template-columns: 1fr; }
    .co-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-main { padding: 160px 0 40px; }
    .page-hero { height: 240px; margin-bottom: 32px; }
    .page-hero__content { padding: 24px; }

    .ct-hero { padding: 160px 0 44px; min-height: 300px; }
    .ct-cards { grid-template-columns: 1fr 1fr; }
    .ct-team { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ct-person__body { padding: 12px 14px 16px; }
    .ct-cta-card { padding: 36px 28px; }
    .ct-map { height: 280px; }

    .sv-hero { padding: 160px 0 44px; min-height: 300px; }
    .sv-list { grid-template-columns: 1fr; }
    .sv-card { padding: 22px 20px; }
    .sv-cta-card { padding: 36px 28px; }

    .sp-hero { padding: 160px 0 44px; min-height: 280px; }
    .sp-layout { grid-template-columns: 1fr; }

    .rfq-hero { padding: 160px 0 44px; min-height: 280px; }
    .rfq-layout { grid-template-columns: 1fr; }
    .rfq-form__row { grid-template-columns: 1fr; }

    .co-hero { padding: 160px 0 44px; min-height: 300px; }
    .co-intro { grid-template-columns: 1fr; }
    .co-mv-grid { grid-template-columns: 1fr; }
    .co-links { grid-template-columns: 1fr; }
    .co-cta-card { padding: 36px 28px; }
}

@media (max-width: 560px) {
    .page-main { padding: 140px 0 32px; }
    .page-hero { height: 200px; border-radius: var(--radius-lg); }
    .page-hero__content { padding: 20px; }

    .ct-hero { padding: 140px 0 36px; min-height: 260px; }
    .ct-cards { grid-template-columns: 1fr; }
    .ct-team { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ct-cta-card { padding: 28px 22px; }
    .ct-cta-card__btns { flex-direction: column; }
    .ct-cta-card__btns .btn { width: 100%; justify-content: center; }
    .ct-map { height: 220px; }

    .sv-hero { padding: 140px 0 36px; min-height: 260px; }
    .sv-card { gap: 14px; }
    .sv-card__icon { width: 42px; height: 42px; }
    .sv-card__icon svg { width: 20px; height: 20px; }
    .sv-cta-card { padding: 28px 22px; }
    .sv-cta-card__btns { flex-direction: column; }
    .sv-cta-card__btns .btn { width: 100%; justify-content: center; }

    .sp-hero { padding: 140px 0 36px; min-height: 240px; }
    .sp-packages__grid { grid-template-columns: 1fr; }

    .rfq-hero { padding: 140px 0 36px; min-height: 240px; }

    .co-hero { padding: 140px 0 36px; min-height: 260px; }
    .co-facts { grid-template-columns: 1fr 1fr; }
    .co-cta-card { padding: 28px 22px; }
    .co-cta-card__btns { flex-direction: column; }
    .co-cta-card__btns .btn { width: 100%; justify-content: center; }
}