/* =========================================================
   Seaacademyik - Orta Düzey Yönetici Seçme Hizmetleri
   Dosya: /assets/hizmetlerimiz/orta-duzey/css/orta-duzey.css
   ========================================================= */

:root {
    --od-primary: #0b1f3a;
    --od-primary-2: #102f57;
    --od-secondary: #f58220;
    --od-secondary-dark: #d96d12;
    --od-white: #ffffff;
    --od-black: #111827;
    --od-text: #334155;
    --od-muted: #64748b;
    --od-soft: #f6f8fb;
    --od-soft-2: #eef3f8;
    --od-border: #dbe4ee;
    --od-success: #18a558;
    --od-whatsapp: #25d366;
    --od-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --od-shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
    --od-radius: 22px;
    --od-radius-sm: 14px;
    --od-container: 1180px;
    --od-transition: 180ms ease;
}

/* RESET */
.od-main,
.od-main * {
    box-sizing: border-box;
}

.od-main {
    width: 100%;
    overflow: hidden;
    background: var(--od-white);
    color: var(--od-text);
    font-family: inherit;
}

.od-main img {
    max-width: 100%;
    height: auto;
    display: block;
}

.od-main a {
    color: inherit;
    text-decoration: none;
}

.od-container {
    width: min(100% - 32px, var(--od-container));
    margin-inline: auto;
}

.od-section {
    padding: 86px 0;
}

.od-soft {
    background: var(--od-soft);
}

.od-section-tag,
.od-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--od-secondary);
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 14px;
    margin-bottom: 14px;
}

.od-section-tag::before,
.od-eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--od-secondary);
    border-radius: 999px;
}

.od-section-head {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.od-section-head h2,
.od-split h2,
.od-form-content h2,
.od-final-cta h2 {
    margin: 0 0 16px;
    color: var(--od-primary);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.od-section-head p,
.od-split p,
.od-form-content p,
.od-final-cta p {
    margin: 0;
    color: var(--od-muted);
    font-size: 17px;
    line-height: 1.75;
}

/* BUTTONS */
.od-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--od-transition), box-shadow var(--od-transition), background var(--od-transition), color var(--od-transition), border-color var(--od-transition);
    text-align: center;
    white-space: nowrap;
}

.od-btn:hover {
    transform: translateY(-2px);
}

.od-btn:focus-visible,
.od-main a:focus-visible,
.od-main button:focus-visible,
.od-main input:focus-visible,
.od-main textarea:focus-visible,
.od-main select:focus-visible,
.od-main summary:focus-visible {
    outline: 3px solid rgba(245, 130, 32, .35);
    outline-offset: 3px;
}

.od-btn-primary {
    background: var(--od-secondary);
    color: var(--od-white);
    box-shadow: 0 12px 26px rgba(245, 130, 32, .25);
}

.od-btn-primary:hover {
    background: var(--od-secondary-dark);
}

.od-btn-whatsapp {
    background: var(--od-whatsapp);
    color: var(--od-white);
    box-shadow: 0 12px 26px rgba(37, 211, 102, .23);
}

.od-btn-light {
    background: rgba(255, 255, 255, .12);
    color: var(--od-white);
    border-color: rgba(255, 255, 255, .28);
}

.od-btn-light:hover {
    background: var(--od-white);
    color: var(--od-primary);
}

.od-full {
    width: 100%;
}

/* HERO */
.od-hero {
    position: relative;
    min-height: 680px;
    padding: 92px 0 76px;
    background:
        radial-gradient(circle at top left, rgba(245, 130, 32, .18), transparent 34%),
        linear-gradient(135deg, var(--od-primary) 0%, var(--od-primary-2) 55%, #08172b 100%);
    color: var(--od-white);
}

.od-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255,255,255,.08), transparent);
    pointer-events: none;
}

.od-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 54px;
}

.od-hero-content h1 {
    margin: 0 0 22px;
    max-width: 780px;
    color: var(--od-white);
    font-size: clamp(40px, 6vw, 70px);
    line-height: .98;
    letter-spacing: -0.055em;
}

.od-hero-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 19px;
    line-height: 1.75;
}

.od-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.od-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.od-hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.92);
    font-weight: 700;
    font-size: 13px;
}

.od-hero-image {
    position: relative;
}

.od-hero-image::before {
    content: "";
    position: absolute;
    inset: 28px -18px -18px 28px;
    border-radius: 34px;
    background: rgba(245, 130, 32, .28);
    filter: blur(1px);
}

.od-hero-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 720 / 520;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.18);
}

/* TRUST */
.od-trust {
    margin-top: -42px;
    position: relative;
    z-index: 5;
}

.od-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.od-trust-card {
    background: var(--od-white);
    border: 1px solid var(--od-border);
    border-radius: var(--od-radius);
    box-shadow: var(--od-shadow);
    padding: 24px;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.od-trust-card strong {
    display: block;
    color: var(--od-primary);
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.od-trust-card span {
    color: var(--od-muted);
    font-weight: 700;
    line-height: 1.45;
}

/* SPLIT */
.od-split {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 48px;
    align-items: start;
}

.od-split h2 {
    max-width: 720px;
}

.od-split p + p {
    margin-top: 18px;
}

.od-info-panel {
    background: linear-gradient(145deg, #ffffff, #f6f8fb);
    border: 1px solid var(--od-border);
    border-radius: var(--od-radius);
    box-shadow: var(--od-shadow-soft);
    padding: 32px;
}

.od-info-panel h3 {
    margin: 0 0 18px;
    color: var(--od-primary);
    font-size: 24px;
    line-height: 1.25;
}

.od-info-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.od-info-panel li {
    position: relative;
    padding-left: 28px;
    color: var(--od-text);
    line-height: 1.65;
    font-weight: 650;
}

.od-info-panel li + li {
    margin-top: 12px;
}

.od-info-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--od-success);
    font-weight: 900;
}

/* CARDS */
.od-card-grid {
    display: grid;
    gap: 18px;
}

.od-card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.od-card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.od-mini-card {
    min-height: 154px;
    background: var(--od-white);
    border: 1px solid var(--od-border);
    border-radius: 20px;
    padding: 20px 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .055);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    transition: transform var(--od-transition), box-shadow var(--od-transition), border-color var(--od-transition);
}

.od-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--od-shadow-soft);
    border-color: rgba(245, 130, 32, .45);
}

.od-mini-card img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--od-soft-2);
}

.od-mini-card span {
    color: var(--od-primary);
    font-weight: 850;
    font-size: 15px;
    line-height: 1.35;
}

/* SECTORS */
.od-sector-card {
    background: var(--od-white);
    border: 1px solid var(--od-border);
    border-radius: var(--od-radius);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .055);
    transition: transform var(--od-transition), box-shadow var(--od-transition), border-color var(--od-transition);
}

.od-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--od-shadow);
    border-color: rgba(245, 130, 32, .42);
}

.od-sector-card img {
    width: 100%;
    aspect-ratio: 420 / 260;
    object-fit: cover;
    background: var(--od-soft-2);
}

.od-sector-card div {
    padding: 22px;
}

.od-sector-card h3 {
    margin: 0 0 10px;
    color: var(--od-primary);
    font-size: 22px;
    line-height: 1.2;
}

.od-sector-card p {
    margin: 0;
    color: var(--od-muted);
    line-height: 1.65;
    font-size: 15px;
}

/* DARK PROCESS */
.od-dark {
    background:
        radial-gradient(circle at top right, rgba(245, 130, 32, .18), transparent 28%),
        linear-gradient(135deg, #071426 0%, var(--od-primary) 100%);
    color: var(--od-white);
}

.od-light-head h2 {
    color: var(--od-white);
}

.od-light-head p {
    color: rgba(255,255,255,.78);
}

.od-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.od-process-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    border-radius: var(--od-radius);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.od-process-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--od-secondary);
    color: var(--od-white);
    font-weight: 900;
    margin-bottom: 18px;
}

.od-process-card h3 {
    margin: 0 0 12px;
    color: var(--od-white);
    font-size: 23px;
    line-height: 1.2;
}

.od-process-card p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
}

/* REGIONS */
.od-region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.od-region-grid a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 18px;
    background: var(--od-white);
    border: 1px solid var(--od-border);
    border-radius: 16px;
    color: var(--od-primary);
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .045);
    transition: transform var(--od-transition), border-color var(--od-transition), background var(--od-transition);
}

.od-region-grid a:hover {
    transform: translateY(-3px);
    border-color: var(--od-secondary);
    background: #fff8f1;
}

/* FORM */
.od-form-section {
    background:
        linear-gradient(135deg, rgba(11,31,58,.96), rgba(16,47,87,.94)),
        url("/assets/hizmetlerimiz/orta-duzey/images/forms/yonetici-form-banner.webp") center/cover no-repeat;
    color: var(--od-white);
}

.od-form-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    align-items: start;
}

.od-form-content h2 {
    color: var(--od-white);
}

.od-form-content p {
    color: rgba(255,255,255,.82);
}

.od-contact-box {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.od-contact-box a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 15px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--od-white);
    font-weight: 800;
    transition: background var(--od-transition), transform var(--od-transition);
}

.od-contact-box a:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-2px);
}

.od-form {
    background: var(--od-white);
    color: var(--od-text);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.od-form-row {
    margin-bottom: 17px;
}

.od-form-row label {
    display: block;
    color: var(--od-primary);
    font-weight: 850;
    font-size: 14px;
    margin-bottom: 8px;
}

.od-form input,
.od-form select,
.od-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--od-border);
    border-radius: 14px;
    background: #fbfdff;
    color: var(--od-black);
    padding: 13px 15px;
    font: inherit;
    font-size: 15px;
    transition: border-color var(--od-transition), box-shadow var(--od-transition), background var(--od-transition);
}

.od-form textarea {
    resize: vertical;
    min-height: 126px;
}

.od-form input:hover,
.od-form select:hover,
.od-form textarea:hover {
    border-color: #b9c8da;
}

.od-form input:focus,
.od-form select:focus,
.od-form textarea:focus {
    border-color: var(--od-secondary);
    background: var(--od-white);
    box-shadow: 0 0 0 4px rgba(245, 130, 32, .12);
}

.od-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.od-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 2px 0 20px;
    color: var(--od-muted);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.od-check input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 2px;
    accent-color: var(--od-secondary);
}

/* FAQ */
.od-faq {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.od-faq details {
    background: var(--od-white);
    border: 1px solid var(--od-border);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.od-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 56px 20px 22px;
    color: var(--od-primary);
    font-weight: 900;
    position: relative;
    line-height: 1.4;
}

.od-faq summary::-webkit-details-marker {
    display: none;
}

.od-faq summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--od-soft-2);
    color: var(--od-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.od-faq details[open] summary::after {
    content: "−";
    background: var(--od-secondary);
    color: var(--od-white);
}

.od-faq p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--od-muted);
    line-height: 1.7;
}

/* FINAL CTA */
.od-final-cta {
    padding: 82px 0;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(245, 130, 32, .18), transparent 34%),
        linear-gradient(135deg, var(--od-primary), #071426);
    color: var(--od-white);
}

.od-final-cta h2 {
    color: var(--od-white);
    max-width: 800px;
    margin-inline: auto;
}

.od-final-cta p {
    color: rgba(255,255,255,.80);
    max-width: 720px;
    margin-inline: auto;
}

.od-center {
    justify-content: center;
}

/* FLOATING WHATSAPP */
.od-floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: auto;
    min-width: 122px;
    height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--od-whatsapp);
    color: var(--od-white) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 16px 32px rgba(37, 211, 102, .32);
    border: 2px solid rgba(255,255,255,.7);
    transition: transform var(--od-transition), box-shadow var(--od-transition);
}

.od-floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(37, 211, 102, .40);
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .od-main *,
    .od-floating-whatsapp {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .od-btn:hover,
    .od-mini-card:hover,
    .od-sector-card:hover,
    .od-region-grid a:hover,
    .od-contact-box a:hover,
    .od-floating-whatsapp:hover {
        transform: none;
    }
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .od-card-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .od-region-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .od-section {
        padding: 68px 0;
    }

    .od-hero {
        min-height: auto;
        padding: 72px 0 74px;
    }

    .od-hero-grid,
    .od-split,
    .od-form-grid {
        grid-template-columns: 1fr;
    }

    .od-hero-grid {
        gap: 38px;
    }

    .od-hero-content {
        text-align: left;
    }

    .od-hero-content p {
        font-size: 17px;
    }

    .od-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .od-card-grid-4,
    .od-card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .od-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .od-region-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .od-form {
        padding: 26px;
    }
}

@media (max-width: 768px) {
    .od-container {
        width: min(100% - 24px, var(--od-container));
    }

    .od-section {
        padding: 56px 0;
    }

    .od-hero {
        padding: 58px 0 64px;
    }

    .od-hero-content h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .od-hero-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .od-hero-actions {
        align-items: stretch;
    }

    .od-hero-actions .od-btn {
        width: 100%;
    }

    .od-hero-badges {
        gap: 8px;
    }

    .od-hero-badges span {
        font-size: 12px;
        min-height: 34px;
    }

    .od-hero-image::before {
        display: none;
    }

    .od-hero-image img {
        border-radius: 24px;
    }

    .od-trust {
        margin-top: -30px;
    }

    .od-trust-grid {
        gap: 12px;
    }

    .od-trust-card {
        padding: 18px;
        min-height: 112px;
    }

    .od-trust-card strong {
        font-size: 24px;
    }

    .od-trust-card span {
        font-size: 14px;
    }

    .od-section-head {
        text-align: left;
        margin-bottom: 28px;
    }

    .od-section-head h2,
    .od-split h2,
    .od-form-content h2,
    .od-final-cta h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .od-section-head p,
    .od-split p,
    .od-form-content p,
    .od-final-cta p {
        font-size: 16px;
        line-height: 1.65;
    }

    .od-card-grid-4,
    .od-card-grid-3,
    .od-process-grid,
    .od-region-grid,
    .od-trust-grid,
    .od-two {
        grid-template-columns: 1fr;
    }

    .od-mini-card {
        min-height: 96px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 16px;
    }

    .od-mini-card img {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
    }

    .od-info-panel {
        padding: 24px;
    }

    .od-process-card {
        min-height: auto;
        padding: 24px;
    }

    .od-form-section {
        background:
            linear-gradient(135deg, rgba(11,31,58,.98), rgba(16,47,87,.96));
    }

    .od-form {
        border-radius: 22px;
        padding: 22px;
    }

    .od-floating-whatsapp {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        min-width: 0;
        height: 50px;
    }

    .od-final-cta {
        padding-bottom: 88px;
    }
}

@media (max-width: 480px) {
    .od-container {
        width: min(100% - 20px, var(--od-container));
    }

    .od-hero {
        padding-top: 44px;
    }

    .od-btn {
        min-height: 46px;
        font-size: 14px;
        padding: 12px 16px;
    }

    .od-section-tag,
    .od-eyebrow {
        font-size: 13px;
    }

    .od-section-tag::before,
    .od-eyebrow::before {
        width: 22px;
    }

    .od-mini-card span {
        font-size: 14px;
    }

    .od-sector-card div {
        padding: 18px;
    }

    .od-sector-card h3 {
        font-size: 20px;
    }

    .od-faq summary {
        padding: 18px 50px 18px 18px;
        font-size: 15px;
    }

    .od-faq p {
        padding: 0 18px 18px;
        font-size: 15px;
    }
}

/* PRINT */
@media print {
    .od-floating-whatsapp,
    .od-hero-actions,
    .od-final-cta,
    .od-form-section {
        display: none !important;
    }

    .od-main {
        color: #000;
        background: #fff;
    }

    .od-section,
    .od-hero {
        padding: 24px 0;
        background: #fff !important;
        color: #000 !important;
    }

    .od-hero-content h1,
    .od-section-head h2,
    .od-split h2 {
        color: #000 !important;
    }
}














/* BÖLGE SAYFALARI CSS */

.od-badge {
    display: inline-flex;
    color: var(--od-secondary);
    font-weight: 800;
    margin-bottom: 14px;
}

.od-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 34px;
    align-items: start;
}

.od-main-content {
    background: #fff;
}

.od-main-content h2 {
    color: var(--od-primary);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 16px;
}

.od-main-content h3 {
    color: var(--od-primary);
    font-size: 24px;
    margin: 32px 0 14px;
}

.od-main-content p {
    color: var(--od-text);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.od-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.od-check-list li {
    border: 1px solid var(--od-border);
    border-radius: 16px;
    padding: 15px 18px;
    color: var(--od-primary);
    font-weight: 800;
    background: #fff;
}

.od-check-list li::before {
    content: "✓";
    color: var(--od-secondary);
    font-weight: 900;
    margin-right: 8px;
}

.od-process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.od-process-timeline div,
.od-result-box div {
    border: 1px solid var(--od-border);
    border-radius: 18px;
    padding: 20px;
    background: #fff;
    box-shadow: var(--od-shadow-soft);
}

.od-process-timeline strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--od-secondary);
    color: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
}

.od-process-timeline h4 {
    color: var(--od-primary);
    font-size: 18px;
    margin: 0 0 8px;
}

.od-mini-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.od-mini-link-grid a,
.od-sidebar-card a {
    display: block;
    border: 1px solid var(--od-border);
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--od-primary);
    font-weight: 800;
    background: #fff;
    margin-bottom: 10px;
}

.od-result-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.od-result-box strong {
    display: block;
    color: var(--od-primary);
    font-size: 24px;
    margin-bottom: 8px;
}

.od-result-box span {
    color: var(--od-muted);
    font-weight: 700;
}

.od-sidebar {
    display: grid;
    gap: 18px;
}

.od-sidebar-card {
    border: 1px solid var(--od-border);
    border-radius: 22px;
    padding: 24px;
    background: #fff;
    box-shadow: var(--od-shadow-soft);
}

.od-sidebar-card h3 {
    color: var(--od-primary);
    font-size: 22px;
    margin: 0 0 16px;
}

.od-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.od-sidebar-card li {
    color: var(--od-text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.od-contact-card {
    background: linear-gradient(135deg, var(--od-primary), var(--od-primary-2));
    color: #fff;
}

.od-contact-card h3,
.od-contact-card p {
    color: #fff;
}

@media (max-width: 992px) {
    .od-content-grid {
        grid-template-columns: 1fr;
    }

    .od-process-timeline,
    .od-result-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .od-check-list,
    .od-mini-link-grid,
    .od-process-timeline,
    .od-result-box {
        grid-template-columns: 1fr;
    }
}



