/* Dijital Varlık Yönetimi — Dodo Bilişim */
.dvy-page {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    background: #f8fafc;
}

/* Hero */
.dvy-hero {
    position: relative;
    padding: 72px 0 80px;
    color: #fff;
    overflow: hidden;
}

.dvy-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f4c81 0%, #1a6b9a 40%, #0ea5a0 100%);
    z-index: 0;
}

.dvy-hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.dvy-hero .container {
    position: relative;
    z-index: 1;
}

.dvy-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.dvy-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 12px;
}

.dvy-hero__subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    opacity: 0.95;
    margin: 0 0 20px;
}

.dvy-hero__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.9;
    max-width: 580px;
    margin-bottom: 28px;
}

.dvy-hero__pills {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.dvy-hero__pills li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.dvy-hero__pills i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.dvy-hero__visual {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dvy-hero__center {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.dvy-hero__orb {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: dvy-float 6s ease-in-out infinite;
}

.dvy-hero__orb--1 { top: 20%; left: 10%; animation-delay: 0s; }
.dvy-hero__orb--2 { top: 15%; right: 15%; animation-delay: 1.5s; }
.dvy-hero__orb--3 { bottom: 20%; right: 5%; animation-delay: 3s; }

@keyframes dvy-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Buttons */
.dvy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dvy-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.dvy-btn--light {
    background: #fff;
    color: #0f4c81;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.dvy-btn--light:hover {
    color: #0f4c81;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.dvy-btn--primary {
    background: linear-gradient(135deg, #0f4c81, #0ea5a0);
    color: #fff;
    box-shadow: 0 8px 24px rgba(15,76,129,0.35);
}

.dvy-btn--primary:hover {
    color: #fff;
}

.dvy-btn--block {
    width: 100%;
}

/* Callback form */
.dvy-callback {
    padding: 0 0 80px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.dvy-callback__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(15,76,129,0.12);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.dvy-callback__info {
    background: linear-gradient(160deg, #0f4c81 0%, #134e6f 100%);
    color: #fff;
    padding: 48px 40px;
}

.dvy-callback__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 16px;
}

.dvy-callback__text {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 28px;
}

.dvy-callback__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dvy-callback__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.dvy-callback__features li:first-child {
    border-top: none;
}

.dvy-callback__features i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dvy-callback__form-wrap {
    padding: 40px;
}

.dvy-form__group {
    margin-bottom: 18px;
}

.dvy-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.dvy-form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}

.dvy-form__input:focus {
    outline: none;
    border-color: #0ea5a0;
    box-shadow: 0 0 0 3px rgba(14,165,160,0.15);
    background: #fff;
}

.dvy-form__textarea {
    resize: vertical;
    min-height: 88px;
}

.dvy-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    margin-bottom: 16px;
}

.dvy-form__check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.dvy-form__check a {
    color: #0f4c81;
    font-weight: 600;
}

.dvy-form__alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px;
}

.dvy-form__alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.dvy-form__alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

#dvy-recaptcha-container {
    margin-bottom: 16px;
}

/* Services */
.dvy-services {
    padding: 80px 0;
}

.dvy-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.dvy-section-head__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
}

.dvy-section-head__sub {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.dvy-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s, box-shadow 0.25s;
}

.dvy-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,76,129,0.1);
}

.dvy-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}

.dvy-service-card__icon--blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.dvy-service-card__icon--teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.dvy-service-card__icon--purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.dvy-service-card__icon--green { background: linear-gradient(135deg, #059669, #10b981); }
.dvy-service-card__icon--amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.dvy-service-card__icon--rose { background: linear-gradient(135deg, #e11d48, #f43f5e); }

.dvy-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: #0f172a;
}

.dvy-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.dvy-service-card li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

.dvy-service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0ea5a0;
    font-weight: bold;
}

.dvy-service-card__link {
    font-size: 14px;
    font-weight: 700;
    color: #0f4c81;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dvy-service-card__link:hover {
    color: #0ea5a0;
    text-decoration: none;
}

/* İç sayfa bölüm başlıkları — global `header { background:#fff }` kuralından koruma */
.dvy-page section header {
    height: auto !important;
    min-height: 0 !important;
    width: 100%;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    position: relative;
}

/* Journey */
.dvy-journey {
    padding: 80px 0;
    background: linear-gradient(180deg, #e8f4f8 0%, #f0f7fa 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.dvy-journey::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f4c81, #0ea5a0);
}

.dvy-journey__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.dvy-journey__kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.1);
    color: #0f4c81;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.dvy-journey__title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px;
    line-height: 1.2;
}

.dvy-journey__sub {
    font-size: 17px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

.dvy-journey__grid {
    position: relative;
    z-index: 1;
}

.dvy-step {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(15, 76, 129, 0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.dvy-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 76, 129, 0.12);
    border-color: #93c5fd;
}

.dvy-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dvy-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f4c81, #0ea5a0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.dvy-step__num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #0ea5a0;
}

.dvy-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.35;
}

.dvy-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* CTA */
.dvy-cta {
    padding: 60px 0 80px;
}

.dvy-cta__inner {
    text-align: center;
    background: linear-gradient(135deg, #0f4c81 0%, #0ea5a0 100%);
    border-radius: 20px;
    padding: 56px 32px;
    color: #fff;
}

.dvy-cta__inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 12px;
}

.dvy-cta__inner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 991px) {
    .dvy-callback__info {
        padding: 32px 28px;
    }

    .dvy-callback__form-wrap {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .dvy-hero {
        padding: 48px 0 64px;
    }

    .dvy-callback {
        margin-top: -24px;
    }

    .dvy-services,
    .dvy-journey {
        padding: 56px 0;
    }
}
