/*==================================================================
  TECHNO-HOME.CSS — replică vizuală a demo-ului „Techno – IT Solution 01"
  (https://wp.ditsolution.net/techno/) pentru pagina index.html Logicon.
  Fișier de sine stătător: index.html NU mai încarcă style.css / custom.css,
  deci nimic din acest fișier nu afectează celelalte pagini.
==================================================================*/

/*----------------------------------------
  1. TOKENS + RESET
----------------------------------------*/
:root {
    --dt-primary: #0C5ADB;
    --dt-primary-hover: #1266F1;
    --dt-heading: #232323;
    --dt-body: #686868;
    --dt-bar: #aec6ef;
    --dt-container: 1320px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Mulish", -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--dt-body);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--dt-heading);
    font-weight: 700;
    line-height: 1.3;
}

p { margin: 0 0 15px; }
p:last-child { margin-bottom: 0; }

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.dt-container {
    max-width: var(--dt-container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.dt-container-wide {
    max-width: 100%;
    padding: 0;
}

.dt-grid { display: grid; gap: 20px; }
.dt-g4 { grid-template-columns: repeat(4, 1fr); }
.dt-g3 { grid-template-columns: repeat(3, 1fr); }
.dt-g2 { grid-template-columns: repeat(2, 1fr); }
.dt-g5 { grid-template-columns: repeat(5, 1fr); }

.dt-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

/*----------------------------------------
  2. BUTOANE
----------------------------------------*/
.dtbtn {
    display: inline-block;
    background: var(--dt-primary);
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    padding: 12px 28px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dtbtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dt-primary-hover);
    transform: scale(0);
    transform-origin: center;
    transition: transform .5s ease;
    border-radius: 4px;
    z-index: -1;
}

.dtbtn:hover { color: #fff; }
.dtbtn:hover::before { transform: scale(1); }

.dt-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(0deg, #2B25FF 0%, #096DFF 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 31px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dt-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dt-heading);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .45s ease;
    z-index: -1;
}

.dt-button:hover { color: #fff; }
.dt-button:hover::before { transform: scaleX(1); }
.dt-button i { font-size: 13px; line-height: 1; }

.dt-button.dt-button-white {
    background: #fff;
    color: var(--dt-heading);
}
.dt-button.dt-button-white:hover { color: #fff; }
.dt-button.dt-button-white::before { background: var(--dt-heading); }

/*----------------------------------------
  3. TITLU DE SECȚIUNE (eyebrow + titlu + bară animată)
----------------------------------------*/
.dt-sec-title .subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 5px;
    color: var(--dt-primary);
    margin: 0 0 15px;
}

.dt-sec-title .title,
.dt-sec-title .title-two {
    font-size: 39px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dt-heading);
    margin: 0;
}

.dt-sec-title .title-two span { color: var(--dt-primary); }

.dt-sec-title .bar-main { display: inline-block; margin: 18px 0; }

.dt-bar {
    width: 90px;
    height: 5px;
    border-radius: 30px;
    background: var(--dt-bar);
    position: relative;
}

.dt-bar::after {
    content: "";
    position: absolute;
    top: -2.5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dt-primary);
    animation: dtBarMove 3s infinite linear;
}

@keyframes dtBarMove {
    0%   { left: 0; }
    50%  { left: 80px; }
    100% { left: 0; }
}

.dt-sec-title .description {
    font-size: 18px;
    line-height: 27px;
    color: var(--dt-body);
    margin: 10px 0 0;
}

.dt-sec-title.center { text-align: center; }
.dt-sec-title.center .bar-main { margin-left: auto; margin-right: auto; }

.dt-sec-title.white .title,
.dt-sec-title.white .title-two { color: #fff; }
.dt-sec-title.white .subtitle { color: #fff; }
.dt-sec-title.white .title-two span { color: #b9d0f5; }
.dt-sec-title.white .description { color: rgba(255, 255, 255, .85); }
.dt-sec-title.white .dt-bar { background: rgba(255, 255, 255, .45); }
.dt-sec-title.white .dt-bar::after { background: #fff; }

/* rând titlu-stânga + buton-dreapta */
.dt-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/*----------------------------------------
  4. TOPBAR
----------------------------------------*/
.dt-topbar {
    background: var(--dt-primary);
    padding: 9px 0;
    color: #fff;
    position: relative;
    z-index: 60;
}

.dt-topbar .dt-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dt-topbar p {
    margin: 0;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.dt-topbar p i {
    margin-right: 9px;
    font-size: 13px;
}

.dt-topbar-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.dt-topbar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: #1773EA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.dt-topbar-social a:hover { background: var(--dt-heading); color: #fff; }

/*----------------------------------------
  5. HEADER / NAV
----------------------------------------*/
.dt-header {
    background: #fff;
    position: relative;
    z-index: 55;
}

.dt-header .dt-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 20px;
}

.dt-logo img { height: 34px; width: auto; display: block; }

.dt-menu > ul { display: flex; align-items: center; }
.dt-menu > ul > li { position: relative; }

.dt-menu > ul > li > a {
    display: block;
    padding: 0 10px 0 28px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100px;
    color: #222;
}

.dt-menu > ul > li > a i {
    font-size: 12px;
    margin-left: 6px;
    transition: transform .3s;
}

.dt-menu > ul > li:hover > a { color: var(--dt-primary); }
.dt-menu > ul > li:hover > a i { transform: rotate(180deg); }

.dt-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 22px;
    width: 274px;
    background: #fff;
    border-top: 2px solid var(--dt-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    z-index: 30;
}

.dt-menu > ul > li:hover > .sub-menu,
.dt-menu > ul > li.dt-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dt-menu .sub-menu li + li { border-top: 1px solid #f1f2f6; }

.dt-menu .sub-menu a {
    display: block;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dt-heading);
}

.dt-menu .sub-menu a:hover { background: var(--dt-primary); color: #fff; }

.dt-header-btns { display: flex; align-items: center; gap: 14px; }

.dt-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 6px;
    background: var(--dt-primary);
    color: #fff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

/* sticky */
.dt-header.dt-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, .1);
    animation: dtSlideDown .5s ease forwards;
}

@keyframes dtSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

/*----------------------------------------
  6. MENIU MOBIL
----------------------------------------*/
.dt-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
}

.dt-mobile-menu.dt-active { visibility: visible; opacity: 1; }

.dt-mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.dt-mobile-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #fff;
    padding: 24px 22px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .4s ease;
}

.dt-mobile-menu.dt-active .dt-mobile-panel { transform: translateX(0); }

.dt-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.dt-mobile-head img { height: 30px; width: auto; }

.dt-mobile-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 6px;
    background: #f1f4fb;
    color: var(--dt-heading);
    font-size: 16px;
}

.dt-mobile-panel nav li { border-bottom: 1px solid #eef0f6; }

.dt-mobile-panel nav > ul > li > a,
.dt-mobile-panel nav .sub-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dt-heading);
}

.dt-mobile-panel nav .sub-menu {
    display: none;
    padding-left: 14px;
    border-top: 1px solid #eef0f6;
}

.dt-mobile-panel nav li.dt-open > .sub-menu { display: block; }

.dt-mobile-panel nav .sub-menu a { font-size: 15px; font-weight: 500; }
.dt-mobile-panel nav .sub-menu li:last-child { border-bottom: 0; }

.dt-mobile-arrow {
    position: absolute;
    right: 0;
    top: 6px;
    width: 32px;
    height: 32px;
    border: 1px solid #e6e9f2;
    border-radius: 5px;
    background: #fff;
    color: var(--dt-heading);
    font-size: 13px;
    line-height: 1;
}

.dt-mobile-panel nav > ul > li { position: relative; }
.dt-mobile-panel nav > ul > li.dt-open > .dt-mobile-arrow { background: var(--dt-primary); color: #fff; border-color: var(--dt-primary); }

.dt-mobile-cta { margin-top: 28px; display: block; text-align: center; }

/*----------------------------------------
  7. HERO
----------------------------------------*/
.dt-hero {
    position: relative;
    height: 900px;
    overflow: hidden;
    background: #10203c;
}

.dt-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
}

.dt-slide.dt-active { opacity: 1; visibility: visible; }

.dt-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 14, 35, .88) 0%, rgba(6, 14, 35, .62) 48%, rgba(6, 14, 35, .28) 100%);
}

.dt-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 34px;
}

.dt-hero-inner .dt-container { max-width: 1280px; }

.dt-hero .eyebrow {
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}

.dt-hero h1 {
    font-size: 60px;
    line-height: 65px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 48px;
    max-width: 940px;
}

.dt-hero-btns { display: flex; align-items: center; gap: 41px; flex-wrap: wrap; }

.dt-hero-btn1 {
    display: inline-block;
    background: var(--dt-primary);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 52px;
    padding: 0 40px;
    border-radius: 3px;
}

.dt-hero-btn1:hover { background: var(--dt-primary-hover); color: #fff; }

.dt-hero-btn2 {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 50px;
    padding: 0 25px;
}

.dt-hero-btn2:hover { background: #fff; color: var(--dt-heading); }

.dt-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 92px;
    height: 100px;
    border: 0;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    transition: background .3s;
}

.dt-hero-nav:hover { background: rgba(255, 255, 255, .32); }
.dt-hero-nav.dt-prev { left: 28px; }
.dt-hero-nav.dt-next { right: 28px; }

/* buton circular (înlocuiește butonul de video din demo cu un indicator de scroll) */
.dt-hero-circle {
    position: absolute;
    top: 50%;
    right: 152px;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fff;
    color: var(--dt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 6;
}

.dt-hero-circle::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    animation: dtPulse 2.4s infinite ease-out;
}

@keyframes dtPulse {
    0%   { transform: scale(.85); opacity: 1; }
    100% { transform: scale(1.25); opacity: 0; }
}

.dt-hero-curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 155px;
    z-index: 4;
    display: block;
}

/*----------------------------------------
  8. CARDURI FLIP (4 casete sub header)
----------------------------------------*/
.dt-features { padding: 0 0 35px; position: relative; z-index: 8; }
.dt-features .dt-grid { margin-top: -101px; }

.dt-flip { perspective: 1200px; height: 250px; }

.dt-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .8s cubic-bezier(.4, .2, .2, 1);
    transform-style: preserve-3d;
}

.dt-flip:hover .dt-flip-inner { transform: rotateY(180deg); }

.dt-flip-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dt-flip-front {
    background: #fff;
    padding: 50px 34px;
    box-shadow: 0 5px 30px rgba(16, 32, 60, .08);
    border: 1px solid transparent;
}

.dt-flip-front .dt-flip-icon { margin-bottom: 18px; }
.dt-flip-front .dt-flip-icon img { width: 45px; height: 45px; object-fit: contain; }

/* iconițe SVG proprii recolorate prin mask (identic ca aspect cu iconițele font din demo) */
.dt-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: var(--dt-primary);
    -webkit-mask: var(--icon) center center / contain no-repeat;
    mask: var(--icon) center center / contain no-repeat;
}

.dt-icon-sm { width: 38px; height: 38px; }
.dt-icon-white { background-color: #fff; }

.dt-flip-front .dt-flip-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--dt-heading);
    margin: 0;
}

.dt-flip-back {
    background: var(--dt-primary);
    padding: 26px 27px;
    transform: rotateY(180deg);
    color: #fff;
}

.dt-flip-back .dt-flip-icon { margin-bottom: 10px; }
.dt-flip-back .dt-flip-icon img {
    width: 40px; height: 40px; object-fit: contain;
    filter: brightness(0) invert(1);
}

.dt-flip-back .dt-flip-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.dt-flip-back p { font-size: 15px; line-height: 23px; color: #fff; margin: 0; }

/*----------------------------------------
  9. ABOUT
----------------------------------------*/
.dt-about {
    padding: 36px 0 80px;
    position: relative;
    overflow: hidden;
}

.dt-about .dt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.dt-about-visual {
    position: relative;
    min-height: 600px;
}

.dt-about-collage {
    position: absolute;
    left: 24px;
    top: 0;
    width: 600px;
    max-width: 100%;
    height: 600px;
    z-index: 2;
}

.dt-about-collage .dt-img1,
.dt-about-collage .dt-img2 {
    position: absolute;
    overflow: hidden;
    background: #dbe6f8;
}

.dt-about-collage .dt-img1 {
    left: 0; top: 0;
    width: 300px; height: 335px;
}

.dt-about-collage .dt-img2 {
    left: 173px; top: 240px;
    width: 320px; height: 280px;
    border: 8px solid #fff;
}

.dt-about-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dt-about-circle {
    position: absolute;
    left: 10px;
    top: 254px;
    width: 416px;
    height: 416px;
    z-index: 1;
}

.dt-about-content .dt-sec-title { margin-bottom: 6px; }

.dt-icon-box {
    display: flex;
    gap: 23px;
    margin-top: 26px;
}

.dt-icon-box .dt-icon-box-icon img { width: 38px; height: 38px; object-fit: contain; }

.dt-icon-box h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--dt-heading);
    margin: 0 0 8px;
}

.dt-icon-box p { font-size: 16px; line-height: 24px; margin: 0; }

.dt-about-content .dt-button { margin-top: 34px; }

/*----------------------------------------
  10. SERVICII (secțiune neagră)
----------------------------------------*/
.dt-services {
    padding: 75px 0 80px;
    background: #050B1A url("../img/photos/services-dark.jpg") center center / cover no-repeat;
    position: relative;
}

/* Voal navy în gradient (~.62–.80) — lasă fotografia să se vadă,
   dar păstrează cardurile (bordură albastră, text alb) perfect lizibile. */
.dt-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5, 11, 26, .80) 0%,
        rgba(5, 11, 26, .64) 45%,
        rgba(5, 11, 26, .78) 100%);
    opacity: 1;
    pointer-events: none;
}

.dt-services > .dt-container { position: relative; z-index: 2; }

.dt-services .dt-sec-title { margin-bottom: 50px; }

/* Fundalul secțiunii e acum o fotografie: cardurile primesc un voal navy
   discret + bordură albastră mai vizibilă, ca textul alb să rămână lizibil. */
.dt-flip.dt-flip-two .dt-flip-front {
    background: rgba(5, 11, 26, .46);
    border: 1px solid rgba(88, 148, 255, .42);
    box-shadow: none;
    padding: 50px 34px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.dt-flip.dt-flip-two .dt-flip-front .dt-flip-icon img {
    filter: brightness(0) invert(1);
}

.dt-flip.dt-flip-two .dt-flip-front .dt-flip-title {
    font-size: 23px;
    line-height: 34px;
    color: #fff;
    margin-bottom: 10px;
}

.dt-flip.dt-flip-two .dt-flip-front p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.dt-flip.dt-flip-two .dt-flip-back { padding: 30px 27px; }
.dt-flip.dt-flip-two .dt-flip-back .dt-flip-title { font-size: 22px; }
.dt-flip-readmore {
    display: inline-block;
    margin-top: 14px;
    background: #fff;
    color: var(--dt-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 4px;
}
.dt-flip-readmore:hover { background: var(--dt-heading); color: #fff; }

/*----------------------------------------
  11. „DE CE NOI" (containerul Team din demo)
----------------------------------------*/
.dt-team {
    padding: 75px 0 80px;
    background: #EEF2FC url("../techno/img/team-bg2.jpg") center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.dt-team .dt-head-row { margin-bottom: 29px; }

.dt-team-shape {
    position: absolute;
    top: 22px;
    right: -230px;
    width: 270px;
    z-index: 1;
    pointer-events: none;
}

.dt-team .dt-grid { position: relative; z-index: 2; }

.dt-team-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(16, 32, 60, .06);
}

.dt-team-card .dt-team-img {
    position: relative;
    height: 366px;
    overflow: hidden;
}

.dt-team-card .dt-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.dt-team-card:hover .dt-team-img img { transform: scale(1.08); }

.dt-team-card .dt-team-body {
    padding: 20px 14px 24px;
    text-align: center;
}

.dt-team-card .dt-team-name {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--dt-heading);
    margin: 0 0 6px;
}

.dt-team-card .dt-team-role {
    font-size: 13px;
    line-height: 17px;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--dt-primary);
    margin: 0;
}

/*----------------------------------------
  12. PORTOFOLIU (containerul Case Study)
----------------------------------------*/
.dt-case { padding: 80px 0 94px; }
.dt-case .dt-sec-title { margin-bottom: 46px; }

.dt-case-viewport { overflow: hidden; width: 100%; }

.dt-case-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, .2, .2, 1);
    will-change: transform;
}

.dt-case-item {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    height: 469px;
}

.dt-case-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dt-case-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 90, 219, 0) 40%, rgba(12, 90, 219, .55) 100%);
    opacity: 0;
    transition: opacity .4s ease;
}

.dt-case-item:hover::after { opacity: 1; }

.dt-case-content {
    position: absolute;
    left: 15%;
    bottom: 12px;
    width: 70%;
    background: #fff;
    border-radius: 5px;
    padding: 26px 18px 28px;
    text-align: center;
    z-index: 3;
    transition: transform .4s ease;
}

.dt-case-item:hover .dt-case-content { transform: translateY(-8px); }

.dt-case-content .dt-case-title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    color: var(--dt-heading);
    margin: 0 0 6px;
}

.dt-case-content .dt-case-title a:hover { color: var(--dt-primary); }

.dt-case-content .dt-case-cat {
    font-size: 16px;
    line-height: 24px;
    color: var(--dt-primary);
}

.dt-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 34px;
}

.dt-dots button {
    width: 35px;
    height: 5px;
    border: 0;
    padding: 0;
    border-radius: 50px;
    background: #c9d8f2;
    transition: background .3s;
}

.dt-dots button.dt-active { background: var(--dt-primary); }

/*----------------------------------------
  13. PROCES
----------------------------------------*/
.dt-process-area { padding: 32px 0 60px; }
.dt-process-area .dt-sec-title { margin-bottom: 46px; }

.dt-process-item { text-align: center; position: relative; }

.dt-process-item::after {
    content: "";
    position: absolute;
    top: 24px;
    left: calc(50% + 48px);
    width: calc(100% - 96px);
    border-top: 2px dotted #b9d0f5;
}

.dt-process-item:last-child::after { display: none; }

.dt-process-num {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--dt-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(12, 90, 219, .14);
}

.dt-process-item h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--dt-heading);
    margin: 47px 0 12px;
}

.dt-process-item p {
    font-size: 16px;
    line-height: 24px;
    color: var(--dt-body);
    margin: 0;
}

/*----------------------------------------
  14. CTA ALBASTRU + COUNTERE
----------------------------------------*/
.dt-cta {
    padding: 75px 0 155px;
    background: var(--dt-primary) url("../img/photos/cta-dark.jpg") center center / cover no-repeat;
    position: relative;
}

.dt-cta .dt-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.dt-cta-text { max-width: 780px; }
.dt-cta .dt-button { margin-top: 12px; }

.dt-cta-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: none;
    position: relative;
}

.dt-cta-circle::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    animation: dtPulse 2.4s infinite ease-out;
}

.dt-cta-circle:hover { background: #fff; color: var(--dt-primary); }

.dt-counter-area { padding: 0 0 72px; }

.dt-counter-card {
    margin-top: -81px;
    background: #fff url("../techno/img/about-bg.jpg") center center / cover no-repeat;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    padding: 84px 10px 60px;
    position: relative;
    z-index: 5;
}

.dt-counter-card .dt-grid { gap: 0; }

.dt-counter-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.dt-counter-item + .dt-counter-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 26px;
    width: 1px;
    background: rgba(35, 35, 35, .12);
}

.dt-counter-num {
    font-size: 40px;
    line-height: 60px;
    font-weight: 800;
    color: var(--dt-heading);
    display: block;
    margin-bottom: 14px;
}

.dt-counter-item h6 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: var(--dt-heading);
    margin: 0;
}

/*----------------------------------------
  15. PRINCIPII (containerul Testimoniale)
----------------------------------------*/
.dt-testi-area { padding: 0 0 72px; }
.dt-testi-area .dt-sec-title { margin-bottom: 46px; }

.dt-testi-area .dt-grid > div { display: flex; flex-direction: column; }
.dt-testi-area .dt-testi-body { flex: 1 1 auto; }

.dt-testi-body {
    background: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
    border-radius: 5px;
    padding: 52px 30px;
}

.dt-testi-body .dt-quote-icon { margin-bottom: 10px; }
.dt-testi-body .dt-quote-icon img { width: 40px; height: 31px; }

.dt-testi-body p {
    font-size: 16px;
    line-height: 24px;
    color: var(--dt-body);
    margin: 0;
}

.dt-testi-author {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.dt-testi-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #E7F0FE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.dt-testi-avatar img { width: 40px; height: 40px; object-fit: contain; }

.dt-testi-author .dt-testi-name {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--dt-heading);
    margin: 0 0 6px;
}

.dt-testi-author .dt-testi-role {
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    color: var(--dt-primary);
    margin: 0;
}

/*----------------------------------------
  16. FORMULAR CTA (bandă albastră)
----------------------------------------*/
.dt-form-area {
    padding: 74px 0 80px;
    background: var(--dt-primary);
    position: relative;
    overflow: hidden;
}

.dt-form-area .dt-sec-title { margin-bottom: 40px; }

.dt-form-shape {
    position: absolute;
    top: 22px;
    right: -220px;
    width: 270px;
    z-index: 1;
    pointer-events: none;
}

.dt-form-blob {
    position: absolute;
    left: 50%;
    bottom: 152px;
    width: 90px;
    transform: translateX(-50%);
    opacity: .8;
    z-index: 1;
    pointer-events: none;
}

.dt-form { position: relative; z-index: 3; }

.dt-form .dt-grid { gap: 22px; }

.dt-form input,
.dt-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .2);
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 6px 25px;
    height: 52px;
    font-family: inherit;
    font-size: 15px;
    line-height: 22px;
    color: #fff;
}

.dt-form textarea {
    height: 148px;
    padding-top: 15px;
    resize: vertical;
    margin-top: 22px;
}

.dt-form input::placeholder,
.dt-form textarea::placeholder { color: rgba(255, 255, 255, .85); }

.dt-form input:focus,
.dt-form textarea:focus {
    outline: 0;
    border-color: rgba(255, 255, 255, .8);
}

.dt-form-bottom {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.dt-form-gdpr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, .9);
    max-width: 640px;
    text-align: left;
}

.dt-form-gdpr input {
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 2px;
    padding: 0;
    accent-color: #fff;
}

.dt-form-submit {
    background: #fff;
    color: var(--dt-heading);
    border: 0;
    border-radius: 7px;
    padding: 14px 39px;
    font-size: 16px;
    font-weight: 600;
    transition: background .3s, color .3s;
}

.dt-form-submit:hover { background: var(--dt-heading); color: #fff; }

/*----------------------------------------
  17. RESURSE (containerul Blog)
----------------------------------------*/
.dt-blog { padding: 73px 0 70px; }
.dt-blog .dt-head-row { margin-bottom: 40px; }
.dt-blog .dt-grid { gap: 24px; }

.dt-post {
    background: #fff;
    border: 1px solid rgba(29, 33, 36, .12);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.dt-post-thumb { position: relative; height: 270px; overflow: hidden; }

.dt-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.dt-post:hover .dt-post-thumb img { transform: scale(1.07); }

.dt-post-cat {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--dt-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    padding: 4px 17px 2px;
    border-radius: 4px;
}

.dt-post-body { padding: 25px 30px 30px; }

.dt-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    color: #616161;
    margin-bottom: 12px;
}

.dt-post-meta span.dt-sep { color: #d3d3d3; }

.dt-post h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: var(--dt-heading);
    margin: 0;
}

.dt-post h3 a:hover { color: var(--dt-primary); }

.dt-post .dt-post-desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--dt-body);
    margin: 13px 0 15px;
}

.dt-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dt-heading);
}

.dt-read-more i { font-size: 12px; }
.dt-read-more:hover { color: var(--dt-primary); }

/*----------------------------------------
  18. NEWSLETTER
----------------------------------------*/
.dt-news {
    background: var(--dt-primary);
    padding: 44px 0 56px;
    text-align: center;
}

.dt-news h3 {
    font-size: 31px;
    line-height: 41px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px;
}

.dt-news form {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.dt-news input {
    width: 100%;
    height: 65px;
    border: 0;
    border-radius: 15px;
    background: #F6F6FC;
    padding: 5px 190px 5px 25px;
    font-family: inherit;
    font-size: 14px;
    color: #000;
}

.dt-news input:focus { outline: 0; }

.dt-news button {
    position: absolute;
    top: 6px;
    right: 7px;
    height: 52px;
    border: 0;
    border-radius: 15px;
    background: var(--dt-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 43px;
    transition: background .3s;
}

.dt-news button:hover { background: var(--dt-heading); }

/*----------------------------------------
  19. FOOTER
----------------------------------------*/
.dt-footer {
    padding: 95px 0 0;
    background: #0A0E1B url("../techno/img/footer-threee-1.jpg") center center / cover no-repeat;
    color: #fff;
}

.dt-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .8fr 1.35fr 1.1fr;
    gap: 30px;
    padding-bottom: 60px;
}

.dt-footer-logo { display: inline-block; margin-bottom: 22px; }
.dt-footer-logo img { height: 32px; width: auto; }

.dt-footer p { color: #fff; font-size: 16px; line-height: 26px; }

.dt-footer h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 26px;
}

.dt-footer-social { display: flex; gap: 10px; margin-top: 20px; }

.dt-footer-social a {
    width: 37px;
    height: 37px;
    border-radius: 10%;
    background: #187DFF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.dt-footer-social a:hover { background: #fff; color: var(--dt-primary); }

.dt-footer-links li + li { margin-top: 12px; }

.dt-footer-links a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.dt-footer-links a i { font-size: 11px; color: #9EB3EF; }
.dt-footer-links a:hover { color: #9EB3EF; }

.dt-footer-posts li { display: flex; gap: 16px; }
.dt-footer-posts li + li { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .2); }

.dt-footer-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    flex: none;
}

.dt-footer-posts h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.dt-footer-posts h5 a:hover { color: #9EB3EF; }
.dt-footer-posts span { font-size: 14px; color: #9EB3EF; }

.dt-footer-info li { display: flex; gap: 16px; }
.dt-footer-info li + li { margin-top: 20px; }

.dt-footer-info .dt-info-icon {
    width: 34px;
    flex: none;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.dt-footer-info h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
}

.dt-footer-info p { font-size: 15px; line-height: 22px; color: #9EB3EF; margin: 0; }
.dt-footer-info a:hover { color: #fff; }

.dt-footer-bottom .dt-container {
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 22px;
    padding-bottom: 22px;
}

.dt-footer-bottom p { margin: 0; font-size: 15px; color: #fff; }
.dt-footer-bottom ul { display: flex; gap: 26px; }
.dt-footer-bottom ul a { font-size: 15px; color: #fff; }
.dt-footer-bottom ul a:hover { color: #9EB3EF; }

/*----------------------------------------
  20. SCROLL TO TOP
----------------------------------------*/
.dt-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--dt-primary);
    color: #fff;
    font-size: 16px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, background .3s;
}

.dt-scroll-top.dt-show { opacity: 1; visibility: visible; }
.dt-scroll-top:hover { background: var(--dt-heading); }

/*----------------------------------------
  21. ANIMAȚII DE INTRARE
----------------------------------------*/
.dt-js .dt-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.dt-js .dt-anim.dt-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .dt-js .dt-anim { opacity: 1; transform: none; transition: none; }
    .dt-bar::after, .dt-hero-circle::before, .dt-cta-circle::before { animation: none; }
    html { scroll-behavior: auto; }
}

/*----------------------------------------
  22. RESPONSIVE
----------------------------------------*/
@media (max-width: 1399px) {
    .dt-hero-circle { right: 130px; }
    .dt-about-collage { width: 100%; left: 0; }
    .dt-about-collage .dt-img2 { left: auto; right: 0; }
}

@media (max-width: 1199px) {
    .dt-menu { display: none; }
    .dt-menu-toggle { display: flex; }
    .dt-hero { height: 700px; }
    .dt-hero h1 { font-size: 46px; line-height: 54px; }
    .dt-hero-nav { width: 62px; height: 80px; }
    .dt-hero-circle { display: none; }
    .dt-sec-title .title, .dt-sec-title .title-two { font-size: 34px; }
    .dt-g4 { grid-template-columns: repeat(2, 1fr); }
    .dt-g5 { grid-template-columns: repeat(3, 1fr); }
    .dt-features .dt-grid { margin-top: -80px; }
    .dt-case-item { flex: 0 0 33.3333%; max-width: 33.3333%; }
    .dt-about .dt-container { grid-template-columns: 1fr; }
    .dt-about-visual { min-height: 520px; }
    .dt-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .dt-process-item::after { display: none; }
}

@media (max-width: 991px) {
    .dt-g3 { grid-template-columns: repeat(2, 1fr); }
    .dt-g5 { grid-template-columns: repeat(2, 1fr); }
    .dt-case-item { flex: 0 0 50%; max-width: 50%; }
    .dt-counter-card .dt-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .dt-counter-item:nth-child(3)::before { display: none; }
    .dt-hero h1 { font-size: 40px; line-height: 48px; }
    .dt-topbar .dt-container { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 767px) {
    .dt-hero { height: 600px; }
    .dt-hero .eyebrow { font-size: 16px; }
    .dt-hero h1 { font-size: 32px; line-height: 40px; margin-bottom: 32px; }
    .dt-hero-btns { gap: 16px; }
    .dt-hero-btn1, .dt-hero-btn2 { font-size: 15px; padding: 0 24px; }
    .dt-hero-nav { width: 44px; height: 64px; font-size: 16px; }
    .dt-hero-nav.dt-prev { left: 0; }
    .dt-hero-nav.dt-next { right: 0; }
    .dt-hero-curve { height: 70px; }
    .dt-sec-title .title, .dt-sec-title .title-two { font-size: 28px; }
    .dt-sec-title .description { font-size: 16px; line-height: 25px; }
    .dt-g2, .dt-g3, .dt-g4, .dt-g5 { grid-template-columns: 1fr; }
    .dt-features .dt-grid { margin-top: -60px; }
    .dt-case-item { flex: 0 0 100%; max-width: 100%; height: 420px; }
    .dt-counter-card .dt-grid { grid-template-columns: 1fr; }
    .dt-counter-item::before { display: none !important; }
    .dt-counter-card { padding: 50px 10px 40px; }
    .dt-footer-grid { grid-template-columns: 1fr; }
    .dt-form .dt-grid { grid-template-columns: 1fr; }
    .dt-news h3 { font-size: 24px; line-height: 32px; margin-bottom: 26px; }
    .dt-news input { height: 58px; padding: 5px 118px 5px 18px; }
    .dt-news button { top: 5px; right: 5px; height: 48px; padding: 0 20px; font-size: 14px; border-radius: 12px; }
    .dt-header-btns .dtbtn { display: none; }
    .dt-header .dt-container { height: 76px; }
    .dt-logo img { height: 28px; }
    .dt-about-visual { min-height: 420px; }
    .dt-about-collage { height: 420px; }
    .dt-about-collage .dt-img1 { width: 62%; height: 240px; }
    .dt-about-collage .dt-img2 { width: 62%; height: 210px; top: 170px; }
    .dt-about-circle { width: 280px; height: 280px; top: 150px; }
    .dt-services, .dt-team, .dt-cta { padding-top: 60px; padding-bottom: 60px; }
    .dt-cta { padding-bottom: 120px; }
    .dt-case, .dt-blog { padding: 60px 0; }
    .dt-footer { padding-top: 60px; }
    .dt-footer-bottom .dt-container { flex-direction: column; text-align: center; }
}
