/* ================================================================
   DIRECTFXIT — HOMEPAGE (FriendFamous Layout DNA)
   ================================================================ */

/* ── HERO SECTION ── */
.dfx-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #0a0a0f;
  border-bottom: 5px solid var(--cyan);
}

/* Particles */
.dfx-hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.dfx-particle {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  animation: dfx-float 35s infinite ease-in-out;
}
.dfx-p1 { top: 5%;  left: 5%;  background: radial-gradient(circle, rgba(0,245,255,.04) 0%, transparent 70%); animation-delay: 0s; }
.dfx-p2 { top: 50%; right:10%; background: radial-gradient(circle, rgba(26,143,255,.04) 0%, transparent 70%); animation-delay: 10s; }
.dfx-p3 { bottom:15%; left:25%; background: radial-gradient(circle, rgba(57,255,20,.03) 0%, transparent 70%); animation-delay: 20s; }
.dfx-p4 { top: 30%; right:40%; background: radial-gradient(circle, rgba(255,106,0,.025) 0%, transparent 70%); animation-delay: 15s; }
@keyframes dfx-float {
  0%,100%{ transform: translate(0,0) scale(1); }
  33%    { transform: translate(50px,-50px) scale(1.2); }
  66%    { transform: translate(-40px,40px) scale(0.85); }
}

/* Hero container — centered vertical stack */
.dfx-hero-container {
  position: relative; z-index: 10;
  text-align: center; padding: 0 24px;
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  transform: translateY(-15px);
}

.dfx-hero-logo { margin-bottom: 0; }
.dfx-hero-logo img {
  max-width: 460px; width: 100%; height: auto;
  filter: drop-shadow(0 0 20px rgba(0,245,255,.35));
}

.dfx-hero-headline {
  font-size: clamp(1.8rem,3.8vw,4rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 30px; margin-top: 20px;
  font-family: var(--fd); text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(180deg,#ffffff 0%,#7a8aaa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero CTAs */
.dfx-hero-ctas {
  display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap;
}

.dfx-hbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  box-sizing: border-box;
  height: 54px; min-width: 240px;
  padding: 0 40px;
  font-family: var(--fd); font-size: 11px; line-height: 1;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: none; outline: none; -webkit-appearance: none; appearance: none;
  transition: all .25s; position: relative;
  vertical-align: middle;
}

/* Primary — laser border */
.dfx-hbtn-primary {
  background: var(--black); color: var(--white) !important;
  border: 1px solid rgba(0,245,255,.25); border-radius: 4px;
  overflow: hidden; z-index: 1;
}
.dfx-hbtn-primary::before {
  content: ''; position: absolute; inset: -3px;
  background: conic-gradient(from 0deg, transparent 0%, transparent 22%, var(--cyan) 25%, var(--cyan) 28%, transparent 30%, transparent 100%);
  border-radius: 4px; animation: dfx-laser 3s linear infinite; z-index: -1;
}
.dfx-hbtn-primary::after {
  content: ''; position: absolute; inset: 1px; background: var(--black); border-radius: 3px; z-index: -1;
}
@keyframes dfx-laser { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.dfx-hbtn-primary:hover { transform: scale(1.05); }

/* Secondary — ghost */
.dfx-hbtn-secondary {
  background: transparent; color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.2); border-radius: 4px;
}
.dfx-play-circle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.dfx-hbtn-secondary:hover { color: var(--cyan) !important; border-color: rgba(0,245,255,.5); }
.dfx-hbtn-secondary:hover .dfx-play-circle { background: var(--cyan); border-color: var(--cyan); }
.dfx-hbtn-secondary:hover .dfx-play-circle svg { color: var(--black); }

/* Slide-in animations */
.animate-fade-up { opacity: 0; transform: translateY(40px); animation: dfx-fadeup .9s cubic-bezier(.4,0,.2,1) forwards; }
.delay-100 { animation-delay: .2s; }
.delay-200 { animation-delay: .4s; }

.dfx-hero-sub {
  font-family: var(--fm);
  font-size: clamp(13px, 1.6vw, 18px);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(0,245,255,0.7);
  margin-top: -14px;
  margin-bottom: 36px;
}
@keyframes dfx-fadeup { to { opacity:1; transform:translateY(0); } }
.slide-in-left  { opacity:0; transform:translateX(-60px); animation: dfx-sil .8s cubic-bezier(.4,0,.2,1) forwards; animation-delay:.8s; }
.slide-in-right { opacity:0; transform:translateX(60px);  animation: dfx-sir .8s cubic-bezier(.4,0,.2,1) forwards; animation-delay:.8s; }
@keyframes dfx-sil { to{opacity:1;transform:translateX(0);} }
@keyframes dfx-sir { to{opacity:1;transform:translateX(0);} }

/* nav scrolled state */
.dfx-nav.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: 0 4px 30px rgba(0,245,255,.12);
}

/* ── LINES SECTION ── */
/* ── SECTION 2 LAYOUT ── */
.dfx-lines-section {
  width: 100%;
  padding: 144px 0 60px 0;
  background: transparent; overflow: visible; position: relative;
}

/* Container = the grid itself: left col (headline+glass) | right col (terminal) */
.dfx-lines-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px 0 20px;
  position: relative;
  display: grid;
  grid-template-columns: 72% 28%;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 60px;
}

/* Headline — top left */
.dfx-lines-headline {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--fd); font-weight: 900;
  line-height: 1.1; letter-spacing: .02em; text-transform: uppercase;
  position: relative; z-index: 10;
  padding-top: 50px;
  padding-left: 0;
  margin-left: 40px;
  margin-bottom: 24px;
  opacity: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.dfx-h2-line1 {
  font-size: clamp(1.6rem, 2.5vw, 3.1rem);
  color: rgba(255,255,255,0.88);
  display: block;
  max-width: 100%;
}
.dfx-h2-line2 {
  font-size: clamp(1.6rem, 2.5vw, 3.1rem);
  display: block;
  max-width: 100%;
}
.dfx-lines-section.animate .dfx-lines-headline {
  animation: dfx-fadein .8s ease-out 0.4s forwards;
}
@keyframes dfx-fadein { to{opacity:1;} }

/* Glass box — bottom left, indented */
.dfx-lines-content-wrapper {
  grid-column: 1;
  grid-row: 2;
  position: relative; z-index: 10;
  padding-left: 100px;
  padding-bottom: 50px;
}
.dfx-glass-box {
  width: 82%;
  background: rgba(12,12,22,.92);
  border: 1px solid rgba(0,245,255,.12);
  border-radius: 3px;
  padding: 32px 36px;
  opacity: 0;
}
.dfx-lines-section.animate .dfx-glass-box {
  animation: dfx-fadein .8s ease-out 0.8s forwards;
}
.dfx-glass-box p {
  color: rgba(255,255,255,.85); font-size: .97rem; line-height: 1.85; margin: 0;
  font-family: var(--fb);
}

/* Terminal — right col, spans both rows, flush top */
.dfx-terminal-box {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 50px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 40px;
  margin-right: 20px;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  opacity: 0;
  position: relative; z-index: 20;
}
.dfx-lines-section.animate .dfx-terminal-box {
  animation: dfx-fadein .8s ease-out 1.2s forwards;
}
.dfx-term-bar {
  background: #1a1a2e; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(57,255,20,.2);
}
.dfx-dot { width:10px;height:10px;border-radius:50%; }
.dfx-dot:nth-child(1){background:#ff5f57;} .dfx-dot:nth-child(2){background:#ffbd2e;} .dfx-dot:nth-child(3){background:#28c840;}
.dfx-term-title { font-family: var(--fm); font-size: 11px; color: rgba(255,255,255,.35); margin-left: 8px; }
.dfx-term-body { background: #08080e; padding: 22px 28px; font-family: var(--fm); font-size: 13px; line-height: 2.1; color: var(--green); min-height: 260px; min-width: 320px; }

/* Clickable color-cycling status line */
.dfx-term-body .deploy-link {
  animation: color-cycle 2s linear infinite;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-shadow: none;
  font-weight: 600;
}
.dfx-term-body .deploy-link:hover {
  filter: brightness(1.3);
}
@keyframes color-cycle {
  0%   { color: #00b7ae; }
  25%  { color: #4fb528; }
  50%  { color: #ff6b00; }
  75%  { color: #ff2d78; }
  100% { color: #00b7ae; }
}
.dfx-term-body .tp { color: var(--cyan); }
.dfx-term-body .tc { color: rgba(255,255,255,.3); }
.dfx-term-body .tv { color: var(--yellow); }
.dfx-cursor { display:inline-block;width:8px;height:14px;background:var(--green);vertical-align:text-bottom;animation:blink 1s step-end infinite; }
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}

/* Lines — slide in from right */
.dfx-horizontal-lines {
  width: 100vw; display: flex; flex-direction: column; gap: 18px;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 1;
  pointer-events: none;
}
.dfx-line {
  width: 100%; height: 12px;
  background: #0e1e38;
  border-bottom: 3px solid rgba(0,245,255,.1);
  opacity: 0; transform: translateX(100%);
}
.dfx-lines-section.animate .dfx-line { animation: dfx-slide-r .6s ease-out forwards; }
.dfx-lines-section.animate .dfx-line:nth-child(1){animation-delay:.0s}
.dfx-lines-section.animate .dfx-line:nth-child(2){animation-delay:.05s}
.dfx-lines-section.animate .dfx-line:nth-child(3){animation-delay:.1s}
.dfx-lines-section.animate .dfx-line:nth-child(4){animation-delay:.15s}
.dfx-lines-section.animate .dfx-line:nth-child(5){animation-delay:.2s}
.dfx-lines-section.animate .dfx-line:nth-child(6){animation-delay:.25s}
.dfx-lines-section.animate .dfx-line:nth-child(7){animation-delay:.3s}
.dfx-lines-section.animate .dfx-line:nth-child(8){animation-delay:.35s}
.dfx-lines-section.animate .dfx-line:nth-child(9){animation-delay:.4s}
.dfx-lines-section.animate .dfx-line:nth-child(10){animation-delay:.45s}
.dfx-lines-section.animate .dfx-line:nth-child(11){animation-delay:.5s}
.dfx-lines-section.animate .dfx-line:nth-child(12){animation-delay:.55s}
.dfx-lines-section.animate .dfx-line:nth-child(13){animation-delay:.6s}
.dfx-lines-section.animate .dfx-line:nth-child(14){animation-delay:.65s}
.dfx-lines-section.animate .dfx-line:nth-child(15){animation-delay:.7s}
.dfx-lines-section.animate .dfx-line:nth-child(16){animation-delay:.75s}
.dfx-lines-section.animate .dfx-line:nth-child(17){animation-delay:.8s}
.dfx-lines-section.animate .dfx-line:nth-child(18){animation-delay:.85s}
.dfx-lines-section.animate .dfx-line:nth-child(19){animation-delay:.9s}
@keyframes dfx-slide-r { to{opacity:1;transform:translateX(0);} }

/* ── SERVICE SELECTOR ── */
.dfx-selector-section {
  position: relative; background: transparent;
  border-top: 3px solid var(--cyan);
}
.dfx-selector-container { max-width: 1300px; margin: 0 auto; padding: 100px 40px; }
.dfx-selector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.dfx-selection-box {
  background: #e8e8e8;
  border: 4px solid var(--cyan);
  padding: 40px 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 40px rgba(0,245,255,.1);
  max-width: 600px;
}
.dfx-selection-box h2 {
  font-family: var(--fd); font-size: 1.6rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 28px; text-align: center;
  background: linear-gradient(180deg,#0a0a1f 0%,#151535 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dfx-service-options {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 28px;
}
.dfx-svc-opt {
  background: #fff; border: 2px solid transparent;
  padding: 11px 14px; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: all .2s; user-select: none;
}
.dfx-svc-opt:hover { transform: translateY(-2px); border-color: rgba(0,245,255,.3); }
.dfx-chk {
  width: 18px; height: 18px; border: 2px solid #999; flex-shrink: 0;
  position: relative; transition: all .2s;
}
.dfx-svc-opt.selected .dfx-chk { background: var(--cyan); border-color: var(--cyan); }
.dfx-svc-opt.selected .dfx-chk::after {
  content: '✓'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); color: var(--black); font-size: 12px; font-weight: 900;
}
.dfx-svc-opt span { font-family: var(--fb); font-size: .9rem; font-weight: 600; color: #333; }

/* Laser button — same as FriendFamous "Get started" */
.dfx-btn-get-started {
  background: #0a0a1f; color: #f0f4ff;
  border: 1px solid rgba(255,255,255,.15);
  padding: 14px 32px; font-family: var(--fd); font-size: 10px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; position: relative; z-index: 1;
  border-radius: 3px; overflow: hidden;
  transition: transform .2s; display: block; margin: 0 auto;
  width: fit-content;
}
.dfx-btn-get-started:hover { transform: scale(1.05); }
.dfx-btn-get-started::before {
  content: ''; position: absolute; inset: -3px;
  background: conic-gradient(from 0deg,transparent 0%,transparent 22%,var(--cyan) 25%,var(--cyan) 28%,transparent 30%,transparent 100%);
  border-radius: 3px; animation: dfx-laser 3s linear infinite; z-index: -1;
}
.dfx-btn-get-started::after { content:''; position:absolute; inset:1px; background:#0a0a1f; border-radius:2px; z-index:-1; }

/* Trust wall */
.dfx-trust-wall { display: flex; align-items: center; justify-content: center; }
.dfx-trust-wall-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; width: 100%; }
.dfx-tw-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(240,244,255,.5); opacity: 0; transition: opacity .3s;
}
.dfx-tw-item .emoji-icon { font-size: 52px !important; line-height: 1; display: block; }
.dfx-tw-item span { font-size: 13px; }
.dfx-trust-wall.animate .dfx-tw-item { animation: dfx-fadein 1.2s ease-out forwards; }
.dfx-trust-wall.animate .dfx-tw-item:nth-child(1){animation-delay:.0s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(2){animation-delay:.25s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(3){animation-delay:.5s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(4){animation-delay:.75s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(5){animation-delay:1.0s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(6){animation-delay:1.25s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(7){animation-delay:1.5s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(8){animation-delay:1.75s}
.dfx-trust-wall.animate .dfx-tw-item:nth-child(9){animation-delay:2.0s}

/* ── TESTIMONIALS ── */
.dfx-testimonials-section {
  width: 100%; padding: 180px 0 100px 0;
  background: transparent; position: relative; overflow: hidden;
  border-top: 3px solid var(--cyan);
}
.dfx-testimonials-container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 40px; position: relative; }

.dfx-testimonial-lines {
  width: 100vw; display: flex; flex-direction: column; gap: 18px;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); bottom: 0; z-index: 1;
}
.dfx-testimonials-section .dfx-line { background: #0e1e38; border-bottom-color: rgba(0,245,255,.05); }
.dfx-testimonials-section.animate .dfx-line { animation: dfx-slide-r .6s ease-out forwards; }
.dfx-testimonials-section.animate .dfx-line:nth-child(1){animation-delay:.0s}.dfx-testimonials-section.animate .dfx-line:nth-child(2){animation-delay:.05s}.dfx-testimonials-section.animate .dfx-line:nth-child(3){animation-delay:.1s}.dfx-testimonials-section.animate .dfx-line:nth-child(4){animation-delay:.15s}.dfx-testimonials-section.animate .dfx-line:nth-child(5){animation-delay:.2s}.dfx-testimonials-section.animate .dfx-line:nth-child(6){animation-delay:.25s}.dfx-testimonials-section.animate .dfx-line:nth-child(7){animation-delay:.3s}.dfx-testimonials-section.animate .dfx-line:nth-child(8){animation-delay:.35s}.dfx-testimonials-section.animate .dfx-line:nth-child(9){animation-delay:.4s}.dfx-testimonials-section.animate .dfx-line:nth-child(10){animation-delay:.45s}.dfx-testimonials-section.animate .dfx-line:nth-child(11){animation-delay:.5s}.dfx-testimonials-section.animate .dfx-line:nth-child(12){animation-delay:.55s}.dfx-testimonials-section.animate .dfx-line:nth-child(13){animation-delay:.6s}.dfx-testimonials-section.animate .dfx-line:nth-child(14){animation-delay:.65s}.dfx-testimonials-section.animate .dfx-line:nth-child(15){animation-delay:.7s}.dfx-testimonials-section.animate .dfx-line:nth-child(16){animation-delay:.75s}.dfx-testimonials-section.animate .dfx-line:nth-child(17){animation-delay:.8s}.dfx-testimonials-section.animate .dfx-line:nth-child(18){animation-delay:.85s}.dfx-testimonials-section.animate .dfx-line:nth-child(19){animation-delay:.9s}.dfx-testimonials-section.animate .dfx-line:nth-child(20){animation-delay:.95s}

.dfx-testimonials-content { position: relative; z-index: 10; transform: translateY(-160px); }

.dfx-testimonials-header { margin-bottom: 50px; text-align: center; opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.dfx-testimonials-section.animate .dfx-testimonials-header { opacity: 1; transform: translateY(0); transition-delay: .3s; }
.dfx-test-title { font-family: var(--fd); font-size: clamp(2rem,4.5vw,4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 12px; }
.dfx-test-subtitle { font-family: var(--fm); font-size: 1rem; color: rgba(240,244,255,.6); letter-spacing: .08em; text-transform: uppercase; }

.dfx-testimonial-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

.dfx-tcard {
  background: rgba(19,19,31,.6); border: 1px solid rgba(0,245,255,.12);
  border-radius: 12px; padding: 22px;
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transform: translateY(40px);
  transition: transform .3s, box-shadow .3s;
}
.dfx-testimonials-section.animate .dfx-tcard { animation: dfx-slideup .8s ease-out forwards; }
@keyframes dfx-slideup { to{opacity:1;transform:translateY(0);} }
.dfx-tcard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(0,245,255,.2); }
.dfx-stats-card { min-height: 380px; }
.dfx-quote-card { min-height: 240px; }
.dfx-tall-card  { min-height: 380px; }

.dfx-stat-number { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 16px; }
.dfx-stat-val { font-family: var(--fd); font-size: 3.5rem; font-weight: 900; color: #4fb528; line-height: 1; letter-spacing: -2px; text-shadow: 0 0 20px rgba(79,181,40,.4); }
.dfx-stat-unit { font-size: 1.5rem; color: rgba(240,244,255,.4); padding-bottom: 6px; }
.dfx-stat-desc { font-family: var(--fb); font-size: .9rem; color: rgba(240,244,255,.65); line-height: 1.6; margin-bottom: 18px; }
.dfx-hl { color: var(--white); font-weight: 700; }
.dfx-brand-badge { display: inline-flex; align-items: center; padding: 7px 14px; background: rgba(79,181,40,.08); border: 1px solid rgba(79,181,40,.3); border-radius: 20px; margin-bottom: 18px; }
.dfx-brand-badge span { font-family: var(--fm); font-size: .8rem; font-weight: 700; color: #4fb528; }
.dfx-cta-btn { width: 100%; padding: 13px 20px; background: #4fb528; color: #fff; border: none; border-radius: 20px; font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; text-decoration: none; text-align: center; display: block; transition: all .3s; }
.dfx-cta-btn:hover { background: #feba02; color: #000; transform: translateY(-2px); }

.dfx-client-card { background: rgba(19,19,31,.6); border: 1px solid rgba(79,181,40,.12); border-radius: 12px; padding: 14px; backdrop-filter: blur(10px); opacity: 0; transform: translateY(40px); transition: transform .3s, box-shadow .3s; }
.dfx-testimonials-section.animate .dfx-client-card { animation: dfx-slideup .8s ease-out forwards; }
.dfx-client-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.dfx-client-info { display: flex; align-items: center; gap: 12px; }
.dfx-avatar { width: 36px; height: 36px; background: linear-gradient(135deg,#1a2a10,#0d1a08); border: 1px solid rgba(79,181,40,.25); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: .65rem; font-weight: 700; color: #4fb528; }
.dfx-cname { font-family: var(--fd); font-size: .75rem; font-weight: 700; color: var(--white); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; }
.dfx-cco  { font-family: var(--fm); font-size: .7rem; color: rgba(240,244,255,.45); }

.dfx-tcol { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; justify-content: flex-end; }
.dfx-stars { font-size: 14px; color: #feba02; margin-bottom: 14px; letter-spacing: 2px; opacity: 0; }
.dfx-testimonials-section.animate .dfx-stars { animation: dfx-fadein .6s ease-out .3s forwards; }
.dfx-quote { font-family: var(--fb); font-size: 1.5rem; font-weight: 600; line-height: 1.35; color: var(--white); text-align: right; letter-spacing: -.02em; margin: 0; }
.dfx-centered { text-align: center !important; }

/* Stagger columns */
.dfx-testimonials-section.animate .dfx-testimonial-grid > :nth-child(1) .dfx-tcard { animation-delay: .5s; }
.dfx-testimonials-section.animate .dfx-testimonial-grid > :nth-child(2) .dfx-client-card { animation-delay: .65s; }
.dfx-testimonials-section.animate .dfx-testimonial-grid > :nth-child(2) .dfx-tcard { animation-delay: .8s; }
.dfx-testimonials-section.animate .dfx-testimonial-grid > :nth-child(3) .dfx-tcard:first-of-type { animation-delay: .95s; }
.dfx-testimonials-section.animate .dfx-testimonial-grid > :nth-child(3) .dfx-client-card { animation-delay: 1.1s; }
.dfx-testimonials-section.animate .dfx-testimonial-grid > :nth-child(4) .dfx-client-card { animation-delay: 1.25s; }
.dfx-testimonials-section.animate .dfx-testimonial-grid > :nth-child(4) .dfx-tcard { animation-delay: 1.4s; }

/* ── POPUP MODAL ── */
.dfx-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.dfx-popup-overlay.active { opacity: 1; visibility: visible; }
.dfx-popup {
  background: #1a1a2e; border: 4px solid var(--cyan);
  max-width: 820px; width: 90%; max-height: 90vh; overflow-y: auto;
  padding: 48px 60px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(0,245,255,.1);
  transform: scale(0); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.dfx-popup-overlay.active .dfx-popup { transform: scale(1); }
.dfx-popup-close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: var(--cyan); cursor: pointer; padding: 4px; }
.dfx-popup-close:hover { opacity: .7; }
.dfx-popup-logo { text-align: center; margin-bottom: 24px; }
.dfx-popup-logo img { max-width: 260px; height: auto; filter: drop-shadow(0 0 10px rgba(0,245,255,.3)); }
.dfx-popup-header { font-family: var(--fd); font-size: 1.8rem; font-weight: 900; text-transform: uppercase; color: var(--cyan); text-align: center; margin-bottom: 10px; letter-spacing: .04em; }
.dfx-popup-sub { font-family: var(--fm); font-size: .95rem; color: rgba(240,244,255,.6); text-align: center; margin-bottom: 28px; }
.dfx-popup-form { display: flex; flex-direction: column; gap: 14px; }
.dfx-popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dfx-popup-form input, .dfx-popup-form textarea {
  width: 100%; background: #0a0a1f; border: 2px solid rgba(0,245,255,.2);
  color: var(--white); font-family: var(--fb); font-size: 15px; padding: 13px 16px; outline: none;
  transition: border-color .2s;
}
.dfx-popup-form input:focus, .dfx-popup-form textarea:focus { border-color: var(--cyan); }
.dfx-popup-form input::placeholder, .dfx-popup-form textarea::placeholder { color: rgba(240,244,255,.35); }
.dfx-popup-form textarea { resize: vertical; min-height: 100px; }
.dfx-selected-services-list { font-family: var(--fm); font-size: 12px; color: var(--cyan); letter-spacing: .08em; min-height: 0; }
.dfx-popup-submit {
  background: #0a0a1f; color: var(--white); border: 1px solid rgba(0,245,255,.2);
  padding: 14px 32px; font-family: var(--fd); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  position: relative; z-index: 1; border-radius: 3px; overflow: hidden; transition: transform .2s;
  display: block; margin-left: auto; width: fit-content;
}
.dfx-popup-submit:hover { transform: scale(1.05); }
.dfx-popup-submit::before { content:''; position:absolute; inset:-3px; background:conic-gradient(from 0deg,transparent 0%,transparent 22%,var(--cyan) 25%,var(--cyan) 28%,transparent 30%,transparent 100%); border-radius:3px; animation:dfx-laser 3s linear infinite; z-index:-1; }
.dfx-popup-submit::after { content:''; position:absolute; inset:1px; background:#0a0a1f; border-radius:2px; z-index:-1; }

/* ── MOBILE ── */
@media(max-width:968px){
  /* Section 2 — collapse CSS grid to single column */
  .dfx-lines-container{
    display:block;
    padding:60px 8% 60px 8%;
  }
  .dfx-lines-headline{
    margin-left:0;
    font-size:clamp(1.4rem,5vw,2.2rem);
    margin-bottom:30px;
  }
  .dfx-glass-box{
    width:100%;
    padding-left:0;
    margin-left:0;
  }
  .dfx-terminal-box{
    margin-left:0;
    margin-right:0;
    margin-top:32px;
    min-width:unset;
    width:100%;
  }
  /* Section 3 */
  .dfx-selector-grid{grid-template-columns:1fr;gap:50px;}
  /* Section 4 */
  .dfx-testimonial-grid{grid-template-columns:repeat(2,1fr);}
  .dfx-test-title{font-size:2.5rem;}
}
@media(max-width:768px){
  .dfx-hero-headline{font-size:2.2rem;margin-top:-28px;}
  .dfx-hero-ctas{flex-direction:column;gap:14px;}
  .dfx-hbtn{width:100%;max-width:320px;justify-content:center;}
  .dfx-selector-container{padding:70px 20px;}
  .dfx-service-options{grid-template-columns:repeat(2,1fr);}
  .dfx-testimonials-section{padding:80px 0;}
  .dfx-testimonial-grid{grid-template-columns:1fr;}
  .dfx-popup{padding:36px 24px;}
  .dfx-popup-row{grid-template-columns:1fr;}
  .dfx-lines-section{padding:0 0 100px 0;}
  .dfx-testimonials-content{transform:translateY(-60px);}
}

/* ── WELCOME VIDEO MODAL ── */
.dfx-video-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none; opacity: 0; transition: opacity .3s;
}
.dfx-video-modal.active { display: flex; opacity: 1; }
.dfx-video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92); backdrop-filter: blur(10px);
}
.dfx-video-content {
  position: relative; z-index: 10001; margin: auto;
  width: 90%; max-width: 1100px; aspect-ratio: 16/9;
}
.dfx-video-close {
  position: absolute; top: -48px; right: 0;
  background: transparent; border: none;
  color: var(--white); cursor: pointer; padding: 8px; transition: color .2s;
}
.dfx-video-close:hover { color: var(--cyan); }
.dfx-video-frame { width: 100%; height: 100%; border-radius: 8px; overflow: hidden; }
.dfx-video-frame iframe { width: 100%; height: 100%; }

/* ── MOBILE BUTTON FIXES ── */
@media(max-width:768px){
  .dfx-hbtn { min-width: 260px; width: 100%; max-width: 320px; }
}


/* ══════════════════════════════════════════════════
   HOW IT WORKS — SECTION 5 — WINDOWS EXPLORER
   ══════════════════════════════════════════════════ */
.dfx-hiw-section {
  width: 100%; padding: 120px 0 100px 0;
  background: var(--dark); position: relative; overflow: hidden;
}
.dfx-hiw-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,183,174,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,183,174,.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.dfx-hiw-container { max-width: 1100px; margin: 0 auto; padding: 0 40px; position: relative; }
.dfx-hiw-header { text-align: center; margin-bottom: 60px; }
.dfx-hiw-label { font-family: var(--fm); font-size: 12px; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; display: block; margin-bottom: 16px; }
.dfx-hiw-title { font-family: var(--fd); font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; text-transform: uppercase; color: var(--white); margin: 0 0 16px 0; line-height: 1.1; }
.dfx-hiw-sub { font-family: var(--fb); font-size: 1.05rem; color: rgba(240,244,255,.45); max-width: 540px; margin: 0 auto; }
/* Explorer styles below */
/* Explorer placeholder - styles appended below */
.dfx-hiw-col {
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.dfx-hiw-col.visible { opacity: 1; transform: translateY(0); }
.dfx-hiw-col:nth-child(1) { transition-delay: .1s; }
.dfx-hiw-col:nth-child(2) { transition-delay: .35s; }
.dfx-hiw-col:nth-child(3) { transition-delay: .6s; }
.dfx-os-terminal { flex: 1; display: flex; flex-direction: column; }
.dfx-hiw-step-label {
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 12px 16px 10px 16px;
  border-radius: 6px 6px 0 0;
  border-left: 1px solid; border-right: 1px solid; border-top: 1px solid;
}
.dfx-step-win   { background: #0a2a6e; border-color: #1a5fd4; color: #a8d8ff; }
.dfx-step-mac   { background: #252525; border-color: #444; color: #4fb528; }
.dfx-step-linux { background: #1a0a2e; border-color: #6b2fa0; color: #c084fc; }
/* ── Shared terminal shell ── */
.dfx-os-terminal {
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.dfx-term-screen {
  padding: 28px 28px 34px 28px; font-family: var(--fb);
  font-size: 17px; line-height: 1.8; min-height: 300px;
  overflow-y: auto; text-align: center; flex: 1;
}
.dfx-term-line { display: block; white-space: pre-wrap; word-break: break-word; }
.dfx-win-path, .dfx-mac-prompt, .dfx-linux-prompt { text-align: left; font-size: 13px !important; font-family: var(--fm) !important; opacity: .7; }
.dfx-blink { display: inline-block; animation: dfx-blink-cursor .75s step-end infinite; }
@keyframes dfx-blink-cursor { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* ── WINDOWS — PowerShell blue ── */
.dfx-win { background: #012456; border: 1px solid #0078d4; border-radius: 6px; }
.dfx-win-bar {
  background: #1e1e1e; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #0078d4; border-radius: 6px 6px 0 0;
  min-height: 46px;
}
.dfx-win-title { font-family: var(--fd); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff; font-weight: 700; white-space: nowrap; }
.dfx-win-controls { display: flex; }
.dfx-win-controls span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 28px; font-size: 11px; color: #aaa;
  cursor: default; transition: background .15s;
}
.dfx-win-controls span:hover { background: rgba(255,255,255,.1); }
.dfx-win-controls span:last-child:hover { background: #c42b1c; color: #fff; }
.dfx-win .dfx-term-screen { background: #012456; color: #f0f4ff; font-family: var(--fb); font-size: 19px; line-height: 1.8; }
.dfx-win .dfx-term-output { color: rgba(240,244,255,.9); }
.dfx-win .dfx-term-step   { color: #ffff55; font-weight: bold; }
.dfx-win .dfx-term-success{ color: #4fb528; }
.dfx-win-path { color: #569cd6; font-family: var(--fm); font-size: 13px; }
.dfx-win .dfx-blink { color: #fff; }
/* ── MAC — black ── */
.dfx-mac { background: #1e1e1e; border: 1px solid #3d3d3d; border-radius: 6px; }
.dfx-mac-bar {
  background: #2d2d2d; padding: 12px 14px;
  display: flex; align-items: center;
  border-bottom: 1px solid #3d3d3d; position: relative;
  min-height: 46px;
}
.dfx-mac-dots { display: flex; gap: 7px; flex-shrink: 0; }
.dfx-dot-red    { display:block;width:12px;height:12px;border-radius:50%;background:#ff5f57; }
.dfx-dot-yellow { display:block;width:12px;height:12px;border-radius:50%;background:#ffbd2e; }
.dfx-dot-green  { display:block;width:12px;height:12px;border-radius:50%;background:#28c840; }
.dfx-mac-title {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--fd); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: #ccc; font-weight: 700;
  white-space: nowrap;
}
.dfx-mac .dfx-term-screen { background: #1e1e1e; color: #f0f4ff; font-family: var(--fb); font-size: 19px; line-height: 1.8; }
.dfx-mac-prompt { color: #00b7ae; font-family: var(--fm); font-size: 13px; }
.dfx-mac .dfx-term-output  { color: rgba(240,244,255,.8); }
.dfx-mac .dfx-term-step    { color: #4fb528; font-weight: bold; }
.dfx-mac .dfx-term-success { color: #28c840; }
.dfx-mac .dfx-blink { color: #f0f4ff; }

/* ── LINUX — Ubuntu purple ── */
.dfx-linux { background: #300a24; border: 1px solid #7a1c5a; border-radius: 6px; }
.dfx-linux-bar {
  background: #300a24; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(122,28,90,.6);
  min-height: 46px;
}
.dfx-linux-dots { display: flex; gap: 6px; flex-shrink: 0; }
.dfx-linux-dots span { display:block;width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.2); }
.dfx-linux-title { font-family: var(--fd); font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
.dfx-linux .dfx-term-screen { background: #300a24; color: #fff; font-family: var(--fb); font-size: 19px; line-height: 1.8; }
.dfx-linux-prompt { color: #4fb528; font-family: var(--fm); font-size: 13px; }
.dfx-linux .dfx-term-output  { color: rgba(255,255,255,.8); }
.dfx-linux .dfx-term-step    { color: #feba02; font-weight: bold; }
.dfx-linux .dfx-term-success { color: #00b7ae; }
.dfx-linux .dfx-blink { color: #fff; }
/* ── CTA ── */
.dfx-hiw-cta-row { text-align: center; margin-top: 64px; }
.dfx-hiw-cta {
  display: inline-block; font-family: var(--fd);
  font-size: .85rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--black);
  background: var(--green); padding: 16px 40px;
  border-radius: 2px; text-decoration: none;
  transition: background .3s ease, transform .2s ease;
}
.dfx-hiw-cta:hover { background: var(--yellow); transform: translateY(-2px); }

/* ── Mobile ── */
@media(max-width: 968px) {
  .dfx-hiw-terminals { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width: 768px) {
  .dfx-hiw-section { padding: 80px 0 60px 0; }
  .dfx-hiw-container { padding: 0 20px; }
  .dfx-hiw-header { margin-bottom: 48px; }
  .dfx-term-screen { font-size: 11px; min-height: 240px; }
}

/* ══ WINDOWS EXPLORER WINDOW ══ */
.dfx-explorer {
  background: #202020; border-radius: 8px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  border: 1px solid #3a3a3a;
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.dfx-explorer.visible { opacity: 1; transform: translateY(0); }

/* Title bar */
.dfx-exp-titlebar {
  background: #2b2b2b; padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #3a3a3a; height: 40px;
}
.dfx-exp-titlebar-left { display: flex; align-items: center; gap: 8px; }
.dfx-exp-icon { font-size: 16px; }
.dfx-exp-title { font-family: 'Segoe UI', sans-serif; font-size: 13px; color: #ccc; }
.dfx-exp-controls { display: flex; }
.dfx-exp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 32px; font-size: 12px; color: #ccc;
  cursor: default; transition: background .15s;
}
.dfx-exp-btn:hover { background: rgba(255,255,255,.1); }
.dfx-exp-close:hover { background: #c42b1c !important; color: #fff; }

/* Tab bar */
.dfx-exp-tabbar {
  background: #2b2b2b; display: flex; align-items: flex-end;
  padding: 0 8px; gap: 4px; border-bottom: 2px solid #00b7ae;
  overflow-x: auto;
}
.dfx-exp-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 20px 8px 16px; font-family: 'Segoe UI', sans-serif;
  font-size: 13px; color: #ccc; cursor: pointer;
  border-radius: 6px 6px 0 0;
  border: 1px solid #444; border-bottom: none;
  white-space: nowrap;
  background: #3a3a3a;
  transition: background .15s, color .15s, border-color .15s;
  position: relative; bottom: -2px;
}
.dfx-exp-tab:hover {
  background: #484848; color: #fff; border-color: #555;
}
.dfx-exp-tab.active {
  background: #202020; border-color: #00b7ae; border-bottom-color: #202020;
  color: #00b7ae; font-weight: 600;
}
.dfx-exp-tab-icon { font-size: 14px; }
.dfx-exp-tab-spacer { flex: 1; }

/* Address bar */
.dfx-exp-addressbar {
  background: #252525; padding: 6px 12px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #3a3a3a;
}
.dfx-exp-nav { display: flex; gap: 2px; }
.dfx-exp-nav span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; color: #888; cursor: default;
  font-size: 14px; border-radius: 4px;
}
.dfx-exp-nav span:hover { background: rgba(255,255,255,.08); color: #ccc; }
.dfx-exp-path {
  flex: 1; background: #1a1a1a; border: 1px solid #3a3a3a;
  border-radius: 4px; padding: 5px 12px;
  font-family: 'Segoe UI', sans-serif; font-size: 13px; color: #ccc;
}
.dfx-exp-path span { color: var(--cyan); }
.dfx-exp-search {
  background: #1a1a1a; border: 1px solid #3a3a3a;
  border-radius: 4px; padding: 5px 14px;
  font-family: 'Segoe UI', sans-serif; font-size: 12px; color: #666;
  white-space: nowrap;
}

/* Toolbar */
.dfx-exp-toolbar {
  background: #252525; padding: 4px 12px;
  display: flex; align-items: center; gap: 2px;
  border-bottom: 1px solid #2e2e2e;
}
.dfx-exp-toolbar span {
  padding: 5px 10px; font-family: 'Segoe UI', sans-serif;
  font-size: 12px; color: #bbb; cursor: default;
  border-radius: 4px; transition: background .15s;
}
.dfx-exp-toolbar span:hover { background: rgba(255,255,255,.08); }
.dfx-exp-toolbar-sep { width: 1px; height: 18px; background: #3a3a3a; margin: 0 4px; }

/* Body — two pane layout */
.dfx-exp-body { display: flex; min-height: 440px; }
.dfx-exp-pane { display: none; width: 100%; }
.dfx-exp-pane.active { display: flex; }

/* Left pane — file icons */
.dfx-exp-items {
  width: 280px; flex-shrink: 0;
  background: #1e1e1e; border-right: 1px solid #2e2e2e;
  padding: 12px 0;
}
.dfx-exp-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; cursor: default;
  transition: background .12s;
}
.dfx-exp-item:hover { background: rgba(0,183,174,.1); }
.dfx-exp-item-icon { font-size: 18px; flex-shrink: 0; }
.dfx-exp-item-name { font-family: 'Segoe UI', sans-serif; font-size: 13px; color: #ccc; line-height: 1.3; }

/* Right pane — detail */
.dfx-exp-detail {
  flex: 1; padding: 36px 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: #202020;
}
.dfx-exp-detail-icon { font-size: 52px; margin-bottom: 16px; }
.dfx-exp-detail h3 {
  font-family: var(--fd); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white); margin: 0 0 16px 0;
}
.dfx-exp-detail p {
  font-family: var(--fb); font-size: 16px; line-height: 1.75;
  color: rgba(240,244,255,.75); max-width: 480px; margin: 0 0 24px 0;
}
.dfx-exp-meta {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.dfx-exp-meta span {
  font-family: var(--fm); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(0,183,174,.08); border: 1px solid rgba(0,183,174,.2);
  padding: 4px 12px; border-radius: 2px;
}

/* Status bar */
.dfx-exp-statusbar {
  background: #2b2b2b; padding: 4px 16px;
  display: flex; justify-content: space-between;
  border-top: 1px solid #3a3a3a;
  font-family: 'Segoe UI', sans-serif; font-size: 12px; color: #888;
}

/* CTA + mobile */
.dfx-hiw-cta-row { text-align: center; margin-top: 48px; }
.dfx-hiw-cta {
  display: inline-block; font-family: var(--fd);
  font-size: .85rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--black);
  background: var(--green); padding: 16px 40px;
  border-radius: 2px; text-decoration: none;
  transition: background .3s ease, transform .2s ease;
}
.dfx-hiw-cta:hover { background: var(--yellow); transform: translateY(-2px); }
@media(max-width: 768px) {
  .dfx-hiw-section { padding: 80px 0 60px 0; }
  .dfx-hiw-container { padding: 0 16px; }
  .dfx-exp-items { display: none; }
  .dfx-exp-detail { padding: 24px 20px; }
  .dfx-exp-addressbar { display: none; }
  .dfx-exp-toolbar { display: none; }
}


/* ══════════════════════════════════════════════════
   CTA FORM — SECTION 6
   ══════════════════════════════════════════════════ */
.dfx-cta-section {
  width: 100%; padding: 120px 0 100px 0;
  background: var(--panel); position: relative; overflow: hidden;
  border-top: 1px solid rgba(0,183,174,.12);
}
.dfx-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,183,174,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,183,174,.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.dfx-cta-container {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center; position: relative;
}
/* Left side */
.dfx-cta-label {
  font-family: var(--fm); font-size: 12px; letter-spacing: .2em;
  color: var(--cyan); text-transform: uppercase;
  display: block; margin-bottom: 16px;
}
.dfx-cta-title {
  font-family: var(--fd); font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--white); margin: 0 0 20px 0; line-height: 1.1;
}
.dfx-cta-sub {
  font-family: var(--fb); font-size: 1rem; line-height: 1.7;
  color: rgba(240,244,255,.55); margin: 0 0 36px 0; max-width: 420px;
}
.dfx-cta-trust { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.dfx-cta-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fb); font-size: 15px; color: rgba(240,244,255,.75);
}
.dfx-cta-trust-icon { font-size: 18px; flex-shrink: 0; }
.dfx-cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-size: 1rem; font-weight: 700;
  letter-spacing: .08em; color: var(--green); text-decoration: none;
  border: 1px solid rgba(79,181,40,.3); padding: 14px 24px;
  border-radius: 2px; transition: background .25s, color .25s;
}
.dfx-cta-phone:hover { background: var(--green); color: var(--black); }
.dfx-cta-phone-icon { font-size: 18px; }
/* Right side — form box */
.dfx-cta-form-box {
  background: #0f0f1a; border: 1px solid rgba(0,183,174,.18);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.dfx-cta-form-header {
  background: #1a1a2e; padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(0,183,174,.15);
}
.dfx-cta-form-dot { display: block; width: 12px; height: 12px; border-radius: 50%; }
.dfx-cta-dot-r { background: #ff5f57; }
.dfx-cta-dot-y { background: #ffbd2e; }
.dfx-cta-dot-g { background: #28c840; }
.dfx-cta-form-title {
  font-family: var(--fm); font-size: 11px; color: rgba(240,244,255,.4);
  letter-spacing: .12em; margin-left: 6px;
}
.dfx-cta-form { padding: 28px 28px 32px 28px; display: flex; flex-direction: column; gap: 18px; }
.dfx-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dfx-cta-field { display: flex; flex-direction: column; gap: 6px; }
.dfx-cta-field label {
  font-family: var(--fm); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(0,183,174,.8);
}
.dfx-cta-field input,
.dfx-cta-field select,
.dfx-cta-field textarea {
  background: #0a0a14; border: 1px solid rgba(0,183,174,.2);
  border-radius: 3px; padding: 10px 14px;
  font-family: var(--fb); font-size: 14px; color: var(--white);
  outline: none; transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.dfx-cta-field input::placeholder,
.dfx-cta-field textarea::placeholder { color: rgba(240,244,255,.25); }
.dfx-cta-field input:focus,
.dfx-cta-field select:focus,
.dfx-cta-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0,183,174,.1);
}
.dfx-cta-field select { cursor: pointer; }
.dfx-cta-field select option { background: #0f0f1a; }
.dfx-cta-field textarea { resize: vertical; min-height: 80px; }
/* Submit button — laser border */
.dfx-cta-submit {
  position: relative; overflow: hidden;
  font-family: var(--fd); font-size: .85rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); background: transparent;
  border: none; padding: 16px 32px;
  cursor: pointer; width: 100%;
  z-index: 1; transition: color .25s;
}
.dfx-cta-submit::before {
  content: ''; position: absolute; inset: -3px;
  background: conic-gradient(from 0deg,transparent 0%,transparent 22%,var(--cyan) 25%,var(--cyan) 28%,transparent 30%,transparent 100%);
  border-radius: 3px; animation: dfx-laser 3s linear infinite; z-index: -1;
}
.dfx-cta-submit::after {
  content: ''; position: absolute; inset: 1px;
  background: #0a0a1f; border-radius: 2px; z-index: -1;
}
.dfx-cta-submit:hover { color: var(--cyan); }

/* Mobile */
@media(max-width: 968px) {
  .dfx-cta-container { grid-template-columns: 1fr; gap: 48px; }
}
@media(max-width: 768px) {
  .dfx-cta-section { padding: 80px 0 60px 0; }
  .dfx-cta-container { padding: 0 20px; }
  .dfx-cta-row { grid-template-columns: 1fr; }
  .dfx-cta-form { padding: 20px; }
}

/* ================================================
   DFX CTA FORM CARD — Laser border redesign
   ================================================ */
.dfx-cta-form-outer {
  position: relative;
  border-radius: 14px;
  padding: 3px;
  background: #12161c;
  box-shadow:
    0 20px 60px rgba(0,0,0,.7),
    0 8px 24px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.03);
  transform: translateY(-4px);
}
.dfx-cta-form-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.dfx-laser-ring {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.dfx-laser-ring::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    from 0deg,
    #12161c 0deg,   #12161c 120deg,
    #f90d01 130deg, #feba02 150deg,
    #4fb528 170deg, #12161c 180deg,
    #12161c 300deg, #f90d01 310deg,
    #feba02 330deg, #4fb528 350deg,
    #12161c 360deg
  );
  animation: dfx-laser 3s linear infinite;
}
.dfx-laser-ring::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #12161c;
  border-radius: 12px;
}
.dfx-cta-form-inner {
  position: relative;
  z-index: 2;
  background: #12161c;
  border-radius: 12px;
  overflow: hidden;
  font-family: var(--fd);
}
.dfx-cfi-head {
  padding: 14px 22px 12px;
  border-bottom: 1px solid #1e2330;
  display: flex;
  align-items: center;
  gap: 14px;
}
.dfx-cfi-accent {
  width: 4px;
  background: #4fb528;
  border-radius: 2px;
  align-self: stretch;
  flex-shrink: 0;
}
.dfx-cfi-head-text { flex: 1; }
.dfx-cfi-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.2;
}
.dfx-cfi-sub {
  font-family: var(--mono);
  font-size: .68rem;
  color: #3d4860;
  margin-top: 3px;
}
.dfx-cfi-badge {
  background: rgba(0,183,174,.08);
  border: 1px solid rgba(0,183,174,.25);
  color: #00b7ae;
  font-size: .65rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .08em;
  white-space: nowrap;
}
.dfx-cfi-body { padding: 14px 22px 16px; }
.dfx-cfi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.dfx-cfi-field { margin-bottom: 10px; }
.dfx-cfi-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.dfx-cfi-label.green { color: #4fb528; }
.dfx-cfi-label.yellow { color: #feba02; }
.dfx-cfi-label.red { color: #f90d01; }
.dfx-cfi-label.teal { color: #00b7ae; }
.dfx-cfi-input,
.dfx-cfi-select,
.dfx-cfi-textarea {
  width: 100%;
  background: #1a1f28;
  border: 1px solid #252b35;
  border-radius: 6px;
  padding: 9px 13px;
  color: #e8eaf0;
  font-family: var(--fd);
  font-size: .9rem;
  font-weight: 500;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.dfx-cfi-input::placeholder,
.dfx-cfi-textarea::placeholder { color: #9aa3b0; }
.dfx-cfi-input:focus { border-color: #4fb528; }
.dfx-cfi-select { appearance: none; color: #9aa3b0; }
.dfx-cfi-select:focus { border-color: #feba02; }
.dfx-cfi-textarea { resize: none; min-height: 64px; max-height: 64px; }
.dfx-cfi-textarea:focus { border-color: #00b7ae; }
.dfx-cfi-footer {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 12px;
  margin-top: 0;
}
.dfx-cfi-btn-call {
  background: transparent;
  border: 1px solid #252b35;
  border-radius: 6px;
  padding: 13px;
  color: #888ea0;
  font-family: var(--fd);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dfx-cfi-btn-call:hover { border-color: #4fb528; color: #4fb528; }
.dfx-cfi-btn-send {
  background: #f90d01;
  border: none;
  border-radius: 6px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--fd);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.dfx-cfi-btn-send:hover { background: #c40a01; }
.dfx-cfi-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 22px 8px;
  border-top: 1px solid #1e2330;
}
.dfx-cfi-trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4fb528;
  flex-shrink: 0;
}
.dfx-cfi-trust-txt {
  font-family: var(--mono);
  font-size: .65rem;
  color: #3d4452;
}
.dfx-cfi-trust-txt span { color: #feba02; }

/* CF7 overrides inside new card */
.dfx-cta-form-inner .wpcf7 { width: 100%; }
.dfx-cta-form-inner .wpcf7-form { margin: 0; width: 100%; }
.dfx-cta-right { width: 100%; }
.dfx-cta-form-outer { width: 100%; }

/* Force CF7 footer grid to stay side by side */
.dfx-cta-form-inner .dfx-cfi-footer {
  display: grid !important;
  grid-template-columns: 1fr 1.8fr !important;
  gap: 12px !important;
}
.dfx-cta-form-inner .dfx-cfi-footer p {
  display: contents !important;
}
.dfx-cta-form-inner .dfx-cfi-footer br { display: none !important; }
.dfx-cta-form-inner .dfx-cfi-footer .wpcf7-spinner { display: none !important; }
.dfx-cta-form-inner .dfx-cfi-btn-call,
.dfx-cta-form-inner input[type="submit"].dfx-cfi-btn-send {
  width: 100% !important;
  display: block !important;
}
.dfx-cta-form-inner .wpcf7-not-valid-tip { color: #f90d01; font-size: .72rem; margin-top: 4px; }
.dfx-cta-form-inner .wpcf7-response-output {
  margin: 12px 22px 16px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .8rem;
  border: 1px solid #4fb528;
  color: #4fb528;
  background: rgba(79,181,40,.06);
}

/* Mobile */
@media(max-width: 768px) {
  .dfx-cfi-row { grid-template-columns: 1fr; }
  .dfx-cfi-footer { grid-template-columns: 1fr; }
}

/* ================================================
   POPUP CF7 OVERRIDES
   ================================================ */
.dfx-popup .wpcf7 { width: 100%; }
.dfx-popup .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dfx-popup .wpcf7-form br { display: none; }

/* The row div contains a <p> wrapping both name+phone — make p display:contents so grid works */
.dfx-popup .dfx-popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dfx-popup .dfx-popup-row p { display: contents; }

/* All other <p> tags — remove margin, treat as flex children */
.dfx-popup .wpcf7-form > p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* All inputs + textarea */
.dfx-popup .wpcf7-form input[type="text"],
.dfx-popup .wpcf7-form input[type="tel"],
.dfx-popup .wpcf7-form input[type="email"],
.dfx-popup .wpcf7-form textarea {
  width: 100%;
  background: #0a0a1f;
  border: 2px solid rgba(0,245,255,.2);
  color: var(--white);
  font-family: var(--fb);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.dfx-popup .wpcf7-form input::placeholder,
.dfx-popup .wpcf7-form textarea::placeholder { color: rgba(240,244,255,.35); }
.dfx-popup .wpcf7-form input:focus,
.dfx-popup .wpcf7-form textarea:focus { border-color: var(--cyan); }
.dfx-popup .wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
  width: 100%;
}

/* wpcf7-form-control-wrap needs to be full width */
.dfx-popup .wpcf7-form-control-wrap { display: block; width: 100%; }

/* Submit button — red solid with laser border */
.dfx-popup .wpcf7-form p:last-of-type {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.dfx-popup .wpcf7-form input[type="submit"] {
  background: #0a0a1f;
  color: var(--white);
  border: 1px solid rgba(0,245,255,.2);
  padding: 14px 32px;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
  width: auto;
}
.dfx-popup .wpcf7-form input[type="submit"]:hover { transform: scale(1.05); }
.dfx-popup .wpcf7-spinner { display: none !important; }

/* Error/success */
.dfx-popup .wpcf7-not-valid-tip { color: #f90d01; font-size: .72rem; margin-top: 4px; }
.dfx-popup .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: .8rem;
  border: 1px solid #4fb528;
  color: #4fb528;
  background: rgba(79,181,40,.06);
}

/* Mobile */
@media(max-width: 768px) {
  .dfx-popup .dfx-popup-row { grid-template-columns: 1fr; }
}

/* Laser border on CF7 submit inside popup */
.dfx-popup .wpcf7-submit-wrap,
.dfx-popup .wpcf7-form p:last-of-type {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.dfx-popup .wpcf7-form input[type="submit"] {
  background: #0a0a1f !important;
  color: var(--white) !important;
  border: 1px solid rgba(0,245,255,.25) !important;
  padding: 14px 32px !important;
  font-family: var(--fd) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  border-radius: 3px !important;
  transition: transform .2s !important;
}
.dfx-popup .wpcf7-form input[type="submit"]::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg,transparent 0%,transparent 22%,var(--cyan) 25%,var(--cyan) 28%,transparent 30%,transparent 100%);
  border-radius: 3px;
  animation: dfx-laser 3s linear infinite;
  z-index: -1;
}
.dfx-popup .wpcf7-form input[type="submit"]::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: #0a0a1f;
  border-radius: 2px;
  z-index: -1;
}

/* Fix email-to-textarea gap */
.dfx-popup .wpcf7-form > p + p { margin-top: 0; }
.dfx-popup .wpcf7-form-control-wrap + .wpcf7-form-control-wrap { margin-top: 0; }

/* Each standalone field paragraph needs spacing */
.dfx-popup .wpcf7-form > p:not(:first-child) { margin-top: 0; }

/* Target the paragraph containing email specifically */
.dfx-popup .wpcf7-form p:has(input[type="email"]) { margin-bottom: 0; }

/* Gap between email and textarea using the flex column gap */
.dfx-popup .wpcf7-form {
  gap: 14px !important;
}

/* Textarea placeholder */
.dfx-popup .wpcf7-form textarea::placeholder {
  content: "Brief description of what you need...";
  color: rgba(240,244,255,.35);
}

/* Submit button — use a wrapper approach with outline+red bg instead of pseudo */
.dfx-popup .wpcf7-form input[type="submit"] {
  background: transparent !important;
  color: var(--red) !important;
  border: 2px solid var(--red) !important;
  padding: 14px 32px !important;
  font-family: var(--fd) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 3px !important;
  transition: background .2s, color .2s !important;
}
.dfx-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--red) !important;
  color: #fff !important;
}
