/* ===================== RESET & VARIABLES ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #1E1F23;
    --dark: #111111;
    --dark-2: #2A2D31;
    --dark-3: #222222;
    --white: #ffffff;
    --gray: #F4F4F1;
    --gray-light: #e7e5e5;
    --orange: #e03004;
    --orange-hover: #fd9f5b;
    --cyan: #00C2FF;
    --border: rgba(255,255,255,0.08);
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}


a { color: inherit; text-decoration: none; }

/* ===================== DEKSTOP ===================== */

@media (min-width: 1040px) {
    
/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
    overflow: hidden;
    background: #080c10;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,80,120,0.25) 0%, transparent 70%),
        linear-gradient(to right, rgba(8,12,16,0.95) 35%, rgba(8,12,16,0.3) 100%);
    z-index: 1;
}

.hero-content {
    margin:  80px 80px 80px;
    position: relative;
    z-index: 2;
    padding: 0 20px 60px;
    max-width: 1200px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow .line {
    width: 28px;
    height: 5px;
    background: var(--orange);
}

.hero-eyebrow span {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 32px);
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--orange);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.hero h1 .accent { color: var(--cyan); }

.hero-desc {
    font-size: 20px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-desc:last-of-type { margin-bottom: 36px; }

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ===================== BUTTONS ===================== */
.btn-primary {
    background: var(--orange);
    color: var(--gray);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    cursor: pointer;
    border-radius: 5px;
}

.btn-primary:hover { background: var(--orange-hover); }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 5px;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}

.btn-view-all {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    white-space: nowrap;
    justify-self: end;
    border-radius: 5px;
}

.btn-view-all:hover { background: var(--orange-hover); }

.btn-explore {
    border: 1px solid var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    white-space: nowrap;
    justify-self: end;
    border-radius: 5px;
}

.btn-explore:hover { background: var(--orange); }


/* ===================== ARROW UTIL ===================== */
.arrow-right {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: currentColor;
    position: relative;
    vertical-align: middle;
}

.arrow-right::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -4px;
    border-left: 5px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}


/* ===================== STATS BAR ===================== */

.stats-bar {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 20px;
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 0.8fr 1fr 1fr;
    gap: 32px;
}

.stat-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.stats-bar2 {
    background: var(--dark);
    padding: 36px 50px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
}

.stat-item2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-data2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: top;
    justify-content: center;
}

.stat-item-icon2 {
    width: 40px;
    height: 40px;
    margin: 10px 0;
}


.stat-value {
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label-top {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.stat-label-top.cyan { color: var(--cyan); }

.stat-label-mid {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.5;
}

.stat-item.trusted {
    flex-direction: column;
    gap: 14px;
    overflow: hidden; /* important pour contenir le slider */
}

.trusted-slider-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trusted-slider {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content; /* ← clé : largeur basée sur le contenu, pas 100% */
    animation: slide-logos 25s linear infinite;
}

.trusted-slider:hover {
    animation-play-state: paused;
}

.trusted-slider span {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* ← empêche les logos de se comprimer */
}

.trusted-slider span img {
    height: 65px; /* ← réduit pour tenir dans la stat-item */
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}

.trusted-slider span img:hover {
    opacity: 1;
}

@keyframes slide-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ===================== WHEN STANDARD SOLUTIONS ===================== */

.standards-top {
  display: grid;
  grid-template-columns:3fr 1fr;
  border-bottom: 1px solid #c8c8c8;
  align-items: center;
}
 
/* Titre */
.standards-heading {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
 
.section-eyebrow {
  display: none; /* caché comme dans la maquette */
}
 
.standards-title {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 20px;
}
 
/* Liste défis */
.standards-center {
  padding: 1.1rem 1.5rem;
}
 
.std-intro {
  font-size: 16px;
  color: var(--dark);
  margin: 0 0 0.65rem 0;
}
 
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
 
.standards-list {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}
 
.standards-list li {
  font-size: 16px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 1px 0;
}
 
.standards-list li::before {
  content: '•';
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}
 
/* Tagline */
.standards-highlight {
  background: var(--dark);
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 200px;
  border-radius: 10px;
}
 
.standards-highlight svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--cyan);
}
 
.standards-highlight p {
  font-size: 20px;
  color:var(--white);
  line-height: 1.6;
  font-weight: 700;
  margin: 0;
}
 
/* ── LIGNE BASSE ── */
.standards-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
 
.standards-feature {
  padding: 1.2rem 1.5rem 1.3rem;
}
 
.standards-feature .standards-feature {
  border-left: 1px solid #c8c8c8;
}
 
.standards-feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.55rem;
}
 
.standards-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #e84520;
}
 
.standards-feature-title {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
 
.standards-feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.65;
  margin: 0;
}

/* ===================== WHAT WE DO ===================== */

.section {
    padding: 80px 80px;
    background: var(--gray);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-eyebrow span {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 32px);
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--orange);
}

.section-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 48px;
}

.section-header h2 {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.0;
}

.section-desc {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.7;
    max-width: 750px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

.solution-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.solution-card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    transition: filter 0.4s, transform 0.4s;
}

.solution-card:hover .solution-card-img {
    transform: scale(1.04);
}

.solution-card-body {
    background: var(--dark);
    padding: 18px 16px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s;
}

.solution-card:hover .solution-card-body {
    border-color: var(--orange);
}

.solution-icon {
    color: var(--cyan);
    margin-bottom: 10px;
    display: block;
}

.solution-icon:hover {
    color: var(--orange);
}

.what-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.solution-card-body:hover .what-icon {
    color: var(--orange);
}

.solution-card-body h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.25;
    margin-bottom: 8px;
}

.solution-card-body p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 8px;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

.solution-list li {
    font-size: 14px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 7px;
}

.solution-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.card-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.card-arrow > p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.card-arrow span {
    width: 20px;
    height: 1px;
    background: var(--orange);
    transition: width 0.25s, background 0.25s;
}

.card-arrow svg {
    color: var(--orange);
    transition: color 0.25s, transform 0.25s;
}

.solution-card:hover .card-arrow span,
.deploy-card:hover .card-arrow-deploy span {
    width: 32px;
    background: var(--orange);
}

.solution-card:hover .card-arrow svg,
.deploy-card:hover .card-arrow-deploy svg {
    color: var(--orange);
    transform: translateX(4px);
}


.eng-banner {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-left: 4px solid var(--orange);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.eng-title {
    flex-shrink: 0;
    min-width: 210px;
    padding: 24px 28px 24px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.eng-title h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color:var(--orange);
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.eng-title p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.5;
    margin: 0;
}

.eng-steps {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 20px 24px;
    position: relative;
    z-index: 1;
}

.eng-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.eng-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 0;
    border-top: 1px dashed rgba(41, 182, 246, 0.35);
    z-index: 0;
}

.eng-step-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: var(--cyan);
}

.eng-step-circle svg {
    width: 24px;
    height: 24px;
}

.eng-step-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color:var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

/* ===================== DEPLOYMENTS ===================== */
.deployments { background: var(--gray); }

.deployments-header {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.deployments-header-left h2 {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.0;
    margin-top: 12px;
}

.deployments-tagline {
    font-size: 14px;
    color:var(--dark);
    line-height: 1.7;
}

.deployments-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.deployments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.deploy-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-light);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.deploy-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: filter 0.4s, transform 0.4s;
}

.deploy-card:hover .deploy-img {
    transform: scale(1.04);
}

.deploy-body { padding: 18px 16px 20px;
    flex: 1; 
    display: flex;
    flex-direction: column;; }

.deploy-body h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 6px;
    color:var(--dark);
}

.deploy-body > p {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.deploy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

.deploy-list li {
    font-size: 14px;
    color:var(--dark);
    display: flex;
    align-items: center;
    gap: 7px;
}

.deploy-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.deploy-list li::before:hover {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.card-arrow-deploy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.card-arrow-deploy p {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.card-arrow-deploy span {
    width: 20px;
    height: 1px;
    background: var(--orange);
    transition: width 0.25s, background 0.25s;
}

.card-arrow-deploy svg {
    color: var(--orange);
    transition: color 0.25s, transform 0.25s;
}

/* ===================== TECHNOLOGY ===================== */
.technology {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tech-header {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.tech-header-left h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.0;
    margin-top: 12px;
}

.tech-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
    max-width: 800px;
}

.tech-body .tech-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
}

.tech-grid {
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 0.2rem;
}

.tech-grid-list {
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 0.2rem;
}

.tech-list {
    padding: 0;
    margin: 0;
    flex: 1;
}

.tech-list li {
    padding: 6px 0;
    font-size: 16px;
    color: var(--white);
}

.tech-list li:last-child { border-bottom: none; }

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 28px;
    border-right: none;
    padding-bottom: 32px;
}


.tech-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: top;
    justify-content: center;
    color: var(--cyan);
    transition: border-color 0.25s, background 0.25s;
}

.tech-label-top {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.tech-sub {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
}

.tech-data {
    display: grid;
    align-items: flex-start;
    gap: 14px;
}


/* ===================== WHY DKI ===================== */
.why-dki { background: var(--gray); }

.why-title {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 56px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 28px;
    border-right: none;
    padding-bottom: 32px;
}

.why-icon, .why-icon-orange, .what-icon-blanc {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: top;
    justify-content: center;
    color: var(--cyan);
    transition: border-color 0.25s, background 0.25s;
}

.why-label-top {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.why-sub {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.5;
}

.why-data {
    display: grid;
    align-items: flex-start;
    gap: 14px;
}


/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: var(--orange);
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.cta-banner-left {
    display: flex;
    margin: 60px 60px;
    align-items: center;
    gap: 28px;
}

.cta-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.cta-bouton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;  
}

.btn-cta {
    background: var(--white);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    border-radius: 5px;
}

.btn-cta:hover { background: #f0f0f0; }


/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }
.hero-content > *:nth-child(5) { animation-delay: 0.6s; }

}

/* ===================== MOBILE ===================== */
@media (max-width: 600px) {
  /* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 56px;
    overflow: hidden;
    background: #080c10;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,80,120,0.25) 0%, transparent 70%),
        linear-gradient(to right, rgba(8,12,16,0.95) 35%, rgba(8,12,16,0.3) 100%);
    z-index: 1;
}

.hero-content {
    margin: 20px 16px;
    position: relative;
    z-index: 2;
    padding: 0 0 40px;
    max-width: 1200px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow .line {
    width: 28px;
    height: 5px;
    background: var(--orange);
}

.hero-eyebrow span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 9vw, 48px);
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.hero h1 .accent { color: var(--cyan); }

.hero-desc {
    font-size: 12px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-desc:last-of-type { margin-bottom: 36px; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}


/* ===================== BUTTONS ===================== */
.btn-primary {
    background: var(--orange);
    color: var(--gray);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    cursor: pointer;
    border-radius: 5px;
}

.btn-primary:hover { background: var(--orange-hover); }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 5px;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}

.btn-view-all {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    white-space: nowrap;
    border-radius: 5px;
}

.btn-view-all:hover { background: var(--orange-hover); }

.btn-explore {
    border: 1px solid var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    white-space: nowrap;
    border-radius: 5px;
}

.btn-explore:hover { background: var(--orange); }


/* ===================== ARROW UTIL ===================== */
.arrow-right {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: currentColor;
    position: relative;
    vertical-align: middle;
}

.arrow-right::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -4px;
    border-left: 5px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}


/* ===================== STATS BAR ===================== */

.stats-bar2 {
    background: var(--dark);
    padding: 36px 50px;
    display: grid;
    grid-template-columns: 1fr ;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
}

.stat-item2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-data2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-bar {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}


.stat-item:last-child,
.stat-item2:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.stat-item-icon2 {
    width: 40px;
    height: 40px;
    margin: 10px 0;
}


.stat-value {
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label-top {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.stat-label-top.cyan { color: var(--cyan); }

.stat-label-mid {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
}

.stat-item.trusted {
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.trusted-slider-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trusted-slider {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: slide-logos 35s linear infinite;
}

.trusted-slider:hover {
    animation-play-state: paused;
}

.trusted-slider span {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.trusted-slider span img {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}

.trusted-slider span img:hover {
    opacity: 1;
}

@keyframes slide-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ===================== WHEN STANDARD SOLUTIONS ===================== */
.standards {
    background: var(--gray);
    color: var(--black);
    padding: 40px 16px;
}

.standards-top,
.standards-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0;
    align-items: center;
}

.standards-heading {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.section-eyebrow { display: none; }

.standards-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--dark);
}

.standards-center {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.standards-center *:first-child { margin-top: 0; }
.standards-center *:last-child { margin-bottom: 0; }

.std-intro,
.standards-intro {
    font-size: 13px;
    color: #444;
    margin-bottom: 16px;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.standards-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.standards-list li {
    font-size: 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1px 0;
}

.standards-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.standards-highlight {
    background: var(--dark);
    color: var(--white);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.standards-highlight svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--cyan);
}

.standards-highlight p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

.standards-feature {
    padding: 0;
}

.standards-feature + .standards-feature {
    border-left: none;
    border-top: 1px solid #c8c8c8;
    padding-top: 1.2rem;
}

.standards-feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.55rem;
}

.standards-feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #e84520;
}

.standards-feature-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.standards-feature-text {
    font-size: 13px;
    color: #333;
    line-height: 1.65;
    margin: 0;
}


/* ===================== WHAT WE DO ===================== */
.section {
    padding: 48px 16px;
    background: var(--gray);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-eyebrow span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
}

.section-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: end;
    margin-bottom: 28px;
}

.section-header h2 {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: clamp(28px, 8vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.0;
}

.section-desc {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.7;
    max-width: 750px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 8px;
    align-items: stretch;
}

.solution-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.solution-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    filter: brightness(0.55) saturate(0.7);
    transition: filter 0.4s, transform 0.4s;
}

.solution-card:hover .solution-card-img {
    filter: brightness(0.7) saturate(0.9);
    transform: scale(1.04);
}

.solution-card-body {
    background: var(--dark);
    padding: 18px 16px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s;
}

.solution-card:hover .solution-card-body { border-color: var(--orange); }

.solution-icon {
    color: var(--cyan);
    margin-bottom: 10px;
    display: block;
}

.solution-icon:hover { color: var(--orange); }

.what-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.solution-card-body:hover .what-icon { color: var(--orange); }

.solution-card-body h3 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.25;
    margin-bottom: 8px;
}

.solution-card-body p {
    font-size: 11px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 8px;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

.solution-list li {
    font-size: 11px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 7px;
}

.solution-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.card-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.card-arrow span {
    width: 20px;
    height: 1px;
    background: var(--orange);
}

.card-arrow svg {
    color: var(--orange);
}


/* ===================== ENGINEERING APPROACH BANNER ===================== */
.eng-banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-left: 4px solid var(--orange);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.eng-title {
    flex-shrink: 0;
    width: 100%;
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.eng-title h2 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.eng-title p {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.5;
    margin: 0;
}

.eng-steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    padding: 20px 16px;
    position: relative;
    z-index: 1;
    gap: 24px;
}

.eng-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    flex: 1;
    gap: 14px;
    position: relative;
}

.eng-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 26px;
    top: calc(100% + 12px);
    bottom: auto;
    height: 24px;
    width: 0;
    border-left: 1px dashed rgba(41, 182, 246, 0.35);
    border-top: none;
}

.eng-step-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    flex-shrink: 0;
    color: var(--cyan);
}

.eng-step-circle svg {
    width: 24px;
    height: 24px;
}

.eng-step-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
}


/* ===================== DEPLOYMENTS ===================== */
.deployments { background: var(--gray); }

.deployments-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.deployments-header-left h2 {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: clamp(26px, 7vw, 38px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.0;
    margin-top: 12px;
}

.deployments-tagline {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.7;
}

.deployments-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.deployments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.deploy-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-light);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.deploy-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    filter: brightness(0.5) saturate(0.65);
    transition: filter 0.4s, transform 0.4s;
}

.deploy-card:hover .deploy-img {
    filter: brightness(0.65) saturate(0.8);
    transform: scale(1.04);
}

.deploy-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
}

.deploy-body {
    padding: 18px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.deploy-body h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--dark);
}

.deploy-body > p {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.deploy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

.deploy-list li {
    font-size: 11px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 7px;
}

.deploy-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.card-arrow-deploy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.card-arrow-deploy p {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.card-arrow-deploy span {
    width: 20px;
    height: 1px;
    background: var(--orange);
}

.card-arrow-deploy svg {
    color: var(--orange);
}

/* ===================== TECHNOLOGY ===================== */
.technology {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tech-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.tech-header-left h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(24px, 7vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.0;
    margin-top: 12px;
}

.tech-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
    max-width: 800px;
}

.tech-body .tech-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 0.2rem;
}

.tech-grid-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0.2rem;
    padding: 0 16px;
}

.tech-list {
    padding: 0;
    margin: 0;
    flex: 1;
}

.tech-list li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--white);
}

.tech-list li:last-child { border-bottom: none; }

.tech-item {
    background: var(--white);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    border-right: none;
    transition: border-color 0.25s, background 0.25s;
}

.tech-item:hover { background: var(--gray); }

.tech-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: border-color 0.2s, background 0.2s;
}

.tech-item:hover .tech-item-icon { color: var(--orange); }

.tech-item h4,
.tech-label-top {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
    color: var(--dark);
}

.tech-item p,
.tech-sub {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.6;
}


/* ===================== WHY DKI ===================== */
.why-dki { background: var(--gray); }

.why-title {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: clamp(26px, 7vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 32px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.why-card {
    background: var(--gray);
    padding: 5px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    border-right: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s, background 0.25s;
}

.why-icon,
.why-icon-orange {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: border-color 0.25s, background 0.25s;
}

.why-card h4,
.why-label-top {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.why-card p,
.why-sub {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.6;
}


/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: var(--orange);
    padding: 32px 16px;
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.cta-banner-left {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: flex-start;
    gap: 16px;
}

.cta-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 6vw, 28px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.cta-bouton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.btn-cta {
    background: var(--white);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    border-radius: 5px;
}

.btn-cta:hover { background: #f0f0f0; }

.btn-contact {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 5px;
}

.btn-contact:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}


/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }
.hero-content > *:nth-child(5) { animation-delay: 0.6s; }

}